Searched defs:destroyed (Results 1 - 21 of 21) sorted by relevance

/external/tensorflow/tensorflow/core/lib/core/
H A Drefcount_test.cc25 static int destroyed = 0; member in namespace:tensorflow::core::__anon26646
30 ~MyRef() override { destroyed++; }
37 destroyed = 0;
44 ASSERT_EQ(0, destroyed);
47 ASSERT_EQ(1, destroyed);
53 ASSERT_EQ(0, destroyed);
55 ASSERT_EQ(0, destroyed);
57 ASSERT_EQ(0, destroyed);
59 ASSERT_EQ(1, destroyed);
79 ASSERT_EQ(0, destroyed);
[all...]
/external/libmojo/mojo/public/cpp/bindings/lib/
H A Dsync_handle_watcher.cc44 // 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/wayland/tests/
H A Dresources-test.c98 _Bool destroyed = 0; local
111 wl_resource_set_implementation(res, NULL, &destroyed, res_destroy_func);
119 assert(destroyed);
125 destroyed = 0;
128 wl_resource_set_user_data(res, &destroyed);
132 assert(destroyed);
/external/webrtc/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/python/cpython2/Lib/idlelib/idle_test/
H A Dtest_config_name.py17 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/libcxx/test/support/
H A Darchetypes.hpp40 static int destroyed; member in struct:ArchetypeBases::TestBase
51 assigned = value_assigned = copy_assigned = move_assigned = destroyed = 0;
92 --alive; ++destroyed; value = -999;
130 template <class D, bool E> int TestBase<D, E>::destroyed = 0; member in class:TestBase
/external/skia/tests/
H A DArenaAllocTest.cpp19 static int created, destroyed; member in namespace:__anon20914
24 ~Foo() { destroyed++; }
38 destroyed++;
58 ~FooRefCnt() { destroyed++; }
74 destroyed = 0;
82 REPORTER_ASSERT(r, destroyed == 0);
92 REPORTER_ASSERT(r, destroyed == 0);
96 REPORTER_ASSERT(r, destroyed == 11);
100 destroyed = 0;
108 REPORTER_ASSERT(r, destroyed
[all...]
/external/skqp/tests/
H A DArenaAllocTest.cpp14 static int created, destroyed; member in namespace:__anon21582
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
[all...]
/external/vogar/src/vogar/commands/
H A DCommand.java57 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) {
/external/adhd/cras/src/server/
H A Dcras_a2dp_iodev.c39 * destroyed - Flag to note if this a2dp_io is about to destroy.
52 int destroyed; member in struct:a2dp_io
209 !a2dpio->destroyed);
276 /* If bt device has been destroyed, this a2dp iodev will soon be
277 * destroyed as well. */
527 a2dpio->destroyed = 1;
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_debugging.cc129 int *destroyed, void **trace, uptr trace_size) {
135 *destroyed = mutex->destroyed;
128 __tsan_get_report_mutex(void *report, uptr idx, uptr *mutex_id, void **addr, int *destroyed, void **trace, uptr trace_size) argument
H A Dtsan_report.h100 bool destroyed; member in struct:__tsan::ReportMutex
/external/mesa3d/src/gallium/winsys/svga/drm/
H A Dpb_buffer_simple_fenced.c336 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/libmojo/mojo/public/cpp/bindings/tests/
H A Dinterface_ptr_unittest.cc484 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_loo local
482 StrongMathCalculatorImpl(ScopedMessagePipeHandle handle, bool* error_received, bool* destroyed, const base::Closure& closure) argument
556 WeakMathCalculatorImpl(ScopedMessagePipeHandle handle, bool* error_received, bool* destroyed, const base::Closure& closure) argument
[all...]
/external/mesa3d/src/gallium/auxiliary/pipebuffer/
H A Dpb_buffer_fenced.c369 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/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_unittest.cc1292 bool destroyed = false; local
1293 channel->destroyed_ = &destroyed;
1298 EXPECT_FALSE(destroyed);
1301 EXPECT_TRUE(destroyed);
/external/webrtc/webrtc/p2p/base/
H A Dport_unittest.cc313 // 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
2441 // Simulate a connection that succeeds, and then is destroyed.
2444 // After the connection is destroyed, the port should not be destroyed.
2446 EXPECT_FALSE(destroyed());
2462 // The connection must not be destroyed before a connection is attempted.
2463 EXPECT_FALSE(destroyed());
2472 // Simulate a connection that succeeds, and then is destroyed
[all...]
/external/caliper/lib/
H A Djersey-client-1.11.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...
/external/conscrypt/benchmark-android/
H A Dvogar.jarMETA-INF/ META-INF/MANIFEST.MF vogar/ vogar/TestProperties.class TestProperties.java package vogar ...
/external/robolectric/v3/runtime/
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 794 milliseconds