Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DExprCXX.h1196 llvm::PointerIntPair<VarDecl *, 2> VarAndBits; variable
1226 bool capturesThis() const { return VarAndBits.getPointer() == 0; } in capturesThis()
1229 bool capturesVariable() const { return VarAndBits.getPointer() != 0; } in capturesVariable()
1238 return VarAndBits.getPointer(); in getCapturedVar()
1243 bool isImplicit() const { return VarAndBits.getInt() & Capture_Implicit; } in isImplicit()
/external/clang/lib/AST/
DExprCXX.cpp804 : VarAndBits(Var, 0), Loc(Loc), EllipsisLoc(EllipsisLoc) in Capture()
822 VarAndBits.setInt(Bits); in Capture()
829 return (VarAndBits.getInt() & Capture_ByCopy)? LCK_ByCopy : LCK_ByRef; in getCaptureKind()