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

/external/clang/lib/Lex/
H A DPPConditionalDirectiveRecord.cpp102 SourceLocation IfLoc) {
108 SourceLocation IfLoc) {
114 SourceLocation IfLoc) {
99 Elif(SourceLocation Loc, SourceRange ConditionRange, bool ConditionValue, SourceLocation IfLoc) argument
107 Else(SourceLocation Loc, SourceLocation IfLoc) argument
113 Endif(SourceLocation Loc, SourceLocation IfLoc) argument
/external/clang/include/clang/Lex/
H A DPPCallbacks.h264 /// \param IfLoc the source location of the \#if/\#ifdef/\#ifndef directive.
267 bool ConditionValue, SourceLocation IfLoc) {
288 /// \param IfLoc the source location of the \#if/\#ifdef/\#ifndef directive.
289 virtual void Else(SourceLocation Loc, SourceLocation IfLoc) { argument
294 /// \param IfLoc the source location of the \#if/\#ifdef/\#ifndef directive.
295 virtual void Endif(SourceLocation Loc, SourceLocation IfLoc) { argument
440 bool ConditionValue, SourceLocation IfLoc) {
441 First->Elif(Loc, ConditionRange, ConditionValue, IfLoc);
442 Second->Elif(Loc, ConditionRange, ConditionValue, IfLoc);
460 virtual void Else(SourceLocation Loc, SourceLocation IfLoc) { argument
266 Elif(SourceLocation Loc, SourceRange ConditionRange, bool ConditionValue, SourceLocation IfLoc) argument
439 Elif(SourceLocation Loc, SourceRange ConditionRange, bool ConditionValue, SourceLocation IfLoc) argument
466 Endif(SourceLocation Loc, SourceLocation IfLoc) argument
[all...]
H A DToken.h271 SourceLocation IfLoc; member in struct:clang::PPConditionalInfo
/external/clang/lib/Parse/
H A DParseStmt.cpp965 SourceLocation IfLoc = ConsumeToken(); // eat the 'if'. local
992 if (ParseParenExprOrCondition(CondExp, CondVar, IfLoc, true))
995 FullExprArg FullCondExp(Actions.MakeFullExpr(CondExp.get(), IfLoc));
1081 return Actions.ActOnIfStmt(IfLoc, FullCondExp, CondVar, ThenStmt.get(),
/external/clang/include/clang/AST/
H A DStmt.h848 SourceLocation IfLoc; member in class:clang::IfStmt
886 SourceLocation getIfLoc() const { return IfLoc; }
887 void setIfLoc(SourceLocation L) { IfLoc = L; }
891 SourceLocation getLocStart() const LLVM_READONLY { return IfLoc; }
/external/clang/lib/Sema/
H A DSemaStmt.cpp432 Sema::ActOnIfStmt(SourceLocation IfLoc, FullExprArg CondVal, Decl *CondVar, argument
447 CondResult = CheckConditionVariable(ConditionVar, IfLoc, true);
464 return Owned(new (Context) IfStmt(Context, IfLoc, ConditionVar, ConditionExpr,
H A DTreeTransform.h1093 StmtResult RebuildIfStmt(SourceLocation IfLoc, Sema::FullExprArg Cond, argument
1096 return getSema().ActOnIfStmt(IfLoc, Cond, CondVar, Then, ElseLoc, Else);

Completed in 685 milliseconds