/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 | 140 std::string srcLoc1 = defined->getSourceLocation(); in addDefined() 141 std::string srcLoc2 = isec ? isec->getSourceLocation(value) : ""; in addDefined() 629 std::string src = loc.isec->getSourceLocation(loc.offset); in reportUndefinedSymbol()
|
H A D | Symbols.h | 140 std::string getSourceLocation();
|
H A D | InputSection.h | 57 std::string getSourceLocation(uint64_t off) const;
|
H A D | InputSection.cpp | 135 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 | 263 Result.setLocation(getSourceLocation(BufferPtr)); in formTokenWithChars() 406 SourceLocation Loc = getSourceLocation(BufferPtr); in lexCommentText() 407 SourceLocation EndLoc = getSourceLocation(TokenPtr); in lexCommentText()
|
H A D | DeclCXX.cpp | 2697 SourceLocation CXXCtorInitializer::getSourceLocation() const { in getSourceLocation() function in CXXCtorInitializer 2718 return SourceRange(getSourceLocation(), getRParenLoc()); in getSourceRange()
|
/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/Lex/ |
H A D | Lexer.cpp | 1213 SourceLocation Lexer::getSourceLocation(const char *Loc, in getSourceLocation() function in Lexer 1233 return PP->Diag(getSourceLocation(Loc), DiagID); in Diag() 1631 return CharSourceRange::getCharRange(L.getSourceLocation(Begin), in makeCharRange() 1632 L.getSourceLocation(End)); in makeCharRange() 2122 << FixItHint::CreateInsertion(getSourceLocation(CurPtr), " "); in LexUDSuffix() 2168 << FixItHint::CreateInsertion(getSourceLocation(CurPtr), " "); in LexUDSuffix() 2548 Handler->HandleEmptyline(SourceRange(getSourceLocation(NewLinePtr + 1), in SkipWhitespace() 2549 getSourceLocation(lastNewLine))); in SkipWhitespace() 2694 PP->HandleComment(Result, SourceRange(getSourceLocation(BufferPtr), in SkipLineComment() 2695 getSourceLocation(CurPtr)))) { in SkipLineComment() [all …]
|
H A D | PPLexerChange.cpp | 139 EnterLoc = PrevPPLexer->getSourceLocation(); in EnterSourceFileWithLexer() 508 SourceLocation Loc = CurPPLexer->getSourceLocation(); in HandleEndOfFile()
|
H A D | PPDirectives.cpp | 600 assert(CurLexer->getSourceLocation(Hashptr) == Tok.getLocation()); in SkipExcludedConditionalBlock() 856 : CurPPLexer->getSourceLocation()), in SkipExcludedConditionalBlock() 1547 Callbacks->FileChanged(CurPPLexer->getSourceLocation(), in HandleLineDirective() 1707 Callbacks->FileChanged(CurPPLexer->getSourceLocation(), Reason, FileKind); in HandleDigitDirective()
|
H A D | ModuleMap.cpp | 3148 SourceLocation Start = L.getSourceLocation(); in parseModuleMapFile()
|
/freebsd/contrib/llvm-project/clang/lib/Format/ |
H A D | FormatTokenLexer.cpp | 692 resetLexer(SourceMgr.getFileOffset(Lex->getSourceLocation(Offset))); in tryParseJSRegexLiteral() 813 resetLexer(SourceMgr.getFileOffset(Lex->getSourceLocation(Offset + 1))); in handleCSharpVerbatimAndInterpolatedStrings() 829 Lex->getSourceLocation(Lex->getBufferLocation() - 2 + Text.size()))); in handleTableGenMultilineString() 947 SourceLocation loc = Lex->getSourceLocation(Offset); in handleTemplateStrings() 967 ? Lex->getSourceLocation(CommentBegin + Len) in tryParsePythonComment() 1098 resetLexer(SourceMgr.getFileOffset(Lex->getSourceLocation( in truncateToken() 1414 Tok.setLocation(Lex->getSourceLocation(Start, Len)); in readRawTokenVerilogSpecific()
|
/freebsd/contrib/llvm-project/lld/COFF/ |
H A D | SymbolTable.cpp | 668 static std::string getSourceLocation(InputFile *file, SectionChunk *sc, in getSourceLocation() function 695 os << getSourceLocation(d->getFile(), d->getChunk(), d->getValue(), in reportDuplicate() 698 os << getSourceLocation(existing->getFile(), nullptr, 0, ""); in reportDuplicate() 700 os << getSourceLocation(newFile, newSc, newSectionOffset, in reportDuplicate()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | CommentLexer.h | 308 SourceLocation getSourceLocation(const char *Loc) const { in getSourceLocation() function
|
H A D | DeclCXX.h | 2472 SourceLocation getSourceLocation() const;
|
/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/lib/Sema/ |
H A D | SemaDeclCXX.cpp | 5209 MarkFunctionReferenced(Initializer->getSourceLocation(), Dtor); in SetDelegatingInitializer() 5210 DiagnoseUseOfDecl(Dtor, Initializer->getSourceLocation()); in SetDelegatingInitializer() 5292 Diag(Value->getSourceLocation(), diag::warn_abstract_vbase_init_ignored) in SetCtorInitializers() 5446 Init->getSourceLocation())) { in DiagnoseBaseOrMemInitializerOrder() 5526 Inits[WarnIndexes.front() - 1]->getSourceLocation(), in DiagnoseBaseOrMemInitializerOrder() 5556 auto D = SemaRef.Diag(PrevInit->getSourceLocation(), in DiagnoseBaseOrMemInitializerOrder() 5573 S.Diag(Init->getSourceLocation(), in CheckRedundantInit() 5580 S.Diag(Init->getSourceLocation(), in CheckRedundantInit() 5585 S.Diag(PrevInit->getSourceLocation(), diag::note_previous_initializer) in CheckRedundantInit() 5605 S.Diag(Init->getSourceLocation(), in CheckRedundantUnionInit() [all...] |
H A D | SemaTemplateInstantiateDecl.cpp | 5759 Init->getSourceLocation(), in InstantiateMemInitializers() 5794 Init->getSourceLocation(), in InstantiateMemInitializers() 5820 Init->getSourceLocation()); in InstantiateMemInitializers() 5834 Init->getSourceLocation()); in InstantiateMemInitializers()
|
/freebsd/contrib/llvm-project/clang/lib/Analysis/ |
H A D | PathDiagnostic.cpp | 693 return PathDiagnosticLocation(PIP->getInitializer()->getSourceLocation(), in create()
|