Searched refs:destroyed (Results 1 - 25 of 41) sorted by relevance

12

/external/chromium_org/ui/compositor/
H A Dlayer_animation_observer.cc92 bool destroyed = false; local
93 destroyed_ = &destroyed;
95 if (destroyed)
105 bool destroyed = false; local
106 destroyed_ = &destroyed;
108 if (destroyed)
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dwin32window_unittest.cc39 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/
H A Dwin32window_unittest.cc22 bool destroyed() const { return destroyed_; } function in class:TestWindow
44 EXPECT_FALSE(wnd.destroyed());
53 EXPECT_TRUE(wnd.destroyed());
/external/chromium_org/ui/views/controls/native/
H A Dnative_view_host_wrapper.h29 // 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;
H A Dnative_view_host.cc197 void NativeViewHost::Detach(bool destroyed) { argument
199 if (!destroyed) {
205 native_wrapper_->NativeViewDetaching(destroyed);
H A Dnative_view_host_aura.cc37 void NativeViewHostAura::NativeViewDetaching(bool destroyed) { argument
38 if (!destroyed) {
H A Dnative_view_host.h43 // 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);
H A Dnative_view_host_aura.h27 virtual void NativeViewDetaching(bool destroyed) OVERRIDE;
/external/chromium_org/remoting/protocol/
H A Dbuffered_socket_writer.cc111 bool destroyed = false; local
112 destroyed_flag_ = &destroyed;
114 if (destroyed) {
115 // Stop doing anything if we've been destroyed by the callback.
/external/chromium_org/ui/gfx/win/
H A Dwindow_impl.cc178 bool destroyed = false; local
179 destroyed_ = &destroyed;
195 base::debug::Alias(&destroyed);
213 if (!destroyed)
/external/clang/test/CXX/special/class.dtor/
H A Dp10-0x.cpp9 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 ('decltyp
[all...]
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_report.h100 bool destroyed; member in struct:__tsan::ReportMutex
/external/chromium_org/chrome/browser/chromeos/file_system_provider/
H A Drequest_manager_unittest.cc229 const std::vector<Event>& destroyed() const { return destroyed_; } function in class:chromeos::file_system_provider::__anon3129::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()
[all...]
/external/chromium_org/ui/views/controls/button/
H A Dmenu_button.cc105 bool destroyed = false; local
106 destroyed_flag_ = &destroyed;
110 if (destroyed) {
/external/chromium_org/extensions/renderer/resources/
H A Devent.js210 // Track whether the event has been destroyed to help track down the cause
215 this.destroyed = null;
355 if (this.destroyed) {
356 throw new Error(this.eventName + ' was already destroyed at: ' +
357 this.destroyed);
414 this.destroyed = new Error().stack;
/external/libunwind/doc/
H A Dunw_get_accessors.tex23 guaranteed to remain valid until address space \Var{as} is destroyed
/external/chromium_org/ash/shelf/
H A Dshelf_button.cc315 bool destroyed = false;
316 destroyed_flag_ = &destroyed;
320 if (!destroyed) {
324 // destroyed).
/external/chromium_org/ash/wm/
H A Dsystem_modal_container_layout_manager_unittest.cc133 bool destroyed() const { return destroyed_; } function in class:ash::test::__anon2090::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());
H A Dtoplevel_window_event_handler.cc87 // the window is destroyed ResizerWindowDestroyed() is invoked back on the
406 bool destroyed = false; local
407 destroyed_ = &destroyed;
413 if (destroyed)
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/pipebuffer/
H A Dpb_buffer_fenced.c372 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);
/external/llvm/bindings/ocaml/executionengine/
H A Dllvm_executionengine.mli91 is not garbage collected and must be destroyed with [dispose ee].
97 execution engine is not garbage collected and must be destroyed with
105 engine is not garbage collected and must be destroyed with [dispose ee].
/external/mesa3d/src/gallium/auxiliary/pipebuffer/
H A Dpb_buffer_fenced.c372 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);
/external/chromium_org/ui/views/widget/
H A Dwidget_unittest.cc216 // |child| should be automatically destroyed with |toplevel|.
267 // |child| should be automatically destroyed with |toplevel|.
307 // destroyed.
326 // destroyed.
344 // A Widget subclass that updates a bag of state when it is destroyed.
477 // widget, destroyed out from under it by the OS.
496 // destroyed by the view hierarchy that contains it.
573 // NativeView is destroyed.
1585 // Deletes itself when the Widget is destroyed.
1606 // destroyed
1609 CloseDestroysWidget(bool* destroyed) argument
1631 bool destroyed = false; local
1834 std::vector<std::string> destroyed; local
[all...]
/external/chromium_org/third_party/mesa/src/docs/
H A DMESA_multithread_makecurrent.spec122 As with GLX context destruction previously, the XID is destroyed
/external/mesa3d/docs/
H A DMESA_multithread_makecurrent.spec122 As with GLX context destruction previously, the XID is destroyed

Completed in 589 milliseconds

12