Searched refs:time_point (Results 1 - 25 of 94) sorted by relevance

1234

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.clock/time.clock.steady/
H A Dnow.pass.cpp14 // static time_point now();
22 C::time_point t1 = C::now();
23 C::time_point t2 = C::now();
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/
H A Dclock.h20 typedef std::chrono::time_point<Clock, duration> time_point; typedef in class:Clock
23 static time_point now();
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.threads/thread.thread.this/
H A Dsleep_for.pass.cpp22 typedef Clock::time_point time_point; typedef
25 time_point t0 = Clock::now();
27 time_point t1 = Clock::now();
H A Dsleep_until.pass.cpp13 // 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();
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.clock/time.clock.hires/
H A Dnow.pass.cpp14 // static time_point now();
21 C::time_point t1 = C::now();
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.clock/time.clock.system/
H A Dnow.pass.cpp14 // static time_point now();
21 C::time_point t1 = C::now();
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.point/
H A Dduration.fail.cpp12 // time_point
20 typedef std::chrono::time_point<std::chrono::system_clock, int> T;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.point/time.point.cons/
H A Dconvert.pass.cpp12 // 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;
H A Dconvert.fail.cpp12 // 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;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.point/time.point.nonmember/
H A Dop_-duration.pass.cpp12 // 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);
H A Dop_-time_point.pass.cpp12 // 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));
H A Dop_+.pass.cpp12 // 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<Cloc
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.point/time.point.cast/
H A Dtoduration.fail.cpp12 // 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;
/ndk/tests/build/test-gnustl-chrono/jni/
H A Dmain.cpp14 high_resolution_clock::time_point start = high_resolution_clock::now();
16 high_resolution_clock::time_point end = high_resolution_clock::now();
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.async/
H A Dasync.pass.cpp69 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 t
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.guard/
H A Dadopt_lock.pass.cpp24 typedef Clock::time_point time_point; typedef
31 time_point t0 = Clock::now();
32 time_point t1;
H A Dmutex.fail.cpp24 typedef Clock::time_point time_point; typedef
31 time_point t0 = Clock::now();
32 time_point t1;
H A Dmutex.pass.cpp24 typedef Clock::time_point time_point; typedef
31 time_point t0 = Clock::now();
32 time_point t1;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.cons/
H A Dmutex.pass.cpp24 typedef Clock::time_point time_point; typedef
31 time_point t0 = Clock::now();
32 time_point t1;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.mutex/thread.mutex.requirements/thread.mutex.requirements.mutex/thread.mutex.class/
H A Dlock.pass.cpp26 typedef Clock::time_point time_point; typedef
33 time_point t0 = Clock::now();
35 time_point t1 = Clock::now();
H A Dtry_lock.pass.cpp24 typedef Clock::time_point time_point; typedef
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/
H A Dlock.pass.cpp26 typedef Clock::time_point time_point; typedef
33 time_point t0 = Clock::now();
35 time_point t1 = Clock::now();
H A Dtry_lock.pass.cpp24 typedef Clock::time_point time_point; typedef
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/
H A Dlock.pass.cpp26 typedef Clock::time_point time_point; typedef
33 time_point t0 = Clock::now();
35 time_point t1 = Clock::now();
H A Dtry_lock.pass.cpp26 typedef Clock::time_point time_point; typedef
33 time_point t0 = Clock::now();
39 time_point t1 = Clock::now();

Completed in 455 milliseconds

1234