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

  /external/clang/include/clang/Lex/
PPConditionalDirectiveRecord.h 92 ConditionValueKind ConditionValue, SourceLocation IfLoc) override;
97 void Else(SourceLocation Loc, SourceLocation IfLoc) override;
98 void Endif(SourceLocation Loc, SourceLocation IfLoc) override;
PPCallbacks.h 288 /// \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) {
318 /// \param IfLoc the source location of the \#if/\#ifdef/\#ifndef directive.
319 virtual void Endif(SourceLocation Loc, SourceLocation IfLoc) {
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) override
    [all...]
PreprocessorLexer.h 100 CI.IfLoc = DirectiveStart;
Token.h 306 SourceLocation IfLoc;
  /external/clang/lib/Lex/
PPConditionalDirectiveRecord.cpp 102 SourceLocation IfLoc) {
108 SourceLocation IfLoc) {
114 SourceLocation IfLoc) {
PPDirectives.cpp 320 Diag(CurPPLexer->ConditionalStack.back().IfLoc,
417 Callbacks->Endif(Tok.getLocation(), CondInfo.IfLoc);
444 Callbacks->Else(Tok.getLocation(), CondInfo.IfLoc);
472 (CondValue ? PPCallbacks::CVK_True : PPCallbacks::CVK_False), CondInfo.IfLoc);
    [all...]
PTHLexer.cpp 143 PP->Diag(ConditionalStack.back().IfLoc,
Lexer.cpp     [all...]
  /external/clang/include/clang/AST/
Stmt.h 873 SourceLocation IfLoc;
912 SourceLocation getIfLoc() const { return IfLoc; }
913 void setIfLoc(SourceLocation L) { IfLoc = L; }
917 SourceLocation getLocStart() const LLVM_READONLY { return IfLoc; }
    [all...]
  /external/clang/lib/Parse/
ParseStmt.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 502 SourceLocation IfLoc = CurLoc;
528 return llvm::make_unique<IfExprAST>(IfLoc, std::move(Cond), std::move(Then),
    [all...]
  /external/clang/lib/AST/
Stmt.cpp 761 : Stmt(IfStmtClass), IfLoc(IL), ElseLoc(EL)
    [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp 492 Sema::ActOnIfStmt(SourceLocation IfLoc, FullExprArg CondVal, Decl *CondVar,
500 CondResult = CheckConditionVariable(ConditionVar, IfLoc, true);
501 CondResult = ActOnFinishFullExpr(CondResult.get(), IfLoc);
519 return new (Context) IfStmt(Context, IfLoc, ConditionVar, ConditionExpr,
    [all...]
TreeTransform.h     [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 141 milliseconds