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

1 2 3 4

  /external/libcxx/test/utilities/time/time.clock/time.clock.steady/
now.pass.cpp 14 // static time_point now();
22 C::time_point t1 = C::now();
23 C::time_point t2 = C::now();
  /external/libcxx/test/utilities/time/
clock.h 20 typedef std::chrono::time_point<Clock, duration> time_point; typedef in class:Clock
23 static time_point now();
  /external/libcxx/test/thread/thread.threads/thread.thread.this/
sleep_for.pass.cpp 22 typedef Clock::time_point time_point; typedef
25 time_point t0 = Clock::now();
27 time_point t1 = Clock::now();
sleep_until.pass.cpp 13 // void sleep_until(const chrono::time_point<Clock, Duration>& abs_time);
22 typedef Clock::time_point time_point; typedef
25 time_point t0 = Clock::now();
27 time_point t1 = Clock::now();
  /external/libcxx/test/utilities/time/time.clock/time.clock.hires/
now.pass.cpp 14 // static time_point now();
21 C::time_point t1 = C::now();
  /external/libcxx/test/utilities/time/time.clock/time.clock.system/
now.pass.cpp 14 // static time_point now();
21 C::time_point t1 = C::now();
  /external/libcxx/test/utilities/time/time.point/
duration.fail.cpp 12 // time_point
20 typedef std::chrono::time_point<std::chrono::system_clock, int> T;
  /external/libcxx/test/utilities/time/time.point/time.point.cons/
convert.pass.cpp 12 // time_point
15 // time_point(const time_point<clock, Duration2>& t);
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;
convert.fail.cpp 12 // time_point
15 // time_point(const time_point<clock, Duration2>& t);
27 std::chrono::time_point<Clock, Duration2> t2(Duration2(3));
28 std::chrono::time_point<Clock, Duration1> t1 = t2;
  /external/libcxx/test/utilities/time/time.point/time.point.nonmember/
op_-duration.pass.cpp 12 // time_point
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);
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);
op_-time_point.pass.cpp 12 // time_point
16 // operator-(const time_point<Clock, Duration1>& lhs, const time_point<Clock, Duration2>& rhs);
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));
op_+.pass.cpp 12 // time_point
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);
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);
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, Duration1> t1(Duration1(3));
40 constexpr std::chrono::time_point<Clock, Duration2> t2 = t1 + Duration2(5);
42 constexpr std::chrono::time_point<Clock, Duration2> t3 = Duration2(6) + t1
    [all...]
  /external/libcxx/test/utilities/time/time.point/time.point.cast/
toduration.fail.cpp 12 // time_point
15 // time_point<Clock, ToDuration>
16 // time_point_cast(const time_point<Clock, Duration>& t);
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/thread/futures/futures.async/
async.pass.cpp 69 Clock::time_point t0 = Clock::now();
71 Clock::time_point t1 = Clock::now();
77 Clock::time_point t0 = Clock::now();
79 Clock::time_point t1 = Clock::now();
85 Clock::time_point t0 = Clock::now();
87 Clock::time_point t1 = Clock::now();
93 Clock::time_point t0 = Clock::now();
95 Clock::time_point t1 = Clock::now();
102 Clock::time_point t0 = Clock::now();
104 Clock::time_point t1 = Clock::now()
    [all...]
  /external/libcxx/src/
chrono.cpp 29 system_clock::time_point
34 return time_point(seconds(tv.tv_sec) + microseconds(tv.tv_usec));
38 system_clock::to_time_t(const time_point& t) _NOEXCEPT
43 system_clock::time_point
46 return system_clock::time_point(seconds(t));
103 steady_clock::time_point
107 return time_point(duration(fp()));
120 steady_clock::time_point
126 return time_point(seconds(tp.tv_sec) + nanoseconds(tp.tv_nsec));
  /external/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.guard/
adopt_lock.pass.cpp 24 typedef Clock::time_point time_point; typedef
31 time_point t0 = Clock::now();
32 time_point t1;
mutex.fail.cpp 24 typedef Clock::time_point time_point; typedef
31 time_point t0 = Clock::now();
32 time_point t1;
mutex.pass.cpp 24 typedef Clock::time_point time_point; typedef
31 time_point t0 = Clock::now();
32 time_point t1;
  /external/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.cons/
mutex.pass.cpp 24 typedef Clock::time_point time_point; typedef
31 time_point t0 = Clock::now();
32 time_point t1;
  /external/libcxx/test/thread/thread.mutex/thread.mutex.requirements/thread.mutex.requirements.mutex/thread.mutex.class/
lock.pass.cpp 26 typedef Clock::time_point time_point; typedef
33 time_point t0 = Clock::now();
35 time_point t1 = Clock::now();
try_lock.pass.cpp 24 typedef Clock::time_point time_point; typedef
31 time_point t0 = Clock::now();
37 time_point t1 = Clock::now();
  /external/libcxx/test/thread/thread.mutex/thread.mutex.requirements/thread.mutex.requirements.mutex/thread.mutex.recursive/
lock.pass.cpp 26 typedef Clock::time_point time_point; typedef
33 time_point t0 = Clock::now();
35 time_point t1 = Clock::now();
try_lock.pass.cpp 24 typedef Clock::time_point time_point; typedef
31 time_point t0 = Clock::now();
37 time_point t1 = Clock::now();
  /external/libcxx/test/thread/thread.mutex/thread.mutex.requirements/thread.sharedtimedmutex.requirements/thread.sharedtimedmutex.class/
lock.pass.cpp 26 typedef Clock::time_point time_point; typedef
33 time_point t0 = Clock::now();
35 time_point t1 = Clock::now();
try_lock.pass.cpp 26 typedef Clock::time_point time_point; typedef
33 time_point t0 = Clock::now();
39 time_point t1 = Clock::now();

Completed in 338 milliseconds

1 2 3 4