| /freebsd/contrib/llvm-project/clang/include/clang/Lex/ |
| H A D | Lexer.h | 299 SourceLocation getSourceLocation(const char *Loc, unsigned TokLen = 1) const; 303 SourceLocation getSourceLocation() override { in getSourceLocation() function 304 return getSourceLocation(BufferPtr); in getSourceLocation() 645 Result.setLocation(getSourceLocation(BufferPtr, TokLen)); in FormTokenWithChars()
|
| /freebsd/contrib/llvm-project/lld/MachO/ |
| H A D | Symbols.cpp | 113 std::string Defined::getSourceLocation() { in getSourceLocation() function in Defined 116 return originalIsec->getSourceLocation(value); in getSourceLocation()
|
| H A D | SymbolTable.cpp | 145 std::string srcLoc1 = defined->getSourceLocation(); in addDefined() 146 std::string srcLoc2 = isec ? isec->getSourceLocation(value) : ""; in addDefined() 633 std::string src = loc.isec->getSourceLocation(loc.offset); in reportUndefinedSymbol()
|
| H A D | Symbols.h | 138 std::string getSourceLocation();
|
| H A D | InputSection.h | 57 std::string getSourceLocation(uint64_t off) const;
|
| H A D | InputSection.cpp | 134 std::string InputSection::getSourceLocation(uint64_t off) const { in getSourceLocation() function in InputSection
|
| /freebsd/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/ |
| H A D | RecursiveSymbolVisitor.h | 53 if (!visit(FD, Initializer->getSourceLocation(), in VisitCXXConstructorDecl() 54 Lexer::getLocForEndOfToken(Initializer->getSourceLocation(), in VisitCXXConstructorDecl()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | CommentParser.cpp | 67 SourceLocation getSourceLocation() const { in getSourceLocation() function in clang::comments::TextTokenRetokenizer 190 SourceLocation Loc = getSourceLocation(); in lexType() 251 SourceLocation Loc = getSourceLocation(); in lexParHeading() 292 SourceLocation Loc = getSourceLocation(); in lexWord() 325 SourceLocation Loc = getSourceLocation(); in lexDelimitedSeq() 370 formTokenWithChars(PartialTok, getSourceLocation(), in putBackLeftoverTokens()
|
| H A D | CommentLexer.cpp | 272 Result.setLocation(getSourceLocation(BufferPtr)); in formTokenWithChars() 415 SourceLocation Loc = getSourceLocation(BufferPtr); in lexCommentText() 416 SourceLocation EndLoc = getSourceLocation(TokenPtr); in lexCommentText()
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/ubsan/ |
| H A D | ubsan_monitor.cpp | 66 SourceLocation SL = CurrentUBR->Loc.getSourceLocation(); in __ubsan_get_current_report_data()
|
| H A D | ubsan_diag.cpp | 85 SourceLocation SLoc = Loc.getSourceLocation(); in MaybeReportErrorSummary() 148 SourceLocation SLoc = Loc.getSourceLocation(); in RenderLocation()
|
| H A D | ubsan_diag.h | 61 SourceLocation getSourceLocation() const { 81 SourceLocation getSourceLocation() const { getSourceLocation() function
|
| H A D | ubsan_handlers.cpp | 103 if (ignoreReport(Loc.getSourceLocation(), Opts, ET)) in handleTypeMismatchImpl() 161 if (ignoreReport(Loc.getSourceLocation(), Opts, ET)) in handleAlignmentAssumptionImpl()
|
| /freebsd/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | ProgramPoint.cpp | 104 std::optional<SourceLocation> ProgramPoint::getSourceLocation() const { in getSourceLocation() function in ProgramPoint 136 return Init->getSourceLocation(); in getSourceLocation()
|
| /freebsd/contrib/llvm-project/clang/lib/Lex/ |
| H A D | Lexer.cpp | 1209 SourceLocation Lexer::getSourceLocation(const char *Loc, in getSourceLocation() function in Lexer 1229 return PP->Diag(getSourceLocation(Loc), DiagID); in Diag() 1650 return CharSourceRange::getCharRange(L.getSourceLocation(Begin), in makeCharRange() 1651 L.getSourceLocation(End)); in makeCharRange() 2141 << FixItHint::CreateInsertion(getSourceLocation(CurPtr), " "); in LexUDSuffix() 2187 << FixItHint::CreateInsertion(getSourceLocation(CurPtr), " "); in LexUDSuffix() 2569 Handler->HandleEmptyline(SourceRange(getSourceLocation(NewLinePtr + 1), in SkipWhitespace() 2570 getSourceLocation(lastNewLine))); in SkipWhitespace() 2715 PP->HandleComment(Result, SourceRange(getSourceLocation(BufferPtr), in SkipLineComment() 2716 getSourceLocation(CurPtr)))) { in SkipLineComment() [all …]
|
| H A D | PPLexerChange.cpp | 132 EnterLoc = PrevPPLexer->getSourceLocation(); in EnterSourceFileWithLexer() 501 SourceLocation Loc = CurPPLexer->getSourceLocation(); in HandleEndOfFile()
|
| H A D | PPDirectives.cpp | 626 assert(CurLexer->getSourceLocation(Hashptr) == Tok.getLocation()); in SkipExcludedConditionalBlock() 882 : CurPPLexer->getSourceLocation()), in SkipExcludedConditionalBlock() 1573 Callbacks->FileChanged(CurPPLexer->getSourceLocation(), in HandleLineDirective() 1732 Callbacks->FileChanged(CurPPLexer->getSourceLocation(), Reason, FileKind); in HandleDigitDirective()
|
| H A D | ModuleMapFile.cpp | 157 SourceLocation Start = L.getSourceLocation(); in parseModuleMap()
|
| /freebsd/contrib/llvm-project/clang/lib/Format/ |
| H A D | FormatTokenLexer.cpp | 728 resetLexer(SourceMgr.getFileOffset(Lex->getSourceLocation(S))); in tryParseJavaTextBlock() 787 resetLexer(SourceMgr.getFileOffset(Lex->getSourceLocation(Offset))); in tryParseJSRegexLiteral() 905 resetLexer(SourceMgr.getFileOffset(Lex->getSourceLocation(Offset + 1))); in handleCSharpVerbatimAndInterpolatedStrings() 921 Lex->getSourceLocation(Lex->getBufferLocation() - 2 + Text.size()))); in handleTableGenMultilineString() 1039 SourceLocation loc = Lex->getSourceLocation(Offset); in handleTemplateStrings() 1059 ? Lex->getSourceLocation(CommentBegin + Len) in tryParsePythonComment() 1190 resetLexer(SourceMgr.getFileOffset(Lex->getSourceLocation( in truncateToken() 1545 Tok.setLocation(Lex->getSourceLocation(Start, Len)); in readRawTokenVerilogSpecific()
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | CommentLexer.h | 308 SourceLocation getSourceLocation(const char *Loc) const { in getSourceLocation() function
|
| /freebsd/contrib/llvm-project/lld/COFF/ |
| H A D | SymbolTable.cpp | 815 static std::string getSourceLocation(InputFile *file, SectionChunk *sc, in getSourceLocation() function 842 diag << getSourceLocation(d->getFile(), d->getChunk(), d->getValue(), in reportDuplicate() 845 diag << getSourceLocation(existing->getFile(), nullptr, 0, ""); in reportDuplicate() 847 diag << getSourceLocation(newFile, newSc, newSectionOffset, in reportDuplicate()
|
| /freebsd/contrib/llvm-project/clang/lib/Tooling/Refactoring/Rename/ |
| H A D | USRLocFinder.cpp | 256 auto Loc = Initializer->getSourceLocation(); in VisitCXXConstructorDecl()
|
| /freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/ |
| H A D | InclusionRewriter.cpp | 407 unsigned NextToWrite = SM.getFileOffset(RawLex.getSourceLocation()); in Process()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Analysis/ |
| H A D | ProgramPoint.h | 92 std::optional<SourceLocation> getSourceLocation() const;
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | CoreEngine.cpp | 200 auto SLoc = Loc.getSourceLocation(); in timeTraceMetadata()
|