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

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/std/containers/associative/multiset/
allocator_mismatch.fail.cpp 17 std::multiset<int, std::less<int>, std::allocator<long> > ms; local
  /external/libcxx/test/std/utilities/time/time.duration/time.duration.cons/
convert_inexact.fail.cpp 24 std::chrono::milliseconds ms = us; local
convert_inexact.pass.cpp 28 std::chrono::duration<double, std::milli> ms = us; local
29 assert(ms.count() == 1./1000);
34 constexpr std::chrono::duration<double, std::milli> ms = us; local
35 static_assert(ms.count() == 1./1000, "");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/associative/multiset/
allocator_mismatch.fail.cpp 17 std::multiset<int, std::less<int>, std::allocator<long> > ms; local
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/time/time.duration/time.duration.cons/
convert_inexact.fail.cpp 24 std::chrono::milliseconds ms = us; local
convert_inexact.pass.cpp 28 std::chrono::duration<double, std::milli> ms = us; local
29 assert(ms.count() == 1./1000);
34 constexpr std::chrono::duration<double, std::milli> ms = us; local
35 static_assert(ms.count() == 1./1000, "");
  /system/core/adb/sysdeps/
chrono.h 37 constexpr std::chrono::milliseconds operator"" ms(unsigned long long ms) { function
38 return std::chrono::milliseconds(ms);
41 constexpr std::chrono::duration<long double, std::milli> operator"" ms(long double ms) { function
42 return std::chrono::duration<long double, std::milli>(ms);
  /external/clang/test/Index/Inputs/
t2.c 9 struct MyStruct *ms; local
10 ms->field_var = 10;
t1.c 24 struct MyStruct ms; local
25 ms.field_var = 10;
  /external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.locking/
try_lock_until.pass.cpp 32 typedef std::chrono::milliseconds ms; typedef
33 assert(Clock::now() - abs_time < ms(5));
try_lock_for.pass.cpp 27 typedef std::chrono::milliseconds ms; typedef
34 assert(rel_time == ms(5));
46 assert(lk.try_lock_for(ms(5)) == true);
52 TEST_IGNORE_NODISCARD lk.try_lock_for(ms(5));
61 assert(lk.try_lock_for(ms(5)) == false);
68 TEST_IGNORE_NODISCARD lk.try_lock_for(ms(5));
  /external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.locking/
try_lock_until.pass.cpp 31 typedef std::chrono::milliseconds ms; typedef
32 assert(Clock::now() - abs_time < ms(5));
try_lock_for.pass.cpp 26 typedef std::chrono::milliseconds ms; typedef
33 assert(rel_time == ms(5));
45 assert(lk.try_lock_for(ms(5)) == true);
51 TEST_IGNORE_NODISCARD lk.try_lock_for(ms(5));
60 assert(lk.try_lock_for(ms(5)) == false);
67 TEST_IGNORE_NODISCARD lk.try_lock_for(ms(5));
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.locking/
try_lock_until.pass.cpp 32 typedef std::chrono::milliseconds ms; typedef
33 assert(Clock::now() - abs_time < ms(5));
try_lock_for.pass.cpp 27 typedef std::chrono::milliseconds ms; typedef
34 assert(rel_time == ms(5));
46 assert(lk.try_lock_for(ms(5)) == true);
52 lk.try_lock_for(ms(5));
61 assert(lk.try_lock_for(ms(5)) == false);
68 lk.try_lock_for(ms(5));
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.locking/
try_lock_until.pass.cpp 31 typedef std::chrono::milliseconds ms; typedef
32 assert(Clock::now() - abs_time < ms(5));
try_lock_for.pass.cpp 26 typedef std::chrono::milliseconds ms; typedef
33 assert(rel_time == ms(5));
45 assert(lk.try_lock_for(ms(5)) == true);
51 lk.try_lock_for(ms(5));
60 assert(lk.try_lock_for(ms(5)) == false);
67 lk.try_lock_for(ms(5));
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
GetAllocationTest.java 32 ScriptC_get_allocation ms = local
39 ms.bind_pointer(mTemp);
40 ms.set_alloc_out(mOut);
41 ms.invoke_start();
53 ms.destroy();
  /external/perfetto/src/base/
time_unittest.cc 26 TimeMillis ms = GetWallTimeMs(); local
28 EXPECT_NEAR(ms.count(), ns.count() / 1000000, 1000);
  /external/libcxx/test/std/thread/futures/futures.async/
async_race.pass.cpp 33 typedef std::chrono::milliseconds ms; typedef
34 std::this_thread::sleep_for(ms(200));
  /external/libcxx/test/std/thread/thread.condition/
notify_all_at_thread_exit.pass.cpp 30 typedef std::chrono::milliseconds ms; typedef
37 std::this_thread::sleep_for(ms(300));
47 assert(t1-t0 > ms(250));
  /external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.guard/
adopt_lock.pass.cpp 28 typedef std::chrono::milliseconds ms; typedef
40 ns d = t1 - t0 - ms(250);
41 assert(d < ms(50)); // within 50ms
48 std::this_thread::sleep_for(ms(250));
mutex.pass.cpp 33 typedef std::chrono::milliseconds ms; typedef
44 ns d = t1 - t0 - ms(250);
45 assert(d < ms(200)); // within 200ms
52 std::this_thread::sleep_for(ms(250));
  /external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/
mutex_try_to_lock.pass.cpp 30 typedef std::chrono::milliseconds ms; typedef
55 ns d = t1 - t0 - ms(250);
56 assert(d < ms(200)); // within 200ms
65 std::this_thread::sleep_for(ms(250));
  /external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.cons/
mutex.pass.cpp 33 typedef std::chrono::milliseconds ms; typedef
44 ns d = t1 - t0 - ms(250);
45 assert(d < ms(50)); // within 50ms
52 std::this_thread::sleep_for(ms(250));

Completed in 442 milliseconds

1 2 3 4 5 6 7 8 91011>>