Searched refs:IfLoc (Results 1 - 14 of 14) sorted by relevance

/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Lex/
H A DPPConditionalDirectiveRecord.h92 bool ConditionValue, SourceLocation IfLoc);
97 virtual void Else(SourceLocation Loc, SourceLocation IfLoc);
98 virtual void Endif(SourceLocation Loc, SourceLocation IfLoc);
H A DPPCallbacks.h284 /// \param IfLoc the source location of the \#if/\#ifdef/\#ifndef directive.
287 bool ConditionValue, SourceLocation IfLoc) {
308 /// \param IfLoc the source location of the \#if/\#ifdef/\#ifndef directive.
309 virtual void Else(SourceLocation Loc, SourceLocation IfLoc) { argument
314 /// \param IfLoc the source location of the \#if/\#ifdef/\#ifndef directive.
315 virtual void Endif(SourceLocation Loc, SourceLocation IfLoc) { argument
483 bool ConditionValue, SourceLocation IfLoc) {
484 First->Elif(Loc, ConditionRange, ConditionValue, IfLoc);
485 Second->Elif(Loc, ConditionRange, ConditionValue, IfLoc);
503 virtual void Else(SourceLocation Loc, SourceLocation IfLoc) { argument
286 Elif(SourceLocation Loc, SourceRange ConditionRange, bool ConditionValue, SourceLocation IfLoc) argument
482 Elif(SourceLocation Loc, SourceRange ConditionRange, bool ConditionValue, SourceLocation IfLoc) argument
509 Endif(SourceLocation Loc, SourceLocation IfLoc) argument
[all...]
H A DPreprocessorLexer.h100 CI.IfLoc = DirectiveStart;
H A DToken.h273 SourceLocation IfLoc; member in struct:clang::PPConditionalInfo
/freebsd-9.3-release/contrib/llvm/tools/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
H A DPPDirectives.cpp275 Diag(CurPPLexer->ConditionalStack.back().IfLoc,
372 Callbacks->Endif(Tok.getLocation(), CondInfo.IfLoc);
399 Callbacks->Else(Tok.getLocation(), CondInfo.IfLoc);
434 ShouldEnter, CondInfo.IfLoc);
2299 Callbacks->Endif(EndifToken.getLocation(), CondInfo.IfLoc);
2324 Callbacks->Else(Result.getLocation(), CI.IfLoc);
2327 SkipExcludedConditionalBlock(CI.IfLoc, /*Foundnonskip*/true,
2359 true, CI.IfLoc);
2362 SkipExcludedConditionalBlock(CI.IfLoc, /*Foundnonskip*/true,
H A DPTHLexer.cpp141 PP->Diag(ConditionalStack.back().IfLoc,
H A DLexer.cpp2481 PP->Diag(ConditionalStack.back().IfLoc,
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/AST/
H A DStmt.h850 SourceLocation IfLoc; member in class:clang::IfStmt
888 SourceLocation getIfLoc() const { return IfLoc; }
889 void setIfLoc(SourceLocation L) { IfLoc = L; }
893 SourceLocation getLocStart() const LLVM_READONLY { return IfLoc; }
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Parse/
H A DParseStmt.cpp1030 SourceLocation IfLoc = ConsumeToken(); // eat the 'if'. local
1057 if (ParseParenExprOrCondition(CondExp, CondVar, IfLoc, true))
1060 FullExprArg FullCondExp(Actions.MakeFullExpr(CondExp.get(), IfLoc));
1146 return Actions.ActOnIfStmt(IfLoc, FullCondExp, CondVar, ThenStmt.get(),
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/AST/
H A DStmt.cpp826 : Stmt(IfStmtClass), IfLoc(IL), ElseLoc(EL)
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaStmt.cpp429 Sema::ActOnIfStmt(SourceLocation IfLoc, FullExprArg CondVal, Decl *CondVar, argument
444 CondResult = CheckConditionVariable(ConditionVar, IfLoc, true);
461 return Owned(new (Context) IfStmt(Context, IfLoc, ConditionVar, ConditionExpr,
H A DTreeTransform.h1109 StmtResult RebuildIfStmt(SourceLocation IfLoc, Sema::FullExprArg Cond, argument
1112 return getSema().ActOnIfStmt(IfLoc, Cond, CondVar, Then, ElseLoc, Else);
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h2894 StmtResult ActOnIfStmt(SourceLocation IfLoc,

Completed in 325 milliseconds