Home
last modified time | relevance | path

Searched refs:NumObjects (Results 1 – 4 of 4) sorted by relevance

/minix3/external/bsd/llvm/dist/clang/lib/AST/
H A DExprCXX.cpp1119 ExprWithCleanupsBits.NumObjects = objects.size(); in ExprWithCleanups()
1134 ExprWithCleanupsBits.NumObjects = numObjects; in ExprWithCleanups()
/minix3/external/bsd/llvm/dist/clang/lib/Serialization/
H A DASTReaderStmt.cpp1402 unsigned NumObjects = Record[Idx++]; in VisitExprWithCleanups() local
1403 assert(NumObjects == E->getNumObjects()); in VisitExprWithCleanups()
1404 for (unsigned i = 0; i != NumObjects; ++i) in VisitExprWithCleanups()
/minix3/external/bsd/llvm/dist/clang/include/clang/AST/
H A DExprCXX.h2764 ExprWithCleanups(EmptyShell, unsigned NumObjects);
2786 unsigned getNumObjects() const { return ExprWithCleanupsBits.NumObjects; } in getNumObjects()
H A DStmt.h239 unsigned NumObjects : 32 - NumExprBits; variable