Home | History | Annotate | Download | only in memory

Lines Matching refs:object

14 // of an NSObject subclass object.  Style deviations here are solely for
18 // When scoped_nsobject<> takes ownership of an object (in the constructor or
20 // caller must own the object it gives to scoped_nsobject<>, and relinquishes
21 // an ownership claim to that object. scoped_nsobject<> does not call
34 explicit scoped_nsobject(NST* object = nil)
35 : object_(object) {
42 void reset(NST* object = nil) {
43 // We intentionally do not check that object != object_ as the caller must
49 object_ = object;
70 // a wrapper for [object_ release]. To force a scoped_nsobject<> object to
107 explicit scoped_nsobject(id object = nil)
108 : object_(object) {
115 void reset(id object = nil) {
116 // We intentionally do not check that object != object_ as the caller must
122 object_ = object;
143 // a wrapper for [object_ release]. To force a scoped_nsobject<> object to
163 explicit scoped_nsobject(NSAutoreleasePool* object = nil);