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 225 /// \param IfLoc the source location of the \#if/\#ifdef/\#ifndef directive.
228 SourceLocation IfLoc) {
249 /// \param IfLoc the source location of the \#if/\#ifdef/\#ifndef directive.
250 virtual void Else(SourceLocation Loc, SourceLocation IfLoc) {
255 /// \param IfLoc the source location of the \#if/\#ifdef/\#ifndef directive.
256 virtual void Endif(SourceLocation Loc, SourceLocation IfLoc) {
391 SourceLocation IfLoc) {
392 First->Elif(Loc, ConditionRange, IfLoc);
393 Second->Elif(Loc, ConditionRange, IfLoc);
411 virtual void Else(SourceLocation Loc, SourceLocation IfLoc) {
    [all...]
PPConditionalDirectiveRecord.h 91 SourceLocation IfLoc);
96 virtual void Else(SourceLocation Loc, SourceLocation IfLoc);
97 virtual void Endif(SourceLocation Loc, SourceLocation IfLoc);
PreprocessorLexer.h 100 CI.IfLoc = DirectiveStart;
Token.h 270 SourceLocation IfLoc;
  /external/clang/lib/Lex/
PPConditionalDirectiveRecord.cpp 100 SourceLocation IfLoc) {
106 SourceLocation IfLoc) {
112 SourceLocation IfLoc) {
PPDirectives.cpp 243 Diag(CurPPLexer->ConditionalStack.back().IfLoc,
340 Callbacks->Endif(Tok.getLocation(), CondInfo.IfLoc);
367 Callbacks->Else(Tok.getLocation(), CondInfo.IfLoc);
402 CondInfo.IfLoc);
    [all...]
PTHLexer.cpp 150 PP->Diag(ConditionalStack.back().IfLoc,
Lexer.cpp     [all...]
  /external/clang/include/clang/AST/
Stmt.h 855 SourceLocation IfLoc;
893 SourceLocation getIfLoc() const { return IfLoc; }
894 void setIfLoc(SourceLocation L) { IfLoc = L; }
898 SourceLocation getLocStart() const LLVM_READONLY { return IfLoc; }
    [all...]
  /external/clang/lib/Parse/
ParseStmt.cpp 945 SourceLocation IfLoc = ConsumeToken(); // eat the 'if'.
    [all...]
  /external/clang/lib/AST/
Stmt.cpp 834 : Stmt(IfStmtClass), IfLoc(IL), ElseLoc(EL)
    [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp 418 Sema::ActOnIfStmt(SourceLocation IfLoc, FullExprArg CondVal, Decl *CondVar,
433 CondResult = CheckConditionVariable(ConditionVar, IfLoc, true);
450 return Owned(new (Context) IfStmt(Context, IfLoc, ConditionVar, ConditionExpr,
    [all...]
TreeTransform.h     [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 246 milliseconds