| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Lex/ |
| H A D | Lexer.h | 261 SourceLocation getSourceLocation(const char *Loc, unsigned TokLen = 1) const; 265 SourceLocation getSourceLocation() override { in getSourceLocation() function 266 return getSourceLocation(BufferPtr); in getSourceLocation() 590 Result.setLocation(getSourceLocation(BufferPtr, TokLen)); in FormTokenWithChars()
|
| H A D | PreprocessorLexer.h | 84 virtual SourceLocation getSourceLocation() = 0;
|
| /netbsd-src/external/apache2/llvm/dist/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()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Lex/ |
| H A D | Lexer.cpp | 1129 SourceLocation Lexer::getSourceLocation(const char *Loc, in getSourceLocation() function in Lexer 1149 return PP->Diag(getSourceLocation(Loc), DiagID); in Diag() 1473 return CharSourceRange::getCharRange(L.getSourceLocation(Begin), in makeCharRange() 1474 L.getSourceLocation(End)); in makeCharRange() 1843 << FixItHint::CreateInsertion(getSourceLocation(CurPtr), " "); in LexUDSuffix() 1890 << FixItHint::CreateInsertion(getSourceLocation(CurPtr), " "); in LexUDSuffix() 2258 Handler->HandleEmptyline(SourceRange(getSourceLocation(NewLinePtr + 1), in SkipWhitespace() 2259 getSourceLocation(lastNewLine))); in SkipWhitespace() 2379 PP->HandleComment(Result, SourceRange(getSourceLocation(BufferPtr), in SkipLineComment() 2380 getSourceLocation(CurPtr)))) { in SkipLineComment() [all …]
|
| H A D | PPLexerChange.cpp | 469 SourceMgr.getFileCharacteristic(CurPPLexer->getSourceLocation()); in HandleEndOfFile() 470 Callbacks->FileChanged(CurPPLexer->getSourceLocation(), in HandleEndOfFile()
|
| H A D | PPDirectives.cpp | 654 : CurPPLexer->getSourceLocation()), in SkipExcludedConditionalBlock() 1247 Callbacks->FileChanged(CurPPLexer->getSourceLocation(), in HandleLineDirective() 1399 Callbacks->FileChanged(CurPPLexer->getSourceLocation(), Reason, FileKind); in HandleDigitDirective()
|
| /netbsd-src/external/gpl3/gcc/dist/libsanitizer/ubsan/ |
| H A D | ubsan_monitor.cpp | 65 SourceLocation SL = CurrentUBR->Loc.getSourceLocation(); in __ubsan_get_current_report_data()
|
| H A D | ubsan_diag.cpp | 87 SourceLocation SLoc = Loc.getSourceLocation(); in MaybeReportErrorSummary() 150 SourceLocation SLoc = Loc.getSourceLocation(); in RenderLocation()
|
| H A D | ubsan_diag.h | 81 SourceLocation getSourceLocation() const { in 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()
|
| /netbsd-src/sys/external/bsd/compiler_rt/dist/lib/ubsan/ |
| H A D | ubsan_monitor.cc | 66 SourceLocation SL = CurrentUBR->Loc.getSourceLocation(); in __ubsan_get_current_report_data()
|
| H A D | ubsan_diag.cc | 80 SourceLocation SLoc = Loc.getSourceLocation(); in MaybeReportErrorSummary() 143 SourceLocation SLoc = Loc.getSourceLocation(); in RenderLocation()
|
| H A D | ubsan_diag.h | 82 SourceLocation getSourceLocation() const { in getSourceLocation() function
|
| H A D | ubsan_handlers.cc | 62 if (ignoreReport(Loc.getSourceLocation(), Opts, ET)) in handleTypeMismatchImpl()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/ubsan/ |
| H A D | ubsan_monitor.cc | 64 SourceLocation SL = CurrentUBR->Loc.getSourceLocation(); in __ubsan_get_current_report_data()
|
| H A D | ubsan_diag.cc | 78 SourceLocation SLoc = Loc.getSourceLocation(); in MaybeReportErrorSummary() 141 SourceLocation SLoc = Loc.getSourceLocation(); in RenderLocation()
|
| H A D | ubsan_diag.h | 80 SourceLocation getSourceLocation() const { in getSourceLocation() function
|
| H A D | ubsan_handlers.cc | 60 if (ignoreReport(Loc.getSourceLocation(), Opts, ET)) in handleTypeMismatchImpl()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
| H A D | CommentParser.cpp | 67 SourceLocation getSourceLocation() const { in getSourceLocation() function in clang::comments::TextTokenRetokenizer 162 SourceLocation Loc = getSourceLocation(); in lexWord() 195 SourceLocation Loc = getSourceLocation(); in lexDelimitedSeq() 240 formTokenWithChars(PartialTok, getSourceLocation(), in putBackLeftoverTokens()
|
| H A D | CommentLexer.cpp | 282 Result.setLocation(getSourceLocation(BufferPtr)); in formTokenWithChars() 410 SourceLocation Loc = getSourceLocation(BufferPtr); in lexCommentText() 411 SourceLocation EndLoc = getSourceLocation(TokenPtr); in lexCommentText()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Format/ |
| H A D | FormatTokenLexer.cpp | 553 resetLexer(SourceMgr.getFileOffset(Lex->getSourceLocation(Offset))); in tryParseJSRegexLiteral() 613 ? Lex->getSourceLocation(Offset + 1) in handleCSharpVerbatimAndInterpolatedStrings() 680 ? Lex->getSourceLocation(Offset + 1) in handleTemplateStrings() 701 ? Lex->getSourceLocation(CommentBegin + Len) in tryParsePythonComment() 916 resetLexer(SourceMgr.getFileOffset(Lex->getSourceLocation(Offset))); in getNextToken()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| H A D | CommentLexer.h | 308 SourceLocation getSourceLocation(const char *Loc) const { in getSourceLocation() function
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/Rename/ |
| H A D | USRLocFinder.cpp | 256 auto Loc = Initializer->getSourceLocation(); in VisitCXXConstructorDecl()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/ |
| H A D | InclusionRewriter.cpp | 400 unsigned NextToWrite = SM.getFileOffset(RawLex.getSourceLocation()); in Process()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | SemaDeclCXX.cpp | 5042 MarkFunctionReferenced(Initializer->getSourceLocation(), Dtor); in SetDelegatingInitializer() 5043 DiagnoseUseOfDecl(Dtor, Initializer->getSourceLocation()); in SetDelegatingInitializer() 5125 Diag(Value->getSourceLocation(), diag::warn_abstract_vbase_init_ignored) in SetCtorInitializers() 5279 Init->getSourceLocation())) { in DiagnoseBaseOrMemInitializerOrder() 5360 Inits[WarnIndexes.front() - 1]->getSourceLocation(), in DiagnoseBaseOrMemInitializerOrder() 5390 auto D = SemaRef.Diag(PrevInit->getSourceLocation(), in DiagnoseBaseOrMemInitializerOrder() 5407 S.Diag(Init->getSourceLocation(), in CheckRedundantInit() 5414 S.Diag(Init->getSourceLocation(), in CheckRedundantInit() 5419 S.Diag(PrevInit->getSourceLocation(), diag::note_previous_initializer) in CheckRedundantInit() 5439 S.Diag(Init->getSourceLocation(), in CheckRedundantUnionInit() [all …]
|