/external/google-benchmark/cmake/ |
H A D | steady_clock.cpp | 4 typedef std::chrono::steady_clock Clock; typedef 5 Clock::time_point tp = Clock::now();
|
/external/libchrome/base/time/ |
H A D | clock.cc | 9 Clock::~Clock() {}
|
H A D | clock.h | 13 // A Clock is an interface for objects that vend Times. It is 28 class BASE_EXPORT Clock { class in namespace:base 30 virtual ~Clock();
|
/external/libcxx/test/std/utilities/time/time.point/time.point.arithmetic/ |
H A D | op_+=.pass.cpp | 21 typedef std::chrono::system_clock Clock; typedef 23 std::chrono::time_point<Clock, Duration> t(Duration(3));
|
H A D | op_-=.pass.cpp | 21 typedef std::chrono::system_clock Clock; typedef 23 std::chrono::time_point<Clock, Duration> t(Duration(3));
|
/external/libcxx/test/std/utilities/time/time.point/time.point.cast/ |
H A D | toduration.fail.cpp | 14 // template <class ToDuration, class Clock, class Duration> 15 // time_point<Clock, ToDuration> 16 // time_point_cast(const time_point<Clock, Duration>& t); 24 typedef std::chrono::system_clock Clock; typedef 25 typedef std::chrono::time_point<Clock, std::chrono::milliseconds> FromTimePoint; 26 typedef std::chrono::time_point<Clock, std::chrono::minutes> ToTimePoint;
|
/external/libcxx/test/std/utilities/time/time.point/time.point.cons/ |
H A D | default.pass.cpp | 23 typedef std::chrono::system_clock Clock; typedef 26 std::chrono::time_point<Clock, Duration> t; 31 constexpr std::chrono::time_point<Clock, Duration> t;
|
H A D | duration.fail.cpp | 22 typedef std::chrono::system_clock Clock; typedef 24 std::chrono::time_point<Clock, Duration> t = Duration(3);
|
H A D | duration.pass.cpp | 21 typedef std::chrono::system_clock Clock; typedef 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));
|
H A D | convert.fail.cpp | 23 typedef std::chrono::system_clock Clock; typedef 27 std::chrono::time_point<Clock, Duration2> t2(Duration2(3)); 28 std::chrono::time_point<Clock, Duration1> t1 = t2;
|
H A D | convert.pass.cpp | 22 typedef std::chrono::system_clock Clock; typedef 26 std::chrono::time_point<Clock, Duration2> t2(Duration2(3)); 27 std::chrono::time_point<Clock, Duration1> t1 = t2; 32 constexpr std::chrono::time_point<Clock, Duration2> t2(Duration2(3)); 33 constexpr std::chrono::time_point<Clock, Duration1> t1 = t2;
|
/external/libcxx/test/std/utilities/time/time.point/time.point.nonmember/ |
H A D | op_-time_point.pass.cpp | 14 // template <class Clock, class Duration1, class Duration2> 16 // operator-(const time_point<Clock, Duration1>& lhs, const time_point<Clock, Duration2>& rhs); 23 typedef std::chrono::system_clock Clock; typedef 27 std::chrono::time_point<Clock, Duration1> t1(Duration1(3)); 28 std::chrono::time_point<Clock, Duration2> t2(Duration2(5)); 33 constexpr std::chrono::time_point<Clock, Duration1> t1(Duration1(3)); 34 constexpr std::chrono::time_point<Clock, Duration2> t2(Duration2(5));
|
H A D | op_-duration.pass.cpp | 14 // template <class Clock, class Duration1, class Rep2, class Period2> 15 // time_point<Clock, typename common_type<Duration1, duration<Rep2, Period2>>::type> 16 // operator-(const time_point<Clock, Duration1>& lhs, const duration<Rep2, Period2>& rhs); 23 typedef std::chrono::system_clock Clock; typedef 27 std::chrono::time_point<Clock, Duration1> t1(Duration1(3)); 28 std::chrono::time_point<Clock, Duration2> t2 = t1 - Duration2(5); 33 constexpr std::chrono::time_point<Clock, Duration1> t1(Duration1(3)); 34 constexpr std::chrono::time_point<Clock, Duration2> t2 = t1 - Duration2(5);
|
H A D | op_+.pass.cpp | 14 // template <class Clock, class Duration1, class Rep2, class Period2> 15 // time_point<Clock, typename common_type<Duration1, duration<Rep2, Period2>>::type> 16 // operator+(const time_point<Clock, Duration1>& lhs, const duration<Rep2, Period2>& rhs); 18 // template <class Rep1, class Period1, class Clock, class Duration2> 19 // time_point<Clock, typename common_type<duration<Rep1, Period1>, Duration2>::type> 20 // operator+(const duration<Rep1, Period1>& lhs, const time_point<Clock, Duration2>& rhs); 27 typedef std::chrono::system_clock Clock; typedef 31 std::chrono::time_point<Clock, Duration1> t1(Duration1(3)); 32 std::chrono::time_point<Clock, Duration2> t2 = t1 + Duration2(5); 39 constexpr std::chrono::time_point<Clock, Duration [all...] |
/external/libcxx/test/std/utilities/time/time.point/time.point.special/ |
H A D | max.pass.cpp | 21 typedef std::chrono::system_clock Clock; typedef 23 typedef std::chrono::time_point<Clock, Duration> TP;
|
H A D | min.pass.cpp | 21 typedef std::chrono::system_clock Clock; typedef 23 typedef std::chrono::time_point<Clock, Duration> TP;
|
/external/libweave/third_party/chromium/base/time/ |
H A D | clock.cc | 9 Clock::~Clock() {}
|
H A D | clock.h | 13 // A Clock is an interface for objects that vend Times. It is 28 class BASE_EXPORT Clock { class in namespace:base 30 virtual ~Clock();
|
/external/libcxx/test/std/utilities/time/ |
H A D | clock.h | 15 class Clock class 20 typedef std::chrono::time_point<Clock, duration> time_point;
|
/external/libcxx/test/std/utilities/time/time.point/time.point.comparisons/ |
H A D | op_equal.pass.cpp | 14 // template <class Clock, class Duration1, class Duration2> 16 // operator==(const time_point<Clock, Duration1>& lhs, const time_point<Clock, Duration2>& rhs); 18 // template <class Clock, class Duration1, class Duration2> 20 // operator!=(const time_point<Clock, Duration1>& lhs, const time_point<Clock, Duration2>& rhs); 27 typedef std::chrono::system_clock Clock; typedef 30 typedef std::chrono::time_point<Clock, Duration1> T1; 31 typedef std::chrono::time_point<Clock, Duration2> T2;
|
H A D | op_less.pass.cpp | 14 // template <class Clock, class Duration1, class Duration2> 16 // operator< (const time_point<Clock, Duration1>& lhs, const time_point<Clock, Duration2>& rhs); 18 // template <class Clock, class Duration1, class Duration2> 20 // operator> (const time_point<Clock, Duration1>& lhs, const time_point<Clock, Duration2>& rhs); 22 // template <class Clock, class Duration1, class Duration2> 24 // operator<=(const time_point<Clock, Duration1>& lhs, const time_point<Clock, Duration2>& rhs); 26 // template <class Clock, clas 35 typedef std::chrono::system_clock Clock; typedef [all...] |
/external/webrtc/webrtc/system_wrappers/include/ |
H A D | clock.h | 27 class Clock { class in namespace:webrtc 29 virtual ~Clock() {} 49 static Clock* GetRealTimeClock(); 52 class SimulatedClock : public Clock {
|
/external/libcxx/test/std/thread/thread.condition/ |
H A D | notify_all_at_thread_exit.pass.cpp | 27 typedef std::chrono::high_resolution_clock Clock; typedef 40 Clock::time_point t0 = Clock::now(); 42 Clock::time_point t1 = Clock::now();
|
/external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.guard/ |
H A D | adopt_lock.pass.cpp | 25 typedef std::chrono::system_clock Clock; typedef 26 typedef Clock::time_point time_point; 27 typedef Clock::duration duration; 33 time_point t0 = Clock::now(); 38 t1 = Clock::now();
|
H A D | mutex.pass.cpp | 25 typedef std::chrono::system_clock Clock; typedef 26 typedef Clock::time_point time_point; 27 typedef Clock::duration duration; 33 time_point t0 = Clock::now(); 37 t1 = Clock::now();
|