HomeSort by relevance Sort by last modified time
    Searched refs:Clock (Results 101 - 125 of 411) sorted by null

1 2 3 45 6 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.mutex/thread.mutex.requirements/thread.mutex.requirements.mutex/thread.mutex.class/
try_lock.pass.cpp 23 typedef std::chrono::system_clock Clock;
24 typedef Clock::time_point time_point;
25 typedef Clock::duration duration;
31 time_point t0 = Clock::now();
37 time_point t1 = Clock::now();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.mutex/thread.mutex.requirements/thread.mutex.requirements.mutex/thread.mutex.recursive/
lock.pass.cpp 25 typedef std::chrono::system_clock Clock;
26 typedef Clock::time_point time_point;
27 typedef Clock::duration duration;
33 time_point t0 = Clock::now();
35 time_point t1 = Clock::now();
try_lock.pass.cpp 23 typedef std::chrono::system_clock Clock;
24 typedef Clock::time_point time_point;
25 typedef Clock::duration duration;
31 time_point t0 = Clock::now();
37 time_point t1 = Clock::now();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.mutex/thread.mutex.requirements/thread.sharedtimedmutex.requirements/thread.sharedtimedmutex.class/
lock.pass.cpp 25 typedef std::chrono::system_clock Clock;
26 typedef Clock::time_point time_point;
27 typedef Clock::duration duration;
33 time_point t0 = Clock::now();
35 time_point t1 = Clock::now();
try_lock.pass.cpp 25 typedef std::chrono::system_clock Clock;
26 typedef Clock::time_point time_point;
27 typedef Clock::duration duration;
33 time_point t0 = Clock::now();
39 time_point t1 = Clock::now();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.mutex/thread.mutex.requirements/thread.timedmutex.requirements/thread.timedmutex.class/
lock.pass.cpp 25 typedef std::chrono::system_clock Clock;
26 typedef Clock::time_point time_point;
27 typedef Clock::duration duration;
33 time_point t0 = Clock::now();
35 time_point t1 = Clock::now();
try_lock.pass.cpp 23 typedef std::chrono::system_clock Clock;
24 typedef Clock::time_point time_point;
25 typedef Clock::duration duration;
31 time_point t0 = Clock::now();
37 time_point t1 = Clock::now();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.mutex/thread.mutex.requirements/thread.timedmutex.requirements/thread.timedmutex.recursive/
lock.pass.cpp 25 typedef std::chrono::system_clock Clock;
26 typedef Clock::time_point time_point;
27 typedef Clock::duration duration;
33 time_point t0 = Clock::now();
35 time_point t1 = Clock::now();
try_lock.pass.cpp 23 typedef std::chrono::system_clock Clock;
24 typedef Clock::time_point time_point;
25 typedef Clock::duration duration;
31 time_point t0 = Clock::now();
37 time_point t1 = Clock::now();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.point/time.point.cons/
duration.pass.cpp 21 typedef std::chrono::system_clock Clock;
24 std::chrono::time_point<Clock, Duration> t(Duration(3));
28 std::chrono::time_point<Clock, Duration> t(std::chrono::seconds(3));
33 constexpr std::chrono::time_point<Clock, Duration> t(Duration(3));
37 constexpr std::chrono::time_point<Clock, Duration> t(std::chrono::seconds(3));
  /external/libcxx/test/std/thread/futures/futures.shared_future/
wait_until.pass.cpp 16 // template <class Clock, class Duration>
18 // wait_until(const chrono::time_point<Clock, Duration>& abs_time) const;
65 typedef std::chrono::high_resolution_clock Clock;
72 assert(f.wait_until(Clock::now() + ms(10)) == std::future_status::timeout);
79 assert(f.wait_until(Clock::now() + ms(10)) == std::future_status::ready);
81 Clock::time_point t0 = Clock::now();
83 Clock::time_point t1 = Clock::now();
93 assert(f.wait_until(Clock::now() + ms(10)) == std::future_status::timeout)
    [all...]
wait.pass.cpp 44 typedef std::chrono::high_resolution_clock Clock;
54 Clock::time_point t0 = Clock::now();
56 Clock::time_point t1 = Clock::now();
68 Clock::time_point t0 = Clock::now();
70 Clock::time_point t1 = Clock::now();
82 Clock::time_point t0 = Clock::now()
    [all...]
wait_for.pass.cpp 48 typedef std::chrono::high_resolution_clock Clock;
59 Clock::time_point t0 = Clock::now();
61 Clock::time_point t1 = Clock::now();
75 Clock::time_point t0 = Clock::now();
77 Clock::time_point t1 = Clock::now();
91 Clock::time_point t0 = Clock::now()
    [all...]
  /external/libcxx/test/std/thread/futures/futures.unique_future/
wait_until.pass.cpp 16 // template <class Clock, class Duration>
18 // wait_until(const chrono::time_point<Clock, Duration>& abs_time) const;
65 typedef std::chrono::high_resolution_clock Clock;
72 assert(f.wait_until(Clock::now() + ms(10)) == std::future_status::timeout);
79 assert(f.wait_until(Clock::now() + ms(10)) == std::future_status::ready);
81 Clock::time_point t0 = Clock::now();
83 Clock::time_point t1 = Clock::now();
93 assert(f.wait_until(Clock::now() + ms(10)) == std::future_status::timeout)
    [all...]
wait.pass.cpp 44 typedef std::chrono::high_resolution_clock Clock;
54 Clock::time_point t0 = Clock::now();
56 Clock::time_point t1 = Clock::now();
68 Clock::time_point t0 = Clock::now();
70 Clock::time_point t1 = Clock::now();
82 Clock::time_point t0 = Clock::now()
    [all...]
wait_for.pass.cpp 48 typedef std::chrono::high_resolution_clock Clock;
59 Clock::time_point t0 = Clock::now();
61 Clock::time_point t1 = Clock::now();
75 Clock::time_point t0 = Clock::now();
77 Clock::time_point t1 = Clock::now();
91 Clock::time_point t0 = Clock::now()
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.shared_future/
wait_until.pass.cpp 14 // template <class Clock, class Duration>
16 // wait_until(const chrono::time_point<Clock, Duration>& abs_time) const;
46 typedef std::chrono::high_resolution_clock Clock;
53 assert(f.wait_until(Clock::now() + ms(300)) == std::future_status::timeout);
55 assert(f.wait_until(Clock::now() + ms(300)) == std::future_status::ready);
57 Clock::time_point t0 = Clock::now();
59 Clock::time_point t1 = Clock::now();
69 assert(f.wait_until(Clock::now() + ms(300)) == std::future_status::timeout)
    [all...]
wait.pass.cpp 42 typedef std::chrono::high_resolution_clock Clock;
52 Clock::time_point t0 = Clock::now();
54 Clock::time_point t1 = Clock::now();
66 Clock::time_point t0 = Clock::now();
68 Clock::time_point t1 = Clock::now();
80 Clock::time_point t0 = Clock::now()
    [all...]
wait_for.pass.cpp 46 typedef std::chrono::high_resolution_clock Clock;
57 Clock::time_point t0 = Clock::now();
59 Clock::time_point t1 = Clock::now();
73 Clock::time_point t0 = Clock::now();
75 Clock::time_point t1 = Clock::now();
89 Clock::time_point t0 = Clock::now()
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.unique_future/
wait_until.pass.cpp 14 // template <class Clock, class Duration>
16 // wait_until(const chrono::time_point<Clock, Duration>& abs_time) const;
46 typedef std::chrono::high_resolution_clock Clock;
53 assert(f.wait_until(Clock::now() + ms(300)) == std::future_status::timeout);
55 assert(f.wait_until(Clock::now() + ms(300)) == std::future_status::ready);
57 Clock::time_point t0 = Clock::now();
59 Clock::time_point t1 = Clock::now();
69 assert(f.wait_until(Clock::now() + ms(300)) == std::future_status::timeout)
    [all...]
wait.pass.cpp 42 typedef std::chrono::high_resolution_clock Clock;
52 Clock::time_point t0 = Clock::now();
54 Clock::time_point t1 = Clock::now();
66 Clock::time_point t0 = Clock::now();
68 Clock::time_point t1 = Clock::now();
80 Clock::time_point t0 = Clock::now()
    [all...]
wait_for.pass.cpp 46 typedef std::chrono::high_resolution_clock Clock;
57 Clock::time_point t0 = Clock::now();
59 Clock::time_point t1 = Clock::now();
73 Clock::time_point t0 = Clock::now();
75 Clock::time_point t1 = Clock::now();
89 Clock::time_point t0 = Clock::now()
    [all...]
  /external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/
mutex.pass.cpp 28 typedef std::chrono::system_clock Clock;
29 typedef Clock::time_point time_point;
30 typedef Clock::duration duration;
36 time_point t0 = Clock::now();
40 t1 = Clock::now();
48 time_point t0 = Clock::now();
52 t1 = Clock::now();
  /external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.cons/
mutex_duration.pass.cpp 26 typedef std::chrono::steady_clock Clock;
27 typedef Clock::time_point time_point;
28 typedef Clock::duration duration;
34 time_point t0 = Clock::now();
37 time_point t1 = Clock::now();
44 time_point t0 = Clock::now();
47 time_point t1 = Clock::now();
  /external/libcxx/test/std/thread/thread.mutex/thread.mutex.requirements/thread.shared_mutex.requirements/thread.shared_mutex.class/
lock_shared.pass.cpp 27 typedef std::chrono::system_clock Clock;
28 typedef Clock::time_point time_point;
29 typedef Clock::duration duration;
35 time_point t0 = Clock::now();
37 time_point t1 = Clock::now();
45 time_point t0 = Clock::now();
47 time_point t1 = Clock::now();

Completed in 425 milliseconds

1 2 3 45 6 7 8 91011>>