Searched refs:SmartPointer (Results 1 – 6 of 6) sorted by relevance
23 class SmartPointer { class26 SmartPointer(void *x) : X(x) {} in SmartPointer() function in SmartPointer27 ~SmartPointer() { in ~SmartPointer()35 SmartPointer Deleter(mem); in testSmartPointer()46 SmartPointer Deleter(mem); in testSmartPointer2()55 class Subclass : public SmartPointer {57 Subclass(void *x) : SmartPointer(x) {} in Subclass()72 class MultipleInheritance : public Subclass, public SmartPointer {74 MultipleInheritance(void *a, void *b) : Subclass(a), SmartPointer(b) {} in MultipleInheritance()112 SmartPointer P;
277 class SmartPointer {280 SmartPointer(id x) : x(x) {}281 ~SmartPointer() { [x release]; }293 SmartPointer foo(x);298 SmartPointer foo(0);306 SmartPointer foo(0);312 SmartPointer *foo = new SmartPointer(x);
3 struct SmartPointer { struct4 ~SmartPointer();45 void negativeSmartPointer(SmartPointer P) { in negativeSmartPointer()
3 struct SmartPointer { struct4 ~SmartPointer();46 const SmartPointer &getSmartPointer();
24 struct SmartPointer { struct25 ~SmartPointer();79 for (auto P : View<Iterator<SmartPointer>>()) { in negativeSmartPointer()
199 TEST(PointeeIteratorTest, SmartPointer) { in TEST() argument