/external/clang/lib/Edit/ |
D | Commit.cpp | 225 isAtStartOfMacroExpansion(loc, &loc); in canInsert() 232 if (!isAtStartOfMacroExpansion(loc, &loc)) in canInsert() 339 bool Commit::isAtStartOfMacroExpansion(SourceLocation loc, in isAtStartOfMacroExpansion() function in Commit 341 return Lexer::isAtStartOfMacroExpansion(loc, SourceMgr, LangOpts, MacroBegin); in isAtStartOfMacroExpansion()
|
/external/llvm-project/clang/lib/Edit/ |
D | Commit.cpp | 230 isAtStartOfMacroExpansion(loc, &loc); in canInsert() 236 if (!isAtStartOfMacroExpansion(loc, &loc)) in canInsert() 340 bool Commit::isAtStartOfMacroExpansion(SourceLocation loc, in isAtStartOfMacroExpansion() function in Commit 342 return Lexer::isAtStartOfMacroExpansion(loc, SourceMgr, LangOpts, MacroBegin); in isAtStartOfMacroExpansion()
|
/external/llvm-project/clang/unittests/Lex/ |
D | LexerTest.cpp | 293 EXPECT_TRUE(Lexer::isAtStartOfMacroExpansion(lsqrLoc, SourceMgr, LangOpts, &Loc)); in TEST_F() 295 EXPECT_FALSE(Lexer::isAtStartOfMacroExpansion(idLoc, SourceMgr, LangOpts)); in TEST_F() 533 Lexer::isAtStartOfMacroExpansion(R.getBegin(), SourceMgr, LangOpts)); in TEST_F()
|
/external/llvm-project/clang/include/clang/Edit/ |
D | Commit.h | 144 bool isAtStartOfMacroExpansion(SourceLocation loc,
|
/external/clang/include/clang/Edit/ |
D | Commit.h | 133 bool isAtStartOfMacroExpansion(SourceLocation loc,
|
/external/clang/unittests/Lex/ |
D | LexerTest.cpp | 300 EXPECT_TRUE(Lexer::isAtStartOfMacroExpansion(lsqrLoc, SourceMgr, LangOpts, &Loc)); in TEST_F() 302 EXPECT_FALSE(Lexer::isAtStartOfMacroExpansion(idLoc, SourceMgr, LangOpts)); in TEST_F()
|
/external/clang/include/clang/Lex/ |
D | Lexer.h | 351 static bool isAtStartOfMacroExpansion(SourceLocation loc,
|
D | Preprocessor.h | 1472 bool isAtStartOfMacroExpansion(SourceLocation loc, 1474 return Lexer::isAtStartOfMacroExpansion(loc, SourceMgr, LangOpts,
|
/external/clang/lib/Lex/ |
D | Lexer.cpp | 783 bool Lexer::isAtStartOfMacroExpansion(SourceLocation loc, in isAtStartOfMacroExpansion() function in Lexer 800 return isAtStartOfMacroExpansion(expansionLoc, SM, LangOpts, MacroBegin); in isAtStartOfMacroExpansion() 870 if (!isAtStartOfMacroExpansion(Begin, SM, LangOpts, &Begin)) in makeFileCharRange() 879 (Range.isCharRange() && !isAtStartOfMacroExpansion(End, SM, LangOpts, in makeFileCharRange() 888 if (isAtStartOfMacroExpansion(Begin, SM, LangOpts, &MacroBegin) && in makeFileCharRange() 891 (Range.isCharRange() && isAtStartOfMacroExpansion(End, SM, LangOpts, in makeFileCharRange()
|
/external/llvm-project/clang/include/clang/Lex/ |
D | Lexer.h | 419 static bool isAtStartOfMacroExpansion(SourceLocation loc,
|
D | Preprocessor.h | 1834 bool isAtStartOfMacroExpansion(SourceLocation loc, 1836 return Lexer::isAtStartOfMacroExpansion(loc, SourceMgr, LangOpts,
|
/external/llvm-project/clang/lib/Lex/ |
D | Lexer.cpp | 803 bool Lexer::isAtStartOfMacroExpansion(SourceLocation loc, in isAtStartOfMacroExpansion() function in Lexer 820 return isAtStartOfMacroExpansion(expansionLoc, SM, LangOpts, MacroBegin); in isAtStartOfMacroExpansion() 890 if (!isAtStartOfMacroExpansion(Begin, SM, LangOpts, &Begin)) in makeFileCharRange() 899 (Range.isCharRange() && !isAtStartOfMacroExpansion(End, SM, LangOpts, in makeFileCharRange() 908 if (isAtStartOfMacroExpansion(Begin, SM, LangOpts, &MacroBegin) && in makeFileCharRange() 911 (Range.isCharRange() && isAtStartOfMacroExpansion(End, SM, LangOpts, in makeFileCharRange()
|
/external/clang/lib/ARCMigrate/ |
D | TransformActions.cpp | 392 return PP.isAtStartOfMacroExpansion(loc); in canInsert()
|
/external/llvm-project/clang/lib/ARCMigrate/ |
D | TransformActions.cpp | 393 return PP.isAtStartOfMacroExpansion(loc); in canInsert()
|
/external/clang/lib/Parse/ |
D | ParseExpr.cpp | 322 if (FILoc.isFileID() || PP.isAtStartOfMacroExpansion(FILoc, &FILoc)) { in ParseRHSOfBinaryExpression()
|
/external/llvm-project/clang/lib/StaticAnalyzer/Core/ |
D | BugReporterVisitors.cpp | 2337 if (Lexer::isAtStartOfMacroExpansion(BeginLoc, SM, LO) && in patternMatch()
|
/external/llvm-project/clang/lib/Parse/ |
D | ParseExpr.cpp | 504 if (FILoc.isFileID() || PP.isAtStartOfMacroExpansion(FILoc, &FILoc)) { in ParseRHSOfBinaryExpression()
|
D | ParseDecl.cpp | 100 Lexer::isAtStartOfMacroExpansion(StartLoc, SM, PP.getLangOpts()); in FindLocsWithCommonFileID()
|