Home
last modified time | relevance | path

Searched refs:ExpectedLoc (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp299 SourceLocation ExpectedLoc, in attachDirective() argument
304 UD.RegexKind, UD.DirectivePos, ExpectedLoc, MatchAnyFileAndLine, in attachDirective()
503 SourceLocation ExpectedLoc; in ParseDirective() local
508 ExpectedLoc = Pos; in ParseDirective()
521 ExpectedLoc = SM.translateLineCol(SM.getFileID(Pos), ExpectedLine, 1); in ParseDirective()
526 ExpectedLoc = SM.translateLineCol(SM.getFileID(Pos), Line, 1); in ParseDirective()
543 ExpectedLoc = SourceLocation(); in ParseDirective()
562 ExpectedLoc = SM.translateLineCol(FID, Line, 1); in ParseDirective()
565 ExpectedLoc = SM.translateLineCol(FID, 1, 1); in ParseDirective()
570 ExpectedLoc = SourceLocation(); in ParseDirective()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/
H A DParseStmt.cpp767 SourceLocation ExpectedLoc = PP.getLocForEndOfToken(PrevTokLocation); in ParseCaseStatement() local
768 Diag(ExpectedLoc, diag::err_expected_after) in ParseCaseStatement()
770 << FixItHint::CreateInsertion(ExpectedLoc, ":"); in ParseCaseStatement()
771 ColonLoc = ExpectedLoc; in ParseCaseStatement()
848 SourceLocation ExpectedLoc = PP.getLocForEndOfToken(PrevTokLocation); in ParseDefaultStatement() local
849 Diag(ExpectedLoc, diag::err_expected_after) in ParseDefaultStatement()
851 << FixItHint::CreateInsertion(ExpectedLoc, ":"); in ParseDefaultStatement()
852 ColonLoc = ExpectedLoc; in ParseDefaultStatement()
H A DParseExprCXX.cpp1112 SourceLocation ExpectedLoc = in ParseLambdaIntroducer() local
1116 D << InitCapture << FixItHint::CreateInsertion(ExpectedLoc, "..."); in ParseLambdaIntroducer()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaCodeComplete.cpp390 ExpectedLoc = Tok; in enterReturn()
395 ExpectedLoc = Tok; in enterReturn()
399 ExpectedLoc = Tok; in enterReturn()
409 ExpectedLoc = Tok; in enterVariableInit()
421 ExpectedLoc = Tok; in enterDesignatedInitializer()
430 ExpectedLoc = Tok; in enterFunctionArgument()
438 if (ExpectedLoc == LParLoc) in enterParenExpr()
439 ExpectedLoc = Tok; in enterParenExpr()
558 ExpectedLoc = Tok; in enterBinary()
566 if (ExpectedLoc != Base->getBeginLoc()) in enterMemAccess()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DSema.h331 if (!Enabled || Tok != ExpectedLoc) in get()
343 SourceLocation ExpectedLoc; variable