HomeSort by relevance Sort by last modified time
    Searched refs:time_point (Results 26 - 50 of 190) sorted by null

12 3 4 5 6 7 8

  /ndk/tests/build/test-gnustl-chrono/jni/
main.cpp 14 high_resolution_clock::time_point start = high_resolution_clock::now();
16 high_resolution_clock::time_point end = high_resolution_clock::now();
  /external/libcxx/test/std/utilities/time/time.point/time.point.nonmember/
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...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.point/time.point.nonmember/
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/src/
chrono.cpp 36 system_clock::time_point
43 return time_point(seconds(tp.tv_sec) + microseconds(tp.tv_nsec / 1000));
47 return time_point(seconds(tv.tv_sec) + microseconds(tv.tv_usec));
52 system_clock::to_time_t(const time_point& t) _NOEXCEPT
57 system_clock::time_point
60 return system_clock::time_point(seconds(t));
74 steady_clock::time_point
80 return time_point(seconds(tp.tv_sec) + nanoseconds(tp.tv_nsec));
134 steady_clock::time_point
138 return time_point(duration(fp()))
    [all...]
  /external/libcxx/test/std/thread/futures/futures.async/
async.pass.cpp 72 Clock::time_point t0 = Clock::now();
74 Clock::time_point t1 = Clock::now();
80 Clock::time_point t0 = Clock::now();
82 Clock::time_point t1 = Clock::now();
88 Clock::time_point t0 = Clock::now();
90 Clock::time_point t1 = Clock::now();
96 Clock::time_point t0 = Clock::now();
98 Clock::time_point t1 = Clock::now();
105 Clock::time_point t0 = Clock::now();
107 Clock::time_point t1 = Clock::now()
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/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/test/std/thread/thread.mutex/thread.lock/thread.lock.guard/
adopt_lock.pass.cpp 26 typedef Clock::time_point time_point; typedef
33 time_point t0 = Clock::now();
34 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 26 typedef Clock::time_point time_point; typedef
33 time_point t0 = Clock::now();
34 time_point t1;
  /external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.cons/
mutex.pass.cpp 26 typedef Clock::time_point time_point; typedef
33 time_point t0 = Clock::now();
34 time_point t1;
  /external/libcxx/test/std/thread/thread.mutex/thread.mutex.requirements/thread.mutex.requirements.mutex/thread.mutex.class/
lock.pass.cpp 28 typedef Clock::time_point time_point; typedef
35 time_point t0 = Clock::now();
37 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();
  /external/libcxx/test/std/thread/thread.mutex/thread.mutex.requirements/thread.mutex.requirements.mutex/thread.mutex.recursive/
lock.pass.cpp 28 typedef Clock::time_point time_point; typedef
35 time_point t0 = Clock::now();
37 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();
  /external/libcxx/test/std/thread/thread.mutex/thread.mutex.requirements/thread.shared_mutex.requirements/thread.shared_mutex.class/
lock.pass.cpp 28 typedef Clock::time_point time_point; typedef
35 time_point t0 = Clock::now();
37 time_point t1 = Clock::now();
try_lock.pass.cpp 27 typedef Clock::time_point time_point; typedef
34 time_point t0 = Clock::now();
40 time_point t1 = Clock::now();
  /external/libcxx/test/std/thread/thread.mutex/thread.mutex.requirements/thread.sharedtimedmutex.requirements/thread.sharedtimedmutex.class/
lock.pass.cpp 27 typedef Clock::time_point time_point; typedef
34 time_point t0 = Clock::now();
36 time_point t1 = Clock::now();
try_lock.pass.cpp 27 typedef Clock::time_point time_point; typedef
34 time_point t0 = Clock::now();
40 time_point t1 = Clock::now();
  /external/libcxx/test/std/thread/thread.mutex/thread.mutex.requirements/thread.timedmutex.requirements/thread.timedmutex.class/
lock.pass.cpp 28 typedef Clock::time_point time_point; typedef
35 time_point t0 = Clock::now();
37 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();
  /external/libcxx/test/std/thread/thread.mutex/thread.mutex.requirements/thread.timedmutex.requirements/thread.timedmutex.recursive/
lock.pass.cpp 28 typedef Clock::time_point time_point; typedef
35 time_point t0 = Clock::now();
37 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();
  /external/libcxx/test/std/utilities/time/time.clock/time.clock.system/
from_time_t.pass.cpp 14 // static time_point from_time_t(time_t t);
22 C::time_point t1 = C::from_time_t(C::to_time_t(C::now()));
  /external/libcxx/test/std/utilities/time/time.point/
default_duration.pass.cpp 12 // time_point
17 // class time_point;
25 std::chrono::time_point<std::chrono::system_clock>::duration>::value), "");
  /external/libcxx/test/std/utilities/time/time.point/time.point.cons/
duration.fail.cpp 12 // time_point
14 // explicit time_point(const duration& d);
24 std::chrono::time_point<Clock, Duration> t = Duration(3);

Completed in 318 milliseconds

12 3 4 5 6 7 8