HomeSort by relevance Sort by last modified time
    Searched refs:IfLoc (Results 1 - 14 of 14) sorted by null

  /external/clang/include/clang/Lex/
PPCallbacks.h 264 /// \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) {
294 /// \param IfLoc the source location of the \#if/\#ifdef/\#ifndef directive.
295 virtual void Endif(SourceLocation Loc, SourceLocation IfLoc) {
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) {
    [all...]
PPConditionalDirectiveRecord.h 92 bool ConditionValue, SourceLocation IfLoc);
97 virtual void Else(SourceLocation Loc, SourceLocation IfLoc);
98 virtual void Endif(SourceLocation Loc, SourceLocation IfLoc);
PreprocessorLexer.h 100 CI.IfLoc = DirectiveStart;
Token.h 271 SourceLocation IfLoc;
  /external/clang/lib/Lex/
PPConditionalDirectiveRecord.cpp 102 SourceLocation IfLoc) {
108 SourceLocation IfLoc) {
114 SourceLocation IfLoc) {
PPDirectives.cpp 275 Diag(CurPPLexer->ConditionalStack.back().IfLoc,
372 Callbacks->Endif(Tok.getLocation(), CondInfo.IfLoc);
399 Callbacks->Else(Tok.getLocation(), CondInfo.IfLoc);
434 ShouldEnter, CondInfo.IfLoc);
    [all...]
PTHLexer.cpp 150 PP->Diag(ConditionalStack.back().IfLoc,
Lexer.cpp     [all...]
  /external/clang/include/clang/AST/
Stmt.h 848 SourceLocation IfLoc;
886 SourceLocation getIfLoc() const { return IfLoc; }
887 void setIfLoc(SourceLocation L) { IfLoc = L; }
891 SourceLocation getLocStart() const LLVM_READONLY { return IfLoc; }
    [all...]
  /external/clang/lib/Parse/
ParseStmt.cpp 965 SourceLocation IfLoc = ConsumeToken(); // eat the 'if'.
    [all...]
  /external/clang/lib/AST/
Stmt.cpp 826 : Stmt(IfStmtClass), IfLoc(IL), ElseLoc(EL)
    [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp 432 Sema::ActOnIfStmt(SourceLocation IfLoc, FullExprArg CondVal, Decl *CondVar,
447 CondResult = CheckConditionVariable(ConditionVar, IfLoc, true);
464 return Owned(new (Context) IfStmt(Context, IfLoc, ConditionVar, ConditionExpr,
    [all...]
TreeTransform.h     [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 697 milliseconds