HomeSort by relevance Sort by last modified time
    Searched full:notempty (Results 26 - 50 of 72) sorted by null

12 3

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.unary/meta.unary.prop/
is_trivially_copy_constructible.pass.cpp 34 class NotEmpty
37 virtual ~NotEmpty();
63 test_has_not_trivial_copy_constructor<NotEmpty>();
is_trivially_default_constructible.pass.cpp 38 class NotEmpty
40 virtual ~NotEmpty();
66 test_has_not_trivial_default_constructor<NotEmpty>();
is_trivially_destructible.pass.cpp 38 class NotEmpty
40 virtual ~NotEmpty();
65 test_has_not_trivial_destructor<NotEmpty>();
is_trivially_move_assignable.pass.cpp 32 class NotEmpty
34 virtual ~NotEmpty();
67 test_has_not_trivial_assign<NotEmpty>();
is_trivially_move_constructible.pass.cpp 32 class NotEmpty
35 virtual ~NotEmpty();
75 test_has_not_trivial_move_constructor<NotEmpty>();
is_polymorphic.pass.cpp 38 class NotEmpty
40 virtual ~NotEmpty();
77 test_is_not_polymorphic<NotEmpty&>();
80 test_is_polymorphic<NotEmpty>();
is_default_constructible.pass.cpp 38 class NotEmpty
41 virtual ~NotEmpty();
77 test_is_default_constructible<NotEmpty>();
is_destructible.pass.cpp 38 class NotEmpty
40 virtual ~NotEmpty();
80 test_is_not_destructible<NotEmpty>();
is_nothrow_destructible.pass.cpp 38 class NotEmpty
40 virtual ~NotEmpty();
64 test_has_not_nothrow_destructor<NotEmpty>();
is_nothrow_constructible.pass.cpp 51 class NotEmpty
53 virtual ~NotEmpty();
  /external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/
is_polymorphic.pass.cpp 38 class NotEmpty
40 virtual ~NotEmpty();
77 test_is_not_polymorphic<NotEmpty&>();
80 test_is_polymorphic<NotEmpty>();
is_default_constructible.pass.cpp 43 class NotEmpty
46 virtual ~NotEmpty();
82 test_is_default_constructible<NotEmpty>();
is_nothrow_destructible.pass.cpp 38 class NotEmpty
40 virtual ~NotEmpty();
69 test_is_not_nothrow_destructible<NotEmpty>();
is_trivially_destructible.pass.cpp 38 class NotEmpty
40 virtual ~NotEmpty();
70 test_is_not_trivially_destructible<NotEmpty>();
is_destructible.pass.cpp 36 class NotEmpty
38 virtual ~NotEmpty();
118 test_is_not_destructible<NotEmpty>();
is_nothrow_constructible.pass.cpp 51 class NotEmpty
53 virtual ~NotEmpty();
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
queues.py 220 def _finalize_close(buffer, notempty):
222 notempty.acquire()
225 notempty.notify()
227 notempty.release()
230 def _feed(buffer, notempty, send, writelock, close):
234 nacquire = notempty.acquire
235 nrelease = notempty.release
236 nwait = notempty.wait
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
queues.py 220 def _finalize_close(buffer, notempty):
222 notempty.acquire()
225 notempty.notify()
227 notempty.release()
230 def _feed(buffer, notempty, send, writelock, close):
234 nacquire = notempty.acquire
235 nrelease = notempty.release
236 nwait = notempty.wait
  /libcore/luni/src/main/java/java/util/concurrent/
LinkedBlockingQueue.java 126 private final Condition notEmpty = takeLock.newCondition();
142 notEmpty.signal();
410 notEmpty.await();
415 notEmpty.signal();
435 nanos = notEmpty.awaitNanos(nanos);
440 notEmpty.signal();
462 notEmpty.signal();
LinkedBlockingDeque.java 129 private final Condition notEmpty = lock.newCondition();
197 notEmpty.signal();
216 notEmpty.signal();
460 notEmpty.await();
473 notEmpty.await();
490 nanos = notEmpty.awaitNanos(nanos);
508 nanos = notEmpty.awaitNanos(nanos);
    [all...]
PriorityBlockingQueue.java 132 private final Condition notEmpty;
185 this.notEmpty = lock.newCondition();
208 this.notEmpty = lock.newCondition();
454 notEmpty.signal();
510 notEmpty.await();
524 nanos = notEmpty.awaitNanos(nanos);
  /external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
MonitorBasedArrayBlockingQueue.java 86 private final Monitor.Guard notEmpty;
176 notEmpty = new Monitor.Guard(monitor) {
307 if (monitor.enterIf(notEmpty)) {
321 monitor.enterWhen(notEmpty);
332 if (monitor.enterWhen(notEmpty, timeout, unit)) {
346 if (monitor.enterIf(notEmpty)) {
  /hardware/libhardware/tests/camera2/
camera2_utils.h 73 Condition notEmpty;
camera2_utils.cpp 74 notEmpty.signal();
141 res = notEmpty.waitRelative(mMutex,timeout);
  /frameworks/av/services/camera/libcameraservice/device2/
Camera2Device.h 155 Condition notEmpty;

Completed in 1148 milliseconds

12 3