Lines Matching refs:dealloc
38 // are run to call C++ destructors as part of |-dealloc|. The
43 // The original implementation for |-[NSObject dealloc]|.
99 // Replacement |-dealloc| which turns objects into zombies and places
102 // This code should only be called when it is implementing |-dealloc|.
103 DCHECK_EQ(_cmd, @selector(dealloc));
105 // Use the original |-dealloc| if the object doesn't wish to be
112 // Use the original |-dealloc| if |object_cxxDestruct| was never
224 class_getMethodImplementation(rootClass, @selector(dealloc));
313 // Replace the implementation of -[NSObject dealloc].
314 Method m = class_getInstanceMethod([NSObject class], @selector(dealloc));
389 // Put back the original implementation of -[NSObject dealloc].
390 Method m = class_getInstanceMethod([NSObject class], @selector(dealloc));
399 base::AutoLock pin(lock_); // In case any |-dealloc| are in-progress.