HomeSort by relevance Sort by last modified time
    Searched full:dealloc (Results 26 - 50 of 600) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/remoting/host/mac/
me2me_preference_pane_confirm_pin.mm 17 - (void)dealloc {
19 [super dealloc];
  /external/chromium_org/third_party/skia/experimental/iOSSampleApp/iPad/
SkUISplitViewController.mm 16 - (void)dealloc {
19 [super dealloc];
  /external/skia/experimental/iOSSampleApp/iPad/
SkUISplitViewController.mm 16 - (void)dealloc {
19 [super dealloc];
  /external/clang/lib/StaticAnalyzer/Checkers/
CheckObjCDealloc.cpp 1 //==- CheckObjCDealloc.cpp - Check ObjC -dealloc implementation --*- C++ -*-==//
12 // correctly implements -dealloc.
31 static bool scan_dealloc(Stmt *S, Selector Dealloc) {
34 if (ME->getSelector() == Dealloc) {
46 if (*I && scan_dealloc(*I, Dealloc))
143 // need to implement -dealloc. They implement tear down in another way,
153 // Get the "dealloc" selector.
154 IdentifierInfo* II = &Ctx.Idents.get("dealloc");
158 // Scan the instance methods for "dealloc".
169 if (!MD) { // No dealloc found
    [all...]
  /external/chromium_org/chrome/common/mac/
objc_method_swizzle_unittest.mm 43 EXPECT_EQ(class_getInstanceMethod([NSObject class], @selector(dealloc)),
44 GetImplementedInstanceMethod([NSObject class], @selector(dealloc)));
56 EXPECT_TRUE(class_getInstanceMethod(testClass, @selector(dealloc)));
57 EXPECT_FALSE(GetImplementedInstanceMethod(testClass, @selector(dealloc)));
  /external/qemu/include/qapi/
dealloc-visitor.h 2 * Dealloc Visitor
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRDoubleKeyMap.m 91 - (void) dealloc
94 NSLog( @"called dealloc in ANTLRCommonToken" );
97 [super dealloc];
  /external/clang/test/ARCMT/
remove-dealloc-zerouts.m 20 - (void) dealloc {
37 - (void) dealloc {
39 self.a.x = 0; // every dealloc must zero out its own ivar. This patter is not recognized.
remove-dealloc-zerouts.m.result 20 - (void) dealloc {
32 - (void) dealloc {
34 self.a.x = 0; // every dealloc must zero out its own ivar. This patter is not recognized.
GC-no-arc-runtime.m.result 18 -(void)dealloc {
19 // dealloc
32 -(void)dealloc {
  /ndk/sources/cxx-stl/gabi++/src/
cxxabi_vec.cc 50 scoped_block(void* ptr, size_t size, dealloc2_func dealloc)
51 : ptr_(ptr), size_(size), dealloc_(dealloc) {}
135 dealloc_func dealloc) {
137 // dealloc parameter. force a cast because on all supported
138 // platforms, it is possible to call the dealloc function here
142 reinterpret_cast<dealloc2_func>(dealloc));
151 dealloc2_func dealloc) {
172 scoped_block block(base, size, dealloc);
289 // for deallocation instead of the default delete function. If dealloc
290 // throws an exception, the result is undefined. The dealloc pointe
    [all...]
  /external/valgrind/main/massif/tests/
peak2.stderr.exp 27 Massif: dealloc S. 4 (t:2016, hp:1600, ex:128, st:0)
31 Massif: dealloc S. 8 (t:4032, hp:3200, ex:256, st:0)
35 Massif: dealloc S. 12 (t:6048, hp:4800, ex:384, st:0)
39 Massif: dealloc S. 16 (t:8064, hp:6400, ex:512, st:0)
43 Massif: dealloc S. 20 (t:10080, hp:8000, ex:640, st:0)
47 Massif: dealloc S. 24 (t:12096, hp:9600, ex:768, st:0)
51 Massif: dealloc S. 28 (t:14112, hp:11200, ex:896, st:0)
55 Massif: dealloc S. 32 (t:16128, hp:12800, ex:1024, st:0)
59 Massif: dealloc S. 36 (t:18144, hp:14400, ex:1152, st:0)
63 Massif: dealloc S. 40 (t:20160, hp:16000, ex:1280, st:0
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/applescript/
bookmark_applescript_utils_unittest.mm 44 - (void)dealloc {
47 [super dealloc];
bookmark_item_applescript.mm 27 - (void)dealloc {
29 [super dealloc];
  /external/chromium_org/third_party/ocmock/OCMock/
OCMBlockCaller.m 19 -(void)dealloc
22 [super dealloc];
OCMIndirectReturnValueProvider.m 20 - (void)dealloc
23 [super dealloc];
OCMNotificationPoster.m 18 - (void)dealloc
21 [super dealloc];
OCMPassByRefSetter.m 18 - (void)dealloc
21 [super dealloc];
  /external/chromium_org/third_party/skia/experimental/SimpleiOSApp/iPad/
AppDelegate_iPad.m 61 - (void)dealloc {
63 [super dealloc];
  /external/chromium_org/third_party/skia/experimental/iOSSampleApp/Shared/
SkUIRootViewController.mm 22 - (void)dealloc {
26 [super dealloc];
  /external/chromium_org/third_party/skia/src/views/mac/
SkEventNotifier.mm 26 - (void)dealloc {
28 [super dealloc];
  /external/chromium_org/tools/gyp/test/mac/framework/TestFramework/
ObjCVector.mm 23 - (void)dealloc {
25 [super dealloc];
  /external/clang/test/Analysis/
MissingDealloc.m 1 // RUN: %clang_cc1 -analyze -analyzer-checker=alpha.osx.cocoa.Dealloc %s -verify
10 - (void)dealloc;
27 - (void)dealloc {
29 [super dealloc];
70 // synthesized property but was released in 'dealloc'"
80 - (void)dealloc {
84 [super dealloc];
90 // - Disable the missing -dealloc check for classes that subclass SenTestCase
  /external/clang/test/SemaObjC/
undef-superclass-1.m 24 - (void)dealloc {
25 [super dealloc]; // expected-error {{'SUPER' cannot use 'super' because it is a root class}}
  /external/lldb/test/lang/objc/radar-9691614/
main.m 31 - (void)dealloc
35 [super dealloc];

Completed in 930 milliseconds

12 3 4 5 6 7 8 91011>>