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

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
StmtCXX.h 341 Stmt **getStoredStmts() { return getTrailingObjects<Stmt *>(); }
343 Stmt *const *getStoredStmts() const { return getTrailingObjects<Stmt *>(); }
379 return getStoredStmts()[SubStmt::Body];
383 return getStoredStmts()[SubStmt::Promise];
390 return getStoredStmts()[SubStmt::InitSuspend];
393 return getStoredStmts()[SubStmt::FinalSuspend];
397 return getStoredStmts()[SubStmt::OnException];
400 return getStoredStmts()[SubStmt::OnFallthrough];
404 return cast_or_null<Expr>(getStoredStmts()[SubStmt::Allocate]);
407 return cast_or_null<Expr>(getStoredStmts()[SubStmt::Deallocate])
    [all...]
Stmt.h 3549 Stmt **getStoredStmts() { return reinterpret_cast<Stmt **>(this + 1); }
3551 Stmt *const *getStoredStmts() const {
3557 void setCapturedStmt(Stmt *S) { getStoredStmts()[NumCaptures] = S; }
3572 Stmt *getCapturedStmt() { return getStoredStmts()[NumCaptures]; }
3573 const Stmt *getCapturedStmt() const { return getStoredStmts()[NumCaptures]; }
3646 return reinterpret_cast<Expr **>(getStoredStmts());
3650 return reinterpret_cast<Expr *const *>(getStoredStmts());
ExprCXX.h 1895 Stmt **getStoredStmts() { return getTrailingObjects<Stmt *>(); }
1896 Stmt *const *getStoredStmts() const { return getTrailingObjects<Stmt *>(); }
1993 return reinterpret_cast<Expr **>(getStoredStmts());
1999 return reinterpret_cast<Expr *const *>(getStoredStmts());
  /src/external/apache2/llvm/dist/clang/lib/AST/
StmtCXX.cpp 103 auto *ParamBegin = Result->getStoredStmts() + SubStmt::FirstParamMove;
111 Stmt **SubStmts = getStoredStmts();
ExprCXX.cpp 1142 Stmt **Stored = getStoredStmts();
1158 getStoredStmts()[NumCaptures] = nullptr; // Not one past the end.
1189 if (!getStoredStmts()[capture_size()]) {
1191 This->getStoredStmts()[capture_size()] = getCallOperator()->getBody();
1197 return getStoredStmts()[capture_size()];
1282 return child_range(getStoredStmts(), getStoredStmts() + capture_size() + 1);
1287 return const_child_range(getStoredStmts(),
1288 getStoredStmts() + capture_size() + 1);
Stmt.cpp 1319 Stmt **Stored = getStoredStmts();
1334 getStoredStmts()[NumCaptures] = nullptr;
1348 // getStoredStmts() getStoredCaptures()
1380 return child_range(getStoredStmts(), getStoredStmts() + NumCaptures);
1384 return const_child_range(getStoredStmts(), getStoredStmts() + NumCaptures);
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderStmt.cpp 457 auto *StoredStmts = S->getStoredStmts();

Completed in 50 milliseconds