HomeSort by: relevance | last modified time | path
    Searched refs:IfLoc (Results 1 - 15 of 15) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
PPConditionalDirectiveRecord.h 91 ConditionValueKind ConditionValue, SourceLocation IfLoc) override;
96 void Else(SourceLocation Loc, SourceLocation IfLoc) override;
97 void Endif(SourceLocation Loc, SourceLocation IfLoc) override;
PPCallbacks.h 340 /// \param IfLoc the source location of the \#if/\#ifdef/\#ifndef directive.
343 ConditionValueKind ConditionValue, SourceLocation IfLoc) {
364 /// \param IfLoc the source location of the \#if/\#ifdef/\#ifndef directive.
365 virtual void Else(SourceLocation Loc, SourceLocation IfLoc) {
370 /// \param IfLoc the source location of the \#if/\#ifdef/\#ifndef directive.
371 virtual void Endif(SourceLocation Loc, SourceLocation IfLoc) {
577 ConditionValueKind ConditionValue, SourceLocation IfLoc) override {
578 First->Elif(Loc, ConditionRange, ConditionValue, IfLoc);
579 Second->Elif(Loc, ConditionRange, ConditionValue, IfLoc);
597 void Else(SourceLocation Loc, SourceLocation IfLoc) override
    [all...]
PreprocessorLexer.h 95 CI.IfLoc = DirectiveStart;
Token.h 317 SourceLocation IfLoc;
  /src/external/apache2/llvm/dist/clang/lib/Lex/
PPConditionalDirectiveRecord.cpp 99 SourceLocation IfLoc) {
105 SourceLocation IfLoc) {
111 SourceLocation IfLoc) {
PPDirectives.cpp 569 Callbacks->Endif(Tok.getLocation(), CondInfo.IfLoc);
596 Callbacks->Else(Tok.getLocation(), CondInfo.IfLoc);
627 CondInfo.IfLoc);
3113 Callbacks->Endif(EndifToken.getLocation(), CondInfo.IfLoc);
3138 Callbacks->Else(Result.getLocation(), CI.IfLoc);
3146 CurPPLexer->pushConditionalLevel(CI.IfLoc, /*wasskip*/false,
3152 SkipExcludedConditionalBlock(HashToken.getLocation(), CI.IfLoc,
3183 PPCallbacks::CVK_NotEvaluated, CI.IfLoc);
3198 HashToken.getLocation(), CI.IfLoc, /*Foundnonskip*/ true,
Lexer.cpp 2775 PP->Diag(ConditionalStack.back().IfLoc,
  /src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
InclusionRewriter.cpp 86 ConditionValueKind ConditionValue, SourceLocation IfLoc) override;
216 SourceLocation IfLoc) {
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseStmt.cpp 1339 SourceLocation IfLoc = ConsumeToken(); // eat the 'if'.
1376 if (ParseParenExprOrCondition(&InitStmt, Cond, IfLoc,
1408 MisleadingIndentationChecker MIChecker(*this, MSK_if, IfLoc);
1492 return Actions.ActOnIfStmt(IfLoc, IsConstexpr, LParen, InitStmt.get(), Cond,
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter9/
toy.cpp 503 SourceLocation IfLoc = CurLoc;
529 return std::make_unique<IfExprAST>(IfLoc, std::move(Cond), std::move(Then),
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaStmt.cpp 861 StmtResult Sema::ActOnIfStmt(SourceLocation IfLoc, bool IsConstexpr,
871 IfLoc),
890 Diags.Report(IfLoc,
892 << SourceRange(IfLoc, LParenLoc.getLocWithOffset(-1));
911 return BuildIfStmt(IfLoc, IsConstexpr, LParenLoc, InitStmt, Cond, RParenLoc,
915 StmtResult Sema::BuildIfStmt(SourceLocation IfLoc, bool IsConstexpr,
926 return IfStmt::Create(Context, IfLoc, IsConstexpr, InitStmt, Cond.get().first,
TreeTransform.h 1323 StmtResult RebuildIfStmt(SourceLocation IfLoc, bool IsConstexpr,
1327 return getSema().ActOnIfStmt(IfLoc, IsConstexpr, LParenLoc, Init, Cond,
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Stmt.h 176 SourceLocation IfLoc;
2066 SourceLocation getIfLoc() const { return IfStmtBits.IfLoc; }
2067 void setIfLoc(SourceLocation IfLoc) { IfStmtBits.IfLoc = IfLoc; }
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h 4662 StmtResult ActOnIfStmt(SourceLocation IfLoc, bool IsConstexpr,
4666 StmtResult BuildIfStmt(SourceLocation IfLoc, bool IsConstexpr,
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTWriter.cpp 2178 AddSourceLocation(Cond.IfLoc, Record);

Completed in 110 milliseconds