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

  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaStmt.cpp 862 SourceLocation LParenLoc, Stmt *InitStmt,
911 return BuildIfStmt(IfLoc, IsConstexpr, LParenLoc, InitStmt, Cond, RParenLoc,
916 SourceLocation LParenLoc, Stmt *InitStmt,
926 return IfStmt::Create(Context, IfLoc, IsConstexpr, InitStmt, Cond.get().first,
1055 Stmt *InitStmt, ConditionResult Cond,
1078 auto *SS = SwitchStmt::Create(Context, InitStmt, Cond.get().first, CondExpr,
2436 SourceLocation CoawaitLoc, Stmt *InitStmt,
2445 if (InitStmt)
2446 return Diag(InitStmt->getBeginLoc(), diag::err_objc_for_range_init_stmt)
2447 << InitStmt->getSourceRange()
    [all...]
SemaOpenMP.cpp 12671 StmtResult InitStmt = new (Context)
12674 if (!InitStmt.isUsable())
12723 ForStmt(Context, InitStmt.get(), CondExpr.get(), nullptr,
12747 StmtResult InitStmt = new (Context)
12750 if (!InitStmt.isUsable())
12766 ForStmt(Context, InitStmt.get(), CondExpr.get(), nullptr,
SemaDeclCXX.cpp 8277 Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(VD), Loc, Loc);
8308 return S.ActOnIfStmt(Loc, /*IsConstexpr=*/false, Loc, InitStmt, Cond, Loc,
13863 Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(IterationVar),Loc,Loc);
13902 Loc, Loc, InitStmt,
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseStmt.cpp 1182 bool Parser::ParseParenExprOrCondition(StmtResult *InitStmt,
1192 Cond = ParseCXXCondition(InitStmt, Loc, CK);
1372 StmtResult InitStmt;
1376 if (ParseParenExprOrCondition(&InitStmt, Cond, IfLoc,
1492 return Actions.ActOnIfStmt(IfLoc, IsConstexpr, LParen, InitStmt.get(), Cond,
1530 StmtResult InitStmt;
1534 if (ParseParenExprOrCondition(&InitStmt, Cond, SwitchLoc,
1539 SwitchLoc, LParen, InitStmt.get(), Cond, RParen);
ParseExprCXX.cpp 1928 /// \param InitStmt If non-null, an init-statement is permitted, and if present
1941 Sema::ConditionResult Parser::ParseCXXCondition(StmtResult *InitStmt,
1981 switch (isCXXConditionDeclarationOrInitStatement(InitStmt, FRI)) {
1990 if (InitStmt && Tok.is(tok::semi)) {
1999 *InitStmt = Actions.ActOnNullStmt(SemiLoc);
2008 if (InitStmt && Tok.is(tok::semi)) {
2010 *InitStmt = Actions.ActOnExprStmt(Expr.get());
2023 *InitStmt = Actions.ActOnDeclStmt(DG, DeclStart, DeclEnd);
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
StmtCXX.h 146 CXXForRangeStmt(Stmt *InitStmt, DeclStmt *Range, DeclStmt *Begin,
  /src/external/apache2/llvm/dist/clang/include/clang/Parse/
Parser.h 1973 Sema::ConditionResult ParseCXXCondition(StmtResult *InitStmt,
2074 bool ParseParenExprOrCondition(StmtResult *InitStmt,
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h 4663 SourceLocation LParenLoc, Stmt *InitStmt,
4667 SourceLocation LParenLoc, Stmt *InitStmt,
4671 SourceLocation LParenLoc, Stmt *InitStmt,
4710 Stmt *InitStmt,
4717 Stmt *InitStmt,
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGStmtOpenMP.cpp 1969 if (const Stmt *InitStmt = For->getInit())
1970 EmitStmt(InitStmt);

Completed in 100 milliseconds