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, ConditionValueKind 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 DToken.h271 SourceLocation IfLoc; member in struct:clang::PPConditionalInfo
H A DPPCallbacks.h287 /// \param IfLoc the source location of the \#if/\#ifdef/\#ifndef directive.
290 ConditionValueKind ConditionValue, SourceLocation IfLoc) {
311 /// \param IfLoc the source location of the \#if/\#ifdef/\#ifndef directive.
312 virtual void Else(SourceLocation Loc, SourceLocation IfLoc) { argument
317 /// \param IfLoc the source location of the \#if/\#ifdef/\#ifndef directive.
318 virtual void Endif(SourceLocation Loc, SourceLocation IfLoc) { argument
477 ConditionValueKind ConditionValue, SourceLocation IfLoc) override {
478 First->Elif(Loc, ConditionRange, ConditionValue, IfLoc);
479 Second->Elif(Loc, ConditionRange, ConditionValue, IfLoc);
497 void Else(SourceLocation Loc, SourceLocation IfLoc) overrid
289 Elif(SourceLocation Loc, SourceRange ConditionRange, ConditionValueKind ConditionValue, SourceLocation IfLoc) argument
[all...]
/external/clang/lib/Parse/
H A DParseStmt.cpp1067 SourceLocation IfLoc = ConsumeToken(); // eat the 'if'. local
1094 if (ParseParenExprOrCondition(CondExp, CondVar, IfLoc, true))
1097 FullExprArg FullCondExp(Actions.MakeFullExpr(CondExp.get(), IfLoc));
1181 return Actions.ActOnIfStmt(IfLoc, FullCondExp, CondVar, ThenStmt.get(),
/external/clang/include/clang/AST/
H A DStmt.h871 SourceLocation IfLoc; member in class:clang::IfStmt
910 SourceLocation getIfLoc() const { return IfLoc; }
911 void setIfLoc(SourceLocation L) { IfLoc = L; }
915 SourceLocation getLocStart() const LLVM_READONLY { return IfLoc; }
/external/clang/lib/Sema/
H A DSemaStmt.cpp442 Sema::ActOnIfStmt(SourceLocation IfLoc, FullExprArg CondVal, Decl *CondVar, argument
457 CondResult = CheckConditionVariable(ConditionVar, IfLoc, true);
474 return new (Context) IfStmt(Context, IfLoc, ConditionVar, ConditionExpr,
H A DTreeTransform.h1116 StmtResult RebuildIfStmt(SourceLocation IfLoc, Sema::FullExprArg Cond, argument
1119 return getSema().ActOnIfStmt(IfLoc, Cond, CondVar, Then, ElseLoc, Else);

Completed in 265 milliseconds