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

1 23 4 5 6 7 8 91011>>

  /external/libcxx/test/std/thread/thread.condition/thread.condition.condvarany/
wait_until.pass.cpp 16 // template <class Lock, class Clock, class Duration>
18 // wait_until(Lock& lock, const chrono::time_point<Clock, Duration>& abs_time);
26 struct Clock
31 typedef std::chrono::time_point<Clock> time_point;
61 Clock::time_point t0 = Clock::now();
62 Clock::time_point t = t0 + Clock::duration(250);
65 Clock::time_point t1 = Clock::now()
    [all...]
wait_until_pred.pass.cpp 19 // const chrono::time_point<Clock, Duration>& abs_time,
28 struct Clock
33 typedef std::chrono::time_point<Clock> time_point;
72 Clock::time_point t0 = Clock::now();
73 Clock::time_point t = t0 + Clock::duration(250);
75 Clock::time_point t1 = Clock::now();
78 assert(t1 - t0 < Clock::duration(250))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.condition/thread.condition.condvar/
wait_until.pass.cpp 14 // template <class Clock, class Duration>
17 // const chrono::time_point<Clock, Duration>& abs_time);
25 struct Clock
30 typedef std::chrono::time_point<Clock> time_point;
56 Clock::time_point t0 = Clock::now();
57 Clock::time_point t = t0 + Clock::duration(250);
60 Clock::time_point t1 = Clock::now()
    [all...]
wait_until_pred.pass.cpp 14 // template <class Clock, class Duration, class Predicate>
17 // const chrono::time_point<Clock, Duration>& abs_time,
26 struct Clock
31 typedef std::chrono::time_point<Clock> time_point;
66 Clock::time_point t0 = Clock::now();
67 Clock::time_point t = t0 + Clock::duration(250);
69 Clock::time_point t1 = Clock::now()
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.condition/thread.condition.condvarany/
wait_until.pass.cpp 14 // template <class Lock, class Clock, class Duration>
16 // wait_until(Lock& lock, const chrono::time_point<Clock, Duration>& abs_time);
24 struct Clock
29 typedef std::chrono::time_point<Clock> time_point;
59 Clock::time_point t0 = Clock::now();
60 Clock::time_point t = t0 + Clock::duration(250);
63 Clock::time_point t1 = Clock::now()
    [all...]
wait_until_pred.pass.cpp 17 // const chrono::time_point<Clock, Duration>& abs_time,
26 struct Clock
31 typedef std::chrono::time_point<Clock> time_point;
70 Clock::time_point t0 = Clock::now();
71 Clock::time_point t = t0 + Clock::duration(250);
73 Clock::time_point t1 = Clock::now();
76 assert(t1 - t0 < Clock::duration(250))
    [all...]
  /external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.locking/
try_lock_until.pass.cpp 16 // template <class Clock, class Duration>
17 // bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time);
28 template <class Clock, class Duration>
29 bool try_lock_shared_until(const std::chrono::time_point<Clock, Duration>& abs_time)
32 assert(Clock::now() - abs_time < ms(5));
46 typedef std::chrono::steady_clock Clock;
48 assert(lk.try_lock_until(Clock::now()) == true);
53 lk.try_lock_until(Clock::now());
61 assert(lk.try_lock_until(Clock::now()) == false);
67 lk.try_lock_until(Clock::now())
    [all...]
  /external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.locking/
try_lock_until.pass.cpp 16 // template <class Clock, class Duration>
17 // bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time);
26 template <class Clock, class Duration>
27 bool try_lock_until(const std::chrono::time_point<Clock, Duration>& abs_time)
30 assert(Clock::now() - abs_time < ms(5));
41 typedef std::chrono::steady_clock Clock;
43 assert(lk.try_lock_until(Clock::now()) == true);
48 lk.try_lock_until(Clock::now());
56 assert(lk.try_lock_until(Clock::now()) == false);
62 lk.try_lock_until(Clock::now())
    [all...]
  /external/libcxx/test/std/utilities/time/
clock.h 15 class Clock
20 typedef std::chrono::time_point<Clock, duration> time_point;
  /external/libcxx/test/std/utilities/time/time.point/time.point.arithmetic/
op_+=.pass.cpp 21 typedef std::chrono::system_clock Clock;
23 std::chrono::time_point<Clock, Duration> t(Duration(3));
op_-=.pass.cpp 21 typedef std::chrono::system_clock Clock;
23 std::chrono::time_point<Clock, Duration> t(Duration(3));
  /external/libcxx/test/std/utilities/time/time.point/time.point.special/
max.pass.cpp 21 typedef std::chrono::system_clock Clock;
23 typedef std::chrono::time_point<Clock, Duration> TP;
min.pass.cpp 21 typedef std::chrono::system_clock Clock;
23 typedef std::chrono::time_point<Clock, Duration> TP;
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/tools/
bwe_rtp.h 17 class Clock;
29 webrtc::Clock* clock,
  /external/webrtc/webrtc/test/
video_capturer.h 17 class Clock;
29 Clock* clock);
  /external/webrtc/webrtc/voice_engine/
network_predictor.h 15 #include "webrtc/system_wrappers/include/clock.h"
25 explicit NetworkPredictor(Clock* clock);
37 Clock* clock_;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.locking/
try_lock_until.pass.cpp 14 // template <class Clock, class Duration>
15 // bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time);
26 template <class Clock, class Duration>
27 bool try_lock_shared_until(const std::chrono::time_point<Clock, Duration>& abs_time)
30 assert(Clock::now() - abs_time < ms(5));
44 typedef std::chrono::steady_clock Clock;
46 assert(lk.try_lock_until(Clock::now()) == true);
51 lk.try_lock_until(Clock::now());
59 assert(lk.try_lock_until(Clock::now()) == false);
65 lk.try_lock_until(Clock::now())
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.locking/
try_lock_until.pass.cpp 14 // template <class Clock, class Duration>
15 // bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time);
24 template <class Clock, class Duration>
25 bool try_lock_until(const std::chrono::time_point<Clock, Duration>& abs_time)
28 assert(Clock::now() - abs_time < ms(5));
39 typedef std::chrono::steady_clock Clock;
41 assert(lk.try_lock_until(Clock::now()) == true);
46 lk.try_lock_until(Clock::now());
54 assert(lk.try_lock_until(Clock::now()) == false);
60 lk.try_lock_until(Clock::now())
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/
clock.h 15 class Clock
20 typedef std::chrono::time_point<Clock, duration> time_point;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.point/time.point.arithmetic/
op_+=.pass.cpp 21 typedef std::chrono::system_clock Clock;
23 std::chrono::time_point<Clock, Duration> t(Duration(3));
op_+EQ.pass.cpp 21 typedef std::chrono::system_clock Clock;
23 std::chrono::time_point<Clock, Duration> t(Duration(3));
op_-=.pass.cpp 21 typedef std::chrono::system_clock Clock;
23 std::chrono::time_point<Clock, Duration> t(Duration(3));
op_-EQ.pass.cpp 21 typedef std::chrono::system_clock Clock;
23 std::chrono::time_point<Clock, Duration> t(Duration(3));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.point/time.point.special/
max.pass.cpp 21 typedef std::chrono::system_clock Clock;
23 typedef std::chrono::time_point<Clock, Duration> TP;
min.pass.cpp 21 typedef std::chrono::system_clock Clock;
23 typedef std::chrono::time_point<Clock, Duration> TP;

Completed in 311 milliseconds

1 23 4 5 6 7 8 91011>>