HomeSort by relevance Sort by last modified time
    Searched refs:cv (Results 1 - 25 of 603) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/tests/coretests/src/android/content/
ContentValuesTest.java 38 ContentValues cv = new ContentValues(); local
39 assertTrue(cv.isEmpty());
40 assertEquals(0, cv.size());
42 cv.put("key", "value");
43 assertFalse(cv.isEmpty());
44 assertEquals(1, cv.size());
  /external/valgrind/none/tests/arm/
v6intThumb.c 339 #define NOCARRY { int cv = 0; {
340 #define TESTCARRY { int cv = 0; for (cv = 0; cv < 4; cv++) {
408 TESTINST2("movs r0, r1", 1, r0, r1, cv);
409 TESTINST2("movs r0, r1", 0, r0, r1, cv);
410 TESTINST2("movs r0, r1", 0x80000000, r0, r1, cv);
411 TESTINST2("movs r0, #0", 0, r0, r1, cv);
412 TESTINST2("movs r0, #1", 0, r0, r1, cv);
    [all...]
  /external/compiler-rt/test/tsan/
bench_mutex.cc 10 pthread_cond_t cv; variable
17 pthread_cond_wait(&cv, &mtx);
19 pthread_cond_signal(&cv);
26 pthread_cond_init(&cv, 0);
  /external/libcxx/test/std/thread/thread.condition/thread.condition.condvar/
default.pass.cpp 23 std::condition_variable cv; local
wait.pass.cpp 23 std::condition_variable cv; variable
34 cv.notify_one();
36 cv.wait(lk);
46 cv.wait(lk);
50 cv.notify_one();
destructor.pass.cpp 23 std::condition_variable* cv; variable
34 cv->notify_one();
35 delete cv;
42 cv->notify_one();
44 cv->wait(lk);
49 cv = new std::condition_variable;
53 cv->wait(lk);
  /external/libcxx/test/std/thread/thread.condition/thread.condition.condvarany/
default.pass.cpp 23 std::condition_variable_any cv; local
wait.pass.cpp 24 std::condition_variable_any cv; variable
39 cv.notify_one();
41 cv.wait(lk);
51 cv.wait(lk);
55 cv.notify_one();
destructor.pass.cpp 23 std::condition_variable_any* cv; variable
33 cv->notify_one();
34 delete cv;
42 cv->notify_one();
44 cv->wait(m);
50 cv = new std::condition_variable_any;
54 cv->wait(m);
wait_terminates.sh.cpp 45 // 3 Create a 'condition_variable_any' object 'cv' and a 'ThrowingMutex'
48 // 4 Start a thread 'T2' that will notify 'cv' once 'm' has been unlocked.
50 // 5 From the main thread call the specified wait method on 'cv' with 'm'.
51 // When 'T2' notifies 'cv' and the wait method attempts to re-lock
71 // The predicate used in the cv.wait calls.
102 std::condition_variable_any cv; variable
105 while (mut.isLocked()) {} // wait until T1 releases mut inside the cv.wait call.
107 cv.notify_one();
124 case 1: cv.wait(mut); break;
125 case 2: cv.wait(mut, pred_function); break
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.condition/thread.condition.condvar/
default.pass.cpp 21 std::condition_variable cv; local
wait.pass.cpp 21 std::condition_variable cv; variable
32 cv.notify_one();
34 cv.wait(lk);
44 cv.wait(lk);
48 cv.notify_one();
destructor.pass.cpp 21 std::condition_variable* cv; variable
32 cv->notify_one();
33 delete cv;
40 cv->notify_one();
42 cv->wait(lk);
47 cv = new std::condition_variable;
51 cv->wait(lk);
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.condition/thread.condition.condvarany/
default.pass.cpp 21 std::condition_variable_any cv; local
wait.pass.cpp 22 std::condition_variable_any cv; variable
37 cv.notify_one();
39 cv.wait(lk);
49 cv.wait(lk);
53 cv.notify_one();
destructor.pass.cpp 21 std::condition_variable_any* cv; variable
31 cv->notify_one();
32 delete cv;
40 cv->notify_one();
42 cv->wait(m);
48 cv = new std::condition_variable_any;
52 cv->wait(m);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/thread/thread.condition/thread.condition.condvar/
default.pass.cpp 23 std::condition_variable cv; local
wait.pass.cpp 23 std::condition_variable cv; variable
34 cv.notify_one();
36 cv.wait(lk);
46 cv.wait(lk);
50 cv.notify_one();
destructor.pass.cpp 23 std::condition_variable* cv; variable
34 cv->notify_one();
35 delete cv;
42 cv->notify_one();
44 cv->wait(lk);
49 cv = new std::condition_variable;
53 cv->wait(lk);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/thread/thread.condition/thread.condition.condvarany/
default.pass.cpp 23 std::condition_variable_any cv; local
wait.pass.cpp 24 std::condition_variable_any cv; variable
39 cv.notify_one();
41 cv.wait(lk);
51 cv.wait(lk);
55 cv.notify_one();
destructor.pass.cpp 23 std::condition_variable_any* cv; variable
33 cv->notify_one();
34 delete cv;
42 cv->notify_one();
44 cv->wait(m);
50 cv = new std::condition_variable_any;
54 cv->wait(m);
  /external/opencv/
Android.mk 64 $(LOCAL_PATH)/cv/include
75 cv/src/cvaccum.cpp \
76 cv/src/cvadapthresh.cpp \
77 cv/src/cvapprox.cpp \
78 cv/src/cvcalccontrasthistogram.cpp \
79 cv/src/cvcalcimagehomography.cpp \
80 cv/src/cvcalibinit.cpp \
81 cv/src/cvcalibration.cpp \
82 cv/src/cvcamshift.cpp \
83 cv/src/cvcanny.cpp
    [all...]
  /external/libcxx/test/libcxx/thread/thread.condition/thread.condition.condvar/
native_handle.pass.cpp 28 std::condition_variable cv; local
29 std::condition_variable::native_handle_type h = cv.native_handle();
  /frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
ClassHasNativeVisitorTest.java 35 MockClassHasNativeVisitor cv = new MockClassHasNativeVisitor(); local
40 cr.accept(cv, 0 /* flags */);
41 assertArrayEquals(new String[] { "native_method" }, cv.getMethodsFound());
42 assertTrue(cv.hasNativeMethods());
47 MockClassHasNativeVisitor cv = new MockClassHasNativeVisitor(); local
52 cr.accept(cv, 0 /* flags */);
53 assertArrayEquals(new String[0], cv.getMethodsFound());
54 assertFalse(cv.hasNativeMethods());

Completed in 507 milliseconds

1 2 3 4 5 6 7 8 91011>>