Searched defs:IfLoc (Results 1 - 8 of 8) 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.h306 SourceLocation IfLoc; member in struct:clang::PPConditionalInfo
H A DPPCallbacks.h288 /// \param IfLoc the source location of the \#if/\#ifdef/\#ifndef directive.
291 ConditionValueKind ConditionValue, SourceLocation IfLoc) {
312 /// \param IfLoc the source location of the \#if/\#ifdef/\#ifndef directive.
313 virtual void Else(SourceLocation Loc, SourceLocation IfLoc) { argument
318 /// \param IfLoc the source location of the \#if/\#ifdef/\#ifndef directive.
319 virtual void Endif(SourceLocation Loc, SourceLocation IfLoc) { argument
475 ConditionValueKind ConditionValue, SourceLocation IfLoc) override {
476 First->Elif(Loc, ConditionRange, ConditionValue, IfLoc);
477 Second->Elif(Loc, ConditionRange, ConditionValue, IfLoc);
495 void Else(SourceLocation Loc, SourceLocation IfLoc) overrid
290 Elif(SourceLocation Loc, SourceRange ConditionRange, ConditionValueKind ConditionValue, SourceLocation IfLoc) argument
[all...]
/external/clang/lib/Parse/
H A DParseStmt.cpp1091 SourceLocation IfLoc = ConsumeToken(); // eat the 'if'. local
1118 if (ParseParenExprOrCondition(CondExp, CondVar, IfLoc, true))
1121 FullExprArg FullCondExp(Actions.MakeFullExpr(CondExp.get(), IfLoc));
1205 return Actions.ActOnIfStmt(IfLoc, FullCondExp, CondVar, ThenStmt.get(),
/external/llvm/examples/Kaleidoscope/Chapter8/
H A Dtoy.cpp502 SourceLocation IfLoc = CurLoc; local
528 return llvm::make_unique<IfExprAST>(IfLoc, std::move(Cond), std::move(Then),
/external/clang/include/clang/AST/
H A DStmt.h873 SourceLocation IfLoc; member in class:clang::IfStmt
912 SourceLocation getIfLoc() const { return IfLoc; }
913 void setIfLoc(SourceLocation L) { IfLoc = L; }
917 SourceLocation getLocStart() const LLVM_READONLY { return IfLoc; }
/external/clang/lib/Sema/
H A DSemaStmt.cpp492 Sema::ActOnIfStmt(SourceLocation IfLoc, FullExprArg CondVal, Decl *CondVar, argument
500 CondResult = CheckConditionVariable(ConditionVar, IfLoc, true);
501 CondResult = ActOnFinishFullExpr(CondResult.get(), IfLoc);
519 return new (Context) IfStmt(Context, IfLoc, ConditionVar, ConditionExpr,
H A DTreeTransform.h1164 StmtResult RebuildIfStmt(SourceLocation IfLoc, Sema::FullExprArg Cond, argument
1167 return getSema().ActOnIfStmt(IfLoc, Cond, CondVar, Then, ElseLoc, Else);

Completed in 560 milliseconds