Searched defs:IfLoc (Results 1 - 5 of 5) sorted by relevance

/external/clang/include/clang/Lex/
H A DToken.h271 /// IfLoc - Location where the conditional started.
273 SourceLocation IfLoc; member in struct:clang::PPConditionalInfo
/external/clang/lib/Parse/
H A DParseStmt.cpp880 SourceLocation IfLoc = ConsumeToken(); // eat the 'if'. local
907 if (ParseParenExprOrCondition(CondExp, CondVar, IfLoc, true))
994 return Actions.ActOnIfStmt(IfLoc, FullCondExp, CondVar, ThenStmt.get(),
/external/clang/include/clang/AST/
H A DStmt.h711 SourceLocation IfLoc; member in class:clang::IfStmt
749 SourceLocation getIfLoc() const { return IfLoc; }
750 void setIfLoc(SourceLocation L) { IfLoc = L; }
756 return SourceRange(IfLoc, SubExprs[ELSE]->getLocEnd());
758 return SourceRange(IfLoc, SubExprs[THEN]->getLocEnd());
/external/clang/lib/Sema/
H A DSemaStmt.cpp335 Sema::ActOnIfStmt(SourceLocation IfLoc, FullExprArg CondVal, Decl *CondVar, argument
343 CondResult = CheckConditionVariable(ConditionVar, IfLoc, true);
372 return Owned(new (Context) IfStmt(Context, IfLoc, ConditionVar, ConditionExpr,
H A DTreeTransform.h1019 StmtResult RebuildIfStmt(SourceLocation IfLoc, Sema::FullExprArg Cond, argument
1022 return getSema().ActOnIfStmt(IfLoc, Cond, CondVar, Then, ElseLoc, Else);

Completed in 409 milliseconds