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

1 2

  /external/libmojo/mojo/public/cpp/bindings/lib/
sync_handle_watcher.cc 44 // This object may be destroyed during the WatchAllHandles() call. So we have
46 auto destroyed = destroyed_; local
47 const bool* should_stop_array[] = {should_stop, &destroyed->data};
50 // This object has been destroyed.
51 if (destroyed->data)
  /external/webrtc/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 refCount = 0; destroyed = false; resourceType = type;
50 bool destroyed; member in class:android::uirenderer::ResourceReference
  /frameworks/base/libs/hwui/tests/unit/
LinearAllocatorTests.cpp 46 int destroyed[10] = { 0 }; local
50 la.create<TestUtils::SignalingDtor>()->setSignal(destroyed + i);
55 la.create<TestUtils::SignalingDtor>(destroyed + 5 + i);
60 EXPECT_EQ(0, destroyed[i]);
64 EXPECT_EQ(1, destroyed[i]);
69 int destroyed = 0; local
78 sigdtor->setSignal(&destroyed);
79 EXPECT_EQ(0, destroyed);
82 EXPECT_EQ(1, destroyed);
86 EXPECT_EQ(1, destroyed);
122 int destroyed = 0; local
    [all...]
  /external/libcxx/test/support/
archetypes.hpp 37 static int destroyed; member in struct:ArchetypeBases::TestBase
48 assigned = value_assigned = copy_assigned = move_assigned = destroyed = 0;
87 --alive; ++destroyed; value = -999;
125 template <class D, bool E> int TestBase<D, E>::destroyed = 0; member in class:TestBase
  /external/python/cpython2/Lib/idlelib/idle_test/
test_config_name.py 17 destroyed = False variable in class:Dummy_name_dialog
19 self.destroyed = True
61 self.dialog.destroyed = False
65 self.assertTrue(self.dialog.destroyed)
68 self.dialog.destroyed = False
71 self.assertTrue(self.dialog.destroyed)
  /external/skia/tests/
ArenaAllocTest.cpp 14 static int created, destroyed; member in namespace:__anon31152
19 ~Foo() { destroyed++; }
33 destroyed++;
53 ~FooRefCnt() { destroyed++; }
69 destroyed = 0;
77 REPORTER_ASSERT(r, destroyed == 0);
87 REPORTER_ASSERT(r, destroyed == 0);
91 REPORTER_ASSERT(r, destroyed == 11);
95 destroyed = 0;
103 REPORTER_ASSERT(r, destroyed == 0)
    [all...]
  /frameworks/support/v7/appcompat/tests/src/android/support/v7/app/
BaseKeyEventsTestCase.java 76 final AtomicBoolean destroyed = new AtomicBoolean(); local
100 destroyed.set(true);
111 assertTrue("ActionMode was destroyed", destroyed.get());
  /external/compiler-rt/lib/tsan/rtl/
tsan_report.h 100 bool destroyed; member in struct:__tsan::ReportMutex
  /external/mesa3d/src/gallium/auxiliary/pipebuffer/
pb_buffer_fenced.c 369 boolean destroyed = fenced_buffer_remove_locked(fenced_mgr, fenced_buf); local
373 assert(!destroyed);
374 (void) destroyed; /* silence unused var warning for non-debug build */
829 MAYBE_UNUSED boolean destroyed = fenced_buffer_remove_locked(fenced_mgr, fenced_buf); local
830 assert(!destroyed);
  /external/mesa3d/src/gallium/winsys/svga/drm/
pb_buffer_simple_fenced.c 336 boolean destroyed; local
338 destroyed = fenced_buffer_remove_locked(fenced_mgr, fenced_buf);
342 assert(!destroyed);
343 (void) destroyed;
662 boolean destroyed; local
663 destroyed = fenced_buffer_remove_locked(fenced_mgr, fenced_buf);
664 assert(!destroyed);
665 (void) destroyed;
  /external/vogar/src/vogar/commands/
Command.java 57 private volatile boolean destroyed; field in class:Command
132 destroyed = true;
153 * complete normally before the timeout has elapsed, it will be destroyed.
175 if (destroyed) {
179 destroyed = true;
184 log.verbose("received exit value " + exitValue + " from destroyed command " + this);
331 // don't destroy commands that have already been destroyed
333 if (destroyed) {
  /frameworks/support/lifecycle/common/src/test/java/android/arch/lifecycle/
ReflectiveGenericLifecycleObserverTest.java 148 verify(obj).destroyed();
170 void destroyed() { method in class:ReflectiveGenericLifecycleObserverTest.AllMethodsListener
  /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:__anon54225
syncproto.h 354 BOOL destroyed; member in struct:_xSyncCounterNotifyEvent
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/extensions/
sync.h 202 Bool destroyed; /* True if counter was destroyed */ member in struct:__anon56087
syncproto.h 448 BOOL destroyed; member in struct:_xSyncCounterNotifyEvent
  /prebuilts/ndk/r11/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,
  /prebuilts/ndk/r13/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/libmojo/mojo/public/cpp/bindings/tests/
interface_ptr_unittest.cc 484 bool* destroyed,
487 destroyed_(destroyed),
521 bool destroyed = false; local
525 &destroyed, run_loop.QuitClosure()); local
543 EXPECT_FALSE(destroyed);
551 EXPECT_TRUE(destroyed);
558 bool* destroyed,
561 destroyed_(destroyed),
594 bool destroyed = false; local
598 &destroyed, run_loop.QuitClosure()) local
    [all...]
  /libcore/ojluni/src/main/java/java/lang/
ThreadGroup.java 67 boolean destroyed; field in class:ThreadGroup
193 * daemon thread group is automatically destroyed when its last
194 * thread is stopped or its last thread group is destroyed.
205 * Tests if this thread group has been destroyed.
207 * @return true if this object is destroyed
211 return destroyed;
220 * A daemon thread group is automatically destroyed when its last
221 * thread is stopped or its last thread group is destroyed.
354 if (destroyed) {
440 if (destroyed) {
    [all...]
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_unittest.cc 1292 bool destroyed = false; local
    [all...]
  /libcore/ojluni/src/main/java/java/security/
KeyStore.java 287 private volatile boolean destroyed = false; field in class:KeyStore.PasswordProtection
378 * been cleared (destroyed)
381 if (destroyed) {
394 destroyed = true;
406 return destroyed;
    [all...]
  /external/webrtc/webrtc/p2p/base/
port_unittest.cc 313 // When the connection is destroyed, also clear these fields so future
692 // destroyed after the timeout.
748 bool destroyed() const { return destroyed_; } function in class:PortTest
    [all...]
  /external/caliper/lib/
jersey-client-1.11.jar 

Completed in 660 milliseconds

1 2