Searched refs:byRef (Results 1 – 3 of 3) sorted by relevance
/external/clang/include/clang/Sema/ |
D | ScopeInfo.h | 182 Capture(VarDecl *Var, bool block, bool byRef, bool isNested, in Capture() argument 185 : VarAndKind(Var, block ? Cap_Block : byRef ? Cap_ByRef : Cap_ByCopy), in Capture()
|
/external/clang/include/clang/AST/ |
D | Decl.h | 3083 Capture(VarDecl *variable, bool byRef, bool nested, Expr *copy) in Capture() argument 3085 (byRef ? flag_isByRef : 0) | (nested ? flag_isNested : 0)), in Capture()
|
/external/clang/lib/Serialization/ |
D | ASTReaderDecl.cpp | 970 bool byRef = (flags & 1); in VisitBlockDecl() local 974 captures.push_back(BlockDecl::Capture(decl, byRef, nested, copyExpr)); in VisitBlockDecl()
|