/external/chromium_org/third_party/sqlite/src/test/ |
func3.test | 21 set destroyed 0 22 proc destroy {} { set ::destroyed 1 } 24 set destroyed 28 set destroyed 32 set destroyed 36 set destroyed 40 set destroyed 0 41 proc destroy {} { set ::destroyed 1 } 43 set destroyed 47 set destroyed [all...] |
/external/valgrind/main/docs/internals/ |
tm-mutexstates.dot | 14 free -> dead [ label="destroyed" ]; 21 locked -> dead [ style=dotted, label="destroyed\nwhile locked" ];
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_module.py | 69 destroyed = [] 71 m.destroyed = destroyed 73 def __del__(self, destroyed=destroyed): 74 destroyed.append(1) 79 self.assertEqual(destroyed, [1])
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_module.py | 69 destroyed = [] 71 m.destroyed = destroyed 73 def __del__(self, destroyed=destroyed): 74 destroyed.append(1) 79 self.assertEqual(destroyed, [1])
|
/external/clang/test/CXX/special/class.dtor/ |
p10-0x.cpp | 9 x->~decltype(*x)(); // expected-error{{the type of object expression ('const int') does not match the type being destroyed ('decltype(*x)' (aka 'const int &')) in pseudo-destructor expression}} \ 13 y->~decltype(*y)(); // expected-error{{destructor type 'decltype(*y)' (aka 'const A &') in object destruction expression does not match the type 'const A' of the object being destroyed}} 14 y->~decltype(T())(); // expected-error{{destructor type 'decltype(T())' in object destruction expression does not match the type 'const A' of the object being destroyed}} 21 x->~decltype(*x)(); // expected-error{{destructor type 'decltype(*x)' (aka 'const A &') in object destruction expression does not match the type 'const A' of the object being destroyed}} 23 x->~decltype(B())(); // expected-error{{destructor type 'decltype(B())' (aka 'B') in object destruction expression does not match the type 'const A' of the object being destroyed}} 24 x->~decltype(x)(); // expected-error{{destructor type 'decltype(x)' (aka 'const A *') in object destruction expression does not match the type 'const A' of the object being destroyed}} 33 expected-error{{the type of object expression ('int') does not match the type being destroyed ('decltype(intp())' (aka 'int *')) in pseudo-destructor expression}} 34 i.~decltype(intp())(); // expected-error{{the type of object expression ('int') does not match the type being destroyed ('decltype(intp())' (aka 'int *')) in pseudo-destructor expression}} 36 pi.~decltype(int())(); // expected-error{{the type of object expression ('int *') does not match the type being destroyed ('decltype(int())' (aka 'int')) in pseudo-destructor expression}} 38 pi->~decltype(intp())(); // expected-error{{the type of object expression ('int') does not match the type being destroyed ('decltype(intp())' (aka 'int *')) in pseudo-destructor expression} [all...] |
/external/chromium_org/ui/compositor/ |
layer_animation_observer.cc | 92 bool destroyed = false; local 93 destroyed_ = &destroyed; 95 if (destroyed) 105 bool destroyed = false; local 106 destroyed_ = &destroyed; 108 if (destroyed)
|
/external/chromium_org/chrome/browser/chromeos/login/screens/ |
kiosk_autolaunch_screen_actor.h | 24 // This method is called, when actor is being destroyed. Note, if Delegate 25 // is destroyed earlier then it has to call SetDelegate(NULL).
|
kiosk_autostart_screen_actor.h | 24 // This method is called, when actor is being destroyed. Note, if Delegate 25 // is destroyed earlier then it has to call SetDelegate(NULL).
|
kiosk_enable_screen_actor.h | 24 // This method is called, when actor is being destroyed. Note, if Delegate 25 // is destroyed earlier then it has to call SetDelegate(NULL).
|
reset_screen_actor.h | 24 // This method is called, when actor is being destroyed. Note, if Delegate 25 // is destroyed earlier then it has to call SetDelegate(NULL).
|
wrong_hwid_screen_actor.h | 24 // This method is called, when actor is being destroyed. Note, if Delegate 25 // is destroyed earlier then it has to call SetDelegate(NULL).
|
/external/chromium_org/content/browser/ |
device_monitor_udev.h | 30 // destroyed. Need to know when IO thread is being destroyed so that
|
/external/chromium_org/android_webview/browser/ |
aw_web_preferences_populater.h | 16 // Empty base class so this can be destroyed by AwContentBrowserClient.
|
/external/chromium_org/base/android/ |
activity_state_list.h | 16 DEFINE_ACTIVITY_STATE(DESTROYED, 6)
|
/external/chromium_org/chrome/browser/ui/views/toolbar/ |
wrench_menu_observer.h | 11 // Invoked when the WrenchMenu is about to be destroyed (from its destructor).
|
/external/chromium_org/ui/base/win/ |
hidden_window.h | 15 // never destroyed.
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
cleanup1_1.cpp | 2 // Bug: obj gets destroyed twice because the fixups for the return are
|
dtor1.cpp | 3 // Test that a fully-constructed base is destroyed before transferring
|
eh24.cpp | 25 throw 1; // make sure both a1 and a2 are not destroyed when we throw!
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
cleanup1_1.cpp | 2 // Bug: obj gets destroyed twice because the fixups for the return are
|
dtor1.cpp | 3 // Test that a fully-constructed base is destroyed before transferring
|
eh24.cpp | 25 throw 1; // make sure both a1 and a2 are not destroyed when we throw!
|
/external/smack/src/org/apache/harmony/javax/security/auth/ |
Destroyable.java | 27 * Erases the sensitive information. Once an object is destroyed any calls 37 * Returns {@code true} once an object has been safely destroyed. 39 * @return whether the object has been safely destroyed.
|
/libcore/luni/src/main/java/javax/security/auth/ |
Destroyable.java | 27 * Erases the sensitive information. Once an object is destroyed any calls 37 * Returns {@code true} once an object has been safely destroyed. 39 * @return whether the object has been safely destroyed.
|
/external/chromium_org/chrome_frame/infobars/internal/ |
subclassing_window_with_delegate.h | 23 // is destroyed. 26 // The delegate will be deleted when the subclassed window is destroyed. 39 // is destroyed. If this method returns false, the caller should delete the 43 // is destroyed (or immediately, in case of failure). 90 // The subclassed window has been destroyed. Delete the delegate. We will
|