reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/include/clang/AST/ExprCXX.h
 3322                    ArrayRef<CleanupObject> Objects);
 3330                                   ArrayRef<CleanupObject> objects);
 3332   ArrayRef<CleanupObject> getObjects() const {
 3333     return llvm::makeArrayRef(getTrailingObjects<CleanupObject>(),
 3339   CleanupObject getObject(unsigned i) const {
tools/clang/lib/AST/ASTImporter.cpp
 7136   SmallVector<ExprWithCleanups::CleanupObject, 8> ToObjects(E->getNumObjects());
tools/clang/lib/AST/ExprCXX.cpp
 1323                                    ArrayRef<CleanupObject> objects)
 1328     getTrailingObjects<CleanupObject>()[i] = objects[i];
 1333                                            ArrayRef<CleanupObject> objects) {
 1334   void *buffer = C.Allocate(totalSizeToAlloc<CleanupObject>(objects.size()),
 1348   void *buffer = C.Allocate(totalSizeToAlloc<CleanupObject>(numObjects),
tools/clang/lib/AST/JSONNodeDumper.cpp
 1329       for (const ExprWithCleanups::CleanupObject &CO : EWC->getObjects())
tools/clang/lib/CodeGen/CGBlocks.cpp
  867     for (const ExprWithCleanups::CleanupObject &C : EWC->getObjects())