Home | History | Annotate | Download | only in AST

Lines Matching refs:NumObjects

1110   ExprWithCleanupsBits.NumObjects = objects.size();
1123 ExprWithCleanups::ExprWithCleanups(EmptyShell empty, unsigned numObjects)
1125 ExprWithCleanupsBits.NumObjects = numObjects;
1130 unsigned numObjects) {
1131 size_t size = sizeof(ExprWithCleanups) + numObjects * sizeof(CleanupObject);
1133 return new (buffer) ExprWithCleanups(empty, numObjects);