Home
last modified time | relevance | path

Searched refs:VarAndBits (Results 1 – 2 of 2) sorted by relevance

/external/clang/lib/AST/
DExprCXX.cpp774 : VarAndBits(Var, 0), Loc(Loc), EllipsisLoc(EllipsisLoc) in Capture()
792 VarAndBits.setInt(Bits); in Capture()
799 return (VarAndBits.getInt() & Capture_ByCopy)? LCK_ByCopy : LCK_ByRef; in getCaptureKind()
/external/clang/include/clang/AST/
DExprCXX.h1177 llvm::PointerIntPair<VarDecl *, 2> VarAndBits; variable
1207 bool capturesThis() const { return VarAndBits.getPointer() == 0; } in capturesThis()
1210 bool capturesVariable() const { return VarAndBits.getPointer() != 0; } in capturesVariable()
1219 return VarAndBits.getPointer(); in getCapturedVar()
1224 bool isImplicit() const { return VarAndBits.getInt() & Capture_Implicit; } in isImplicit()