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

/external/clang/include/clang/Lex/
H A DPPCallbacks.h202 /// \param IfLoc the source location of the #if/#ifdef/#ifndef directive.
205 SourceLocation IfLoc) {
222 /// \param IfLoc the source location of the #if/#ifdef/#ifndef directive.
223 virtual void Else(SourceLocation Loc, SourceLocation IfLoc) { argument
228 /// \param IfLoc the source location of the #if/#ifdef/#ifndef directive.
229 virtual void Endif(SourceLocation Loc, SourceLocation IfLoc) { argument
353 SourceLocation IfLoc) {
354 First->Elif(Loc, ConditionRange, IfLoc);
355 Second->Elif(Loc, ConditionRange, IfLoc);
371 virtual void Else(SourceLocation Loc, SourceLocation IfLoc) { argument
204 Elif(SourceLocation Loc, SourceRange ConditionRange, SourceLocation IfLoc) argument
352 Elif(SourceLocation Loc, SourceRange ConditionRange, SourceLocation IfLoc) argument
377 Endif(SourceLocation Loc, SourceLocation IfLoc) argument
[all...]
H A DToken.h275 /// IfLoc - Location where the conditional started.
277 SourceLocation IfLoc; member in struct:clang::PPConditionalInfo
/external/clang/lib/Parse/
H A DParseStmt.cpp911 SourceLocation IfLoc = ConsumeToken(); // eat the 'if'. local
938 if (ParseParenExprOrCondition(CondExp, CondVar, IfLoc, true))
1032 return Actions.ActOnIfStmt(IfLoc, FullCondExp, CondVar, ThenStmt.get(),
/external/clang/include/clang/AST/
H A DStmt.h845 SourceLocation IfLoc; member in class:clang::IfStmt
883 SourceLocation getIfLoc() const { return IfLoc; }
884 void setIfLoc(SourceLocation L) { IfLoc = L; }
890 return SourceRange(IfLoc, SubExprs[ELSE]->getLocEnd());
892 return SourceRange(IfLoc, SubExprs[THEN]->getLocEnd());
/external/clang/lib/Sema/
H A DSemaStmt.cpp374 Sema::ActOnIfStmt(SourceLocation IfLoc, FullExprArg CondVal, Decl *CondVar, argument
382 CondResult = CheckConditionVariable(ConditionVar, IfLoc, true);
399 return Owned(new (Context) IfStmt(Context, IfLoc, ConditionVar, ConditionExpr,
H A DTreeTransform.h1065 StmtResult RebuildIfStmt(SourceLocation IfLoc, Sema::FullExprArg Cond, argument
1068 return getSema().ActOnIfStmt(IfLoc, Cond, CondVar, Then, ElseLoc, Else);

Completed in 92 milliseconds