Searched defs:CapturedStmt (Results 1 - 2 of 2) sorted by relevance

/external/clang/lib/AST/
H A DStmt.cpp118 if (auto CapS = dyn_cast_or_null<CapturedStmt>(S))
1071 CapturedStmt::Capture *CapturedStmt::getStoredCaptures() const {
1072 unsigned Size = sizeof(CapturedStmt) + sizeof(Stmt *) * (NumCaptures + 1);
1079 reinterpret_cast<char *>(const_cast<CapturedStmt *>(this))
1083 CapturedStmt::CapturedStmt(Stmt *S, CapturedRegionKind Kind, function in class:CapturedStmt
1107 CapturedStmt::CapturedStmt(EmptyShell Empty, unsigned NumCaptures) function in class:CapturedStmt
1113 CapturedStmt *CapturedStm
[all...]
/external/clang/include/clang/AST/
H A DStmt.h19 #include "clang/Basic/CapturedStmt.h"
1976 /// pragma annotated compound statement can be represented as a CapturedStmt,
1984 class CapturedStmt : public Stmt { class in namespace:clang
2068 CapturedStmt(Stmt *S, CapturedRegionKind Kind, ArrayRef<Capture> Captures,
2072 CapturedStmt(EmptyShell Empty, unsigned NumCaptures);
2075 return reinterpret_cast<Stmt **>(const_cast<CapturedStmt *>(this) + 1);
2083 static CapturedStmt *Create(const ASTContext &Context, Stmt *S,
2089 static CapturedStmt *CreateDeserialized(const ASTContext &Context,
2095 return const_cast<CapturedStmt *>(this)->getCapturedStmt();
2101 return const_cast<CapturedStmt *>(thi
[all...]

Completed in 108 milliseconds