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 202 /// \param IfLoc the source location of the #if/#ifdef/#ifndef directive.
205 SourceLocation IfLoc) {
222 /// \param IfLoc the source location of the #if/#ifdef/#ifndef directive.
223 virtual void Else(SourceLocation Loc, SourceLocation IfLoc) {
228 /// \param IfLoc the source location of the #if/#ifdef/#ifndef directive.
229 virtual void Endif(SourceLocation Loc, SourceLocation IfLoc) {
353 SourceLocation IfLoc) {
354 First->Elif(Loc, ConditionRange, IfLoc);
355 Second->Elif(Loc, ConditionRange, IfLoc);
371 virtual void Else(SourceLocation Loc, SourceLocation IfLoc) {
    [all...]
PreprocessorLexer.h 99 CI.IfLoc = DirectiveStart;
PreprocessingRecord.h 606 SourceLocation IfLoc);
609 virtual void Else(SourceLocation Loc, SourceLocation IfLoc);
610 virtual void Endif(SourceLocation Loc, SourceLocation IfLoc);
Token.h 275 /// IfLoc - Location where the conditional started.
277 SourceLocation IfLoc;
  /external/clang/lib/Lex/
PPDirectives.cpp 237 Diag(CurPPLexer->ConditionalStack.back().IfLoc,
330 Callbacks->Endif(Tok.getLocation(), CondInfo.IfLoc);
351 Callbacks->Else(Tok.getLocation(), CondInfo.IfLoc);
386 CondInfo.IfLoc);
    [all...]
PreprocessingRecord.cpp 496 SourceLocation IfLoc) {
501 void PreprocessingRecord::Else(SourceLocation Loc, SourceLocation IfLoc) {
506 void PreprocessingRecord::Endif(SourceLocation Loc, SourceLocation IfLoc) {
PTHLexer.cpp 151 PP->Diag(ConditionalStack.back().IfLoc,
Lexer.cpp     [all...]
  /external/clang/include/clang/AST/
Stmt.h 845 SourceLocation IfLoc;
883 SourceLocation getIfLoc() const { return IfLoc; }
884 void setIfLoc(SourceLocation L) { IfLoc = L; }
890 return SourceRange(IfLoc, SubExprs[ELSE]->getLocEnd());
892 return SourceRange(IfLoc, SubExprs[THEN]->getLocEnd());
    [all...]
  /external/clang/lib/Parse/
ParseStmt.cpp 911 SourceLocation IfLoc = ConsumeToken(); // eat the 'if'.
938 if (ParseParenExprOrCondition(CondExp, CondVar, IfLoc, true))
    [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp 374 Sema::ActOnIfStmt(SourceLocation IfLoc, FullExprArg CondVal, Decl *CondVar,
382 CondResult = CheckConditionVariable(ConditionVar, IfLoc, true);
399 return Owned(new (Context) IfStmt(Context, IfLoc, ConditionVar, ConditionExpr,
    [all...]
TreeTransform.h     [all...]
  /external/clang/lib/AST/
Stmt.cpp 676 : Stmt(IfStmtClass), IfLoc(IL), ElseLoc(EL)
  /external/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 143 milliseconds