Searched defs:CapturedStmt (Results 1 - 2 of 2) sorted by relevance
/external/clang/lib/AST/ |
H A D | Stmt.cpp | 119 if (auto CapS = dyn_cast_or_null<CapturedStmt>(S)) 948 CapturedStmt::Capture::Capture(SourceLocation Loc, VariableCaptureKind Kind, 975 CapturedStmt::Capture *CapturedStmt::getStoredCaptures() const { 976 unsigned Size = sizeof(CapturedStmt) + sizeof(Stmt *) * (NumCaptures + 1); 983 reinterpret_cast<char *>(const_cast<CapturedStmt *>(this)) 987 CapturedStmt::CapturedStmt(Stmt *S, CapturedRegionKind Kind, function in class:CapturedStmt 1011 CapturedStmt::CapturedStmt(EmptyShel function in class:CapturedStmt [all...] |
/external/clang/include/clang/AST/ |
H A D | Stmt.h | 19 #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 2060 CapturedStmt(Stmt *S, CapturedRegionKind Kind, ArrayRef<Capture> Captures, 2064 CapturedStmt(EmptyShell Empty, unsigned NumCaptures); 2077 static CapturedStmt *Create(const ASTContext &Context, Stmt *S, 2083 static CapturedStmt *CreateDeserialized(const ASTContext &Context,
|
Completed in 33 milliseconds