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