HomeSort by relevance Sort by last modified time
    Searched refs:destroyed (Results 1 - 25 of 60) sorted by null

1 2 3

  /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/ui/views/controls/native/
native_view_host_wrapper.h 29 // cleanup. |destroyed| is true if the native view is detached
30 // because it's being destroyed, or false otherwise.
31 virtual void NativeViewDetaching(bool destroyed) = 0;
native_view_host_aura.h 27 virtual void NativeViewDetaching(bool destroyed) OVERRIDE;
native_view_host.cc 197 void NativeViewHost::Detach(bool destroyed) {
199 if (!destroyed) {
205 native_wrapper_->NativeViewDetaching(destroyed);
native_view_host_aura.cc 37 void NativeViewHostAura::NativeViewDetaching(bool destroyed) {
38 if (!destroyed) {
native_view_host.h 43 // longer be manipulated by this View. The native view may be destroyed and
98 // Detach the native view. |destroyed| is true if the native view is
99 // detached because it's being destroyed, or false otherwise.
100 void Detach(bool destroyed);
  /external/chromium_org/third_party/libjingle/source/talk/base/
win32window_unittest.cc 39 bool destroyed() const { return destroyed_; } function in class:TestWindow
61 EXPECT_FALSE(wnd.destroyed());
70 EXPECT_TRUE(wnd.destroyed());
  /external/chromium_org/third_party/webrtc/base/
win32window_unittest.cc 22 bool destroyed() const { return destroyed_; } function in class:TestWindow
44 EXPECT_FALSE(wnd.destroyed());
53 EXPECT_TRUE(wnd.destroyed());
  /frameworks/base/libs/hwui/
ResourceCache.h 46 ResourceReference() { refCount = 0; recycled = false; destroyed = false;}
48 refCount = 0; recycled = false; destroyed = false; resourceType = type;
53 bool destroyed; member in class:android::uirenderer::ResourceReference
ResourceCache.cpp 36 ALOGD(" ResourceCache: mCache(%zu): refCount, recycled, destroyed, type = %d, %d, %d, %d",
37 i, ref->refCount, ref->recycled, ref->destroyed, ref->resourceType);
181 ref->destroyed = true;
204 ref->destroyed = true;
229 ref->destroyed = true;
277 if (ref->destroyed || ref->resourceType == kLayer) {
  /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/chromium_org/remoting/protocol/
buffered_socket_writer.cc 111 bool destroyed = false; local
112 destroyed_flag_ = &destroyed;
114 if (destroyed) {
115 // Stop doing anything if we've been destroyed by the callback.
  /development/ndk/sources/android/native_app_glue/
android_native_app_glue.h 161 // destroyed and waiting for the app thread to complete.
180 int destroyed; member in struct:android_app
308 * Command from main thread: the app's activity is being destroyed,
  /external/chromium_org/ui/gfx/win/
window_impl.cc 178 bool destroyed = false; local
179 destroyed_ = &destroyed;
195 base::debug::Alias(&destroyed);
213 if (!destroyed)
  /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/compiler-rt/lib/tsan/rtl/
tsan_report.h 100 bool destroyed; member in struct:__tsan::ReportMutex
  /external/chromium_org/chrome/browser/chromeos/file_system_provider/
request_manager_unittest.cc 229 const std::vector<Event>& destroyed() const { return destroyed_; } function in class:chromeos::file_system_provider::__anon7749::RequestObserver
277 EXPECT_EQ(1u, observer.destroyed().size());
344 ASSERT_EQ(1u, observer.destroyed().size());
345 EXPECT_EQ(request_id, observer.destroyed()[0].request_id());
413 ASSERT_EQ(1u, observer.destroyed().size());
414 EXPECT_EQ(request_id, observer.destroyed()[0].request_id());
473 ASSERT_EQ(1u, observer.destroyed().size());
474 EXPECT_EQ(request_id, observer.destroyed()[0].request_id());
613 EXPECT_EQ(0u, observer.destroyed().size());
631 ASSERT_EQ(1u, observer.destroyed().size())
    [all...]
  /external/chromium_org/ui/views/controls/button/
menu_button.cc 105 bool destroyed = false; local
106 destroyed_flag_ = &destroyed;
110 if (destroyed) {
  /external/libunwind/doc/
unw_get_accessors.tex 23 guaranteed to remain valid until address space \Var{as} is destroyed
  /external/chromium_org/ash/shelf/
shelf_button.cc 315 bool destroyed = false;
316 destroyed_flag_ = &destroyed;
320 if (!destroyed) {
324 // destroyed).
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/X11/extensions/
sync.h 200 Bool destroyed; /* True if counter was destroyed */ member in struct:__anon45312
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/extensions/
sync.h 200 Bool destroyed; /* True if counter was destroyed */ member in struct:__anon47048
  /external/chromium_org/ash/wm/
system_modal_container_layout_manager_unittest.cc 133 bool destroyed() const { return destroyed_; } function in class:ash::test::__anon6710::TransientWindowObserver
212 // The transient should be destroyed with its parent.
214 EXPECT_TRUE(destruction_observer.destroyed());
252 // Both transients should be destroyed with parent.
254 EXPECT_TRUE(do1.destroyed());
255 EXPECT_TRUE(do2.destroyed());
292 // Both transients should be destroyed with parent.
294 EXPECT_TRUE(do1.destroyed());
295 EXPECT_TRUE(do2.destroyed());
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/pipebuffer/
pb_buffer_fenced.c 372 boolean destroyed; local
374 destroyed = fenced_buffer_remove_locked(fenced_mgr, fenced_buf);
378 assert(!destroyed);
848 boolean destroyed; local
849 destroyed = fenced_buffer_remove_locked(fenced_mgr, fenced_buf);
850 assert(!destroyed);

Completed in 597 milliseconds

1 2 3