/external/chromium_org/third_party/sqlite/src/test/ |
D | 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/chromium_org/ui/compositor/ |
D | layer_animation_observer.cc | 92 bool destroyed = false; in OnLayerAnimationEnded() local 93 destroyed_ = &destroyed; in OnLayerAnimationEnded() 95 if (destroyed) in OnLayerAnimationEnded() 105 bool destroyed = false; in OnLayerAnimationAborted() local 106 destroyed_ = &destroyed; in OnLayerAnimationAborted() 108 if (destroyed) in OnLayerAnimationAborted()
|
/external/linux-tools-perf/scripts/perl/ |
D | workqueue-stats.pl | 32 $cpus[$common_cpu]{$thread_pid}{destroyed}++; 91 my $destroyed = $$wqhash{'destroyed'} || 0; 93 if ($created || $destroyed) { 94 printf("%3u %6u %6u\t%-20s\n", $cpu, $created, $destroyed,
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
D | win32window_unittest.cc | 39 bool destroyed() const { return destroyed_; } in destroyed() function in TestWindow 61 EXPECT_FALSE(wnd.destroyed()); in TEST() 70 EXPECT_TRUE(wnd.destroyed()); in TEST()
|
/external/valgrind/main/docs/internals/ |
D | tm-mutexstates.dot | 14 free -> dead [ label="destroyed" ]; 21 locked -> dead [ style=dotted, label="destroyed\nwhile locked" ];
|
/external/chromium_org/ui/views/controls/native/ |
D | native_view_host.cc | 202 void NativeViewHost::Detach(bool destroyed) { in Detach() argument 204 if (!destroyed) { in Detach() 210 native_wrapper_->NativeViewDetaching(destroyed); in Detach()
|
D | native_view_host_aura.cc | 36 void NativeViewHostAura::NativeViewDetaching(bool destroyed) { in NativeViewDetaching() argument 37 if (!destroyed) { in NativeViewDetaching()
|
D | native_view_host_win.cc | 41 void NativeViewHostWin::NativeViewDetaching(bool destroyed) { in NativeViewDetaching() argument 42 if (!destroyed) { in NativeViewDetaching()
|
D | native_view_host_wrapper.h | 31 virtual void NativeViewDetaching(bool destroyed) = 0;
|
D | native_view_host_win.h | 23 virtual void NativeViewDetaching(bool destroyed);
|
D | native_view_host_aura.h | 27 virtual void NativeViewDetaching(bool destroyed) OVERRIDE;
|
D | native_view_host.h | 102 void Detach(bool destroyed);
|
/external/chromium_org/ui/gfx/win/ |
D | window_impl.cc | 178 bool destroyed = false; in Init() local 179 destroyed_ = &destroyed; in Init() 195 base::debug::Alias(&destroyed); in Init() 213 if (!destroyed) in Init()
|
/external/chromium_org/remoting/protocol/ |
D | buffered_socket_writer.cc | 111 bool destroyed = false; in HandleWriteResult() local 112 destroyed_flag_ = &destroyed; in HandleWriteResult() 114 if (destroyed) { in HandleWriteResult()
|
/external/chromium_org/ui/views/controls/button/ |
D | menu_button.cc | 104 bool destroyed = false; in Activate() local 105 destroyed_flag_ = &destroyed; in Activate() 109 if (destroyed) { in Activate()
|
/external/chromium_org/ash/wm/ |
D | system_modal_container_layout_manager_unittest.cc | 126 bool destroyed() const { return destroyed_; } in destroyed() function in ash::test::__anon7b853c700111::TransientWindowObserver 169 EXPECT_TRUE(destruction_observer.destroyed()); in TEST_F() 209 EXPECT_TRUE(do1.destroyed()); in TEST_F() 210 EXPECT_TRUE(do2.destroyed()); in TEST_F() 249 EXPECT_TRUE(do1.destroyed()); in TEST_F() 250 EXPECT_TRUE(do2.destroyed()); in TEST_F()
|
D | toplevel_window_event_handler.cc | 359 bool destroyed = false; in RunMoveLoop() local 360 destroyed_ = &destroyed; in RunMoveLoop() 366 if (destroyed) in RunMoveLoop()
|
/external/chromium_org/chrome/browser/ui/cocoa/autofill/ |
D | autofill_popup_view_cocoa.mm | 111 // If the view is in the process of being destroyed, don't bother drawing. 153 // If the view is in the process of being destroyed, abort. 167 // If the view is in the process of being destroyed, abort. 183 // If the view is in the process of being destroyed, abort. 194 // Since the |controller_| either already has been destroyed or is about to
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/pipebuffer/ |
D | pb_buffer_fenced.c | 372 boolean destroyed; in fenced_buffer_finish_locked() local 374 destroyed = fenced_buffer_remove_locked(fenced_mgr, fenced_buf); in fenced_buffer_finish_locked() 378 assert(!destroyed); in fenced_buffer_finish_locked() 848 boolean destroyed; in fenced_buffer_fence() local 849 destroyed = fenced_buffer_remove_locked(fenced_mgr, fenced_buf); in fenced_buffer_fence() 850 assert(!destroyed); in fenced_buffer_fence()
|
/external/mesa3d/src/gallium/auxiliary/pipebuffer/ |
D | pb_buffer_fenced.c | 372 boolean destroyed; in fenced_buffer_finish_locked() local 374 destroyed = fenced_buffer_remove_locked(fenced_mgr, fenced_buf); in fenced_buffer_finish_locked() 378 assert(!destroyed); in fenced_buffer_finish_locked() 848 boolean destroyed; in fenced_buffer_fence() local 849 destroyed = fenced_buffer_remove_locked(fenced_mgr, fenced_buf); in fenced_buffer_fence() 850 assert(!destroyed); in fenced_buffer_fence()
|
/external/chromium_org/ppapi/api/private/ |
D | ppb_flash_message_loop.idl | 55 * resource is destroyed; <code>PP_OK</code> if the message loop quits because 68 * implicitly when the resource is destroyed.
|
/external/clang/test/CXX/special/class.dtor/ |
D | p10-0x.cpp | 33 …or{{the type of object expression ('int') does not match the type being destroyed ('decltype(intp(… in a()
|
/external/compiler-rt/lib/tsan/rtl/ |
D | tsan_report.h | 92 bool destroyed; member
|
/external/chromium_org/ui/views/widget/ |
D | widget_unittest.cc | 1819 explicit CloseDestroysWidget(bool* destroyed) in CloseDestroysWidget() argument 1820 : destroyed_(destroyed) { in CloseDestroysWidget() 1841 bool destroyed = false; in TEST_F() local 1842 CloseDestroysWidget* widget = new CloseDestroysWidget(&destroyed); in TEST_F() 1855 EXPECT_TRUE(destroyed); in TEST_F() 1857 if (!destroyed) { in TEST_F() 1999 std::vector<std::string> destroyed; in RunDestroyChildWidgetsTest() local 2010 new DestroyedTrackingView("parent", &destroyed)); in RunDestroyChildWidgetsTest() 2023 new DestroyedTrackingView("child", &destroyed)); in RunDestroyChildWidgetsTest() 2030 ASSERT_EQ(2u, destroyed.size()); in RunDestroyChildWidgetsTest() [all …]
|
/external/chromium_org/ppapi/api/ |
D | pp_resource.idl | 23 * reference count of a resource. The data will be automatically destroyed when
|