/external/clang/include/clang/Lex/ |
PreprocessorLexer.h | 97 CI.IfLoc = DirectiveStart;
|
Token.h | 268 /// IfLoc - Location where the conditional started. 270 SourceLocation IfLoc;
|
/external/clang/include/clang/AST/ |
Stmt.h | 700 SourceLocation IfLoc; 738 SourceLocation getIfLoc() const { return IfLoc; } 739 void setIfLoc(SourceLocation L) { IfLoc = L; } 745 return SourceRange(IfLoc, SubExprs[ELSE]->getLocEnd()); 747 return SourceRange(IfLoc, SubExprs[THEN]->getLocEnd()); [all...] |
/external/clang/lib/Lex/ |
PPDirectives.cpp | 226 Diag(CurPPLexer->ConditionalStack.back().IfLoc, [all...] |
PTHLexer.cpp | 151 PP->Diag(ConditionalStack.back().IfLoc,
|
Lexer.cpp | [all...] |
/external/clang/lib/Parse/ |
ParseStmt.cpp | 871 SourceLocation IfLoc = ConsumeToken(); // eat the 'if'. 898 if (ParseParenExprOrCondition(CondExp, CondVar, IfLoc, true)) [all...] |
/external/clang/lib/Sema/ |
SemaStmt.cpp | 278 Sema::ActOnIfStmt(SourceLocation IfLoc, FullExprArg CondVal, Decl *CondVar, 286 CondResult = CheckConditionVariable(ConditionVar, IfLoc, true); 315 return Owned(new (Context) IfStmt(Context, IfLoc, ConditionVar, ConditionExpr, [all...] |
TreeTransform.h | [all...] |
/external/clang/lib/AST/ |
Stmt.cpp | 596 : Stmt(IfStmtClass), IfLoc(IL), ElseLoc(EL)
|
/external/clang/include/clang/Sema/ |
Sema.h | [all...] |