HomeSort by relevance Sort by last modified time
    Searched defs:Clock (Results 1 - 25 of 164) sorted by null

1 2 3 4 5 6 7

  /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.cast/
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;
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/
default.pass.cpp 23 typedef std::chrono::system_clock Clock;
26 std::chrono::time_point<Clock, Duration> t;
31 constexpr std::chrono::time_point<Clock, Duration> t;
duration.fail.cpp 22 typedef std::chrono::system_clock Clock;
24 std::chrono::time_point<Clock, Duration> t = Duration(3);
duration.pass.cpp 21 typedef std::chrono::system_clock Clock;
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));
convert.fail.cpp 15 // time_point(const time_point<clock, Duration2>& t);
23 typedef std::chrono::system_clock Clock;
27 std::chrono::time_point<Clock, Duration2> t2(Duration2(3));
28 std::chrono::time_point<Clock, Duration1> t1 = t2;
convert.pass.cpp 15 // time_point(const time_point<clock, Duration2>& t);
22 typedef std::chrono::system_clock Clock;
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/
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;
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_-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;
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);
  /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;
  /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.cast/
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;
25 typedef std::chrono::time_point<Clock, std::chrono::milliseconds> FromTimePoint;
26 typedef std::chrono::time_point<Clock, std::chrono::minutes> ToTimePoint;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.point/time.point.cons/
default.pass.cpp 23 typedef std::chrono::system_clock Clock;
26 std::chrono::time_point<Clock, Duration> t;
31 constexpr std::chrono::time_point<Clock, Duration> t;
duration.fail.cpp 22 typedef std::chrono::system_clock Clock;
24 std::chrono::time_point<Clock, Duration> t = Duration(3);
duration.pass.cpp 21 typedef std::chrono::system_clock Clock;
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));
convert.fail.cpp 15 // time_point(const time_point<clock, Duration2>& t);
23 typedef std::chrono::system_clock Clock;
27 std::chrono::time_point<Clock, Duration2> t2(Duration2(3));
28 std::chrono::time_point<Clock, Duration1> t1 = t2;
convert.pass.cpp 15 // time_point(const time_point<clock, Duration2>& t);
22 typedef std::chrono::system_clock Clock;
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;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.point/time.point.nonmember/
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;
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));
  /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 356 milliseconds

1 2 3 4 5 6 7