/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.duration/time.duration.nonmember/ |
D | op_+.pass.cpp | 24 std::chrono::seconds s1(3); in main() 25 std::chrono::seconds s2(5); in main() 26 std::chrono::seconds r = s1 + s2; in main() 30 std::chrono::seconds s1(3); in main() 49 constexpr std::chrono::seconds s1(3); in main() 50 constexpr std::chrono::seconds s2(5); in main() 51 constexpr std::chrono::seconds r = s1 + s2; in main() 55 constexpr std::chrono::seconds s1(3); in main()
|
D | op_-.pass.cpp | 25 std::chrono::seconds s1(3); in main() 26 std::chrono::seconds s2(5); in main() 27 std::chrono::seconds r = s1 - s2; in main() 31 std::chrono::seconds s1(3); in main() 50 constexpr std::chrono::seconds s1(3); in main() 51 constexpr std::chrono::seconds s2(5); in main() 52 constexpr std::chrono::seconds r = s1 - s2; in main() 56 constexpr std::chrono::seconds s1(3); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.duration/time.duration.comparisons/ |
D | op_equal.pass.cpp | 30 std::chrono::seconds s1(3); in main() 31 std::chrono::seconds s2(3); in main() 36 std::chrono::seconds s1(3); in main() 37 std::chrono::seconds s2(4); in main() 73 constexpr std::chrono::seconds s1(3); in main() 74 constexpr std::chrono::seconds s2(3); in main() 79 constexpr std::chrono::seconds s1(3); in main() 80 constexpr std::chrono::seconds s2(4); in main()
|
D | op_less.pass.cpp | 40 std::chrono::seconds s1(3); in main() 41 std::chrono::seconds s2(3); in main() 48 std::chrono::seconds s1(3); in main() 49 std::chrono::seconds s2(4); in main() 97 constexpr std::chrono::seconds s1(3); in main() 98 constexpr std::chrono::seconds s2(3); in main() 105 constexpr std::chrono::seconds s1(3); in main() 106 constexpr std::chrono::seconds s2(4); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.duration/time.duration.arithmetic/ |
D | op_-=.pass.cpp | 21 std::chrono::seconds s(3); in main() 22 s -= std::chrono::seconds(2); in main()
|
D | op_+=.pass.cpp | 21 std::chrono::seconds s(3); in main() 22 s += std::chrono::seconds(2); in main()
|
D | op_+EQ.pass.cpp | 21 std::chrono::seconds s(3); in main() 22 s += std::chrono::seconds(2); in main()
|
D | op_-EQ.pass.cpp | 21 std::chrono::seconds s(3); in main() 22 s -= std::chrono::seconds(2); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/ |
D | chrono.cpp | 34 return time_point(seconds(tv.tv_sec) + microseconds(tv.tv_usec)); in now() 40 return time_t(duration_cast<seconds>(t.time_since_epoch()).count()); in to_time_t() 46 return system_clock::time_point(seconds(t)); in from_time_t() 123 return time_point(seconds(tp.tv_sec) + nanoseconds(tp.tv_nsec)); in now()
|
D | condition_variable.cpp | 59 seconds s = duration_cast<seconds>(d); in __do_timed_wait()
|
D | thread.cpp | 112 seconds s = duration_cast<seconds>(ns); in sleep_for()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.point/time.point.cons/ |
D | duration.pass.cpp | 28 std::chrono::time_point<Clock, Duration> t(std::chrono::seconds(3)); in main() 37 constexpr std::chrono::time_point<Clock, Duration> t(std::chrono::seconds(3)); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.duration/time.duration.literals/ |
D | literals.pass.cpp | 24 static_assert ( std::is_same<decltype( 3s ), std::chrono::seconds>::value, "" ); in main() 39 std::chrono::seconds s = 24s; in main() 40 assert ( s == std::chrono::seconds(24)); in main()
|
D | literals1.pass.cpp | 28 seconds s = 24s; in main() 29 assert ( s == seconds(24)); in main()
|
D | literals2.pass.cpp | 31 std::chrono::seconds s = 24s; in main() 32 assert ( s == std::chrono::seconds(24)); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.duration/time.duration.cons/ |
D | convert_overflow.pass.cpp | 25 void f(std::chrono::seconds) in f() argument
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/ |
D | seconds.pass.cpp | 20 typedef std::chrono::seconds D; in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.point/time.point.cast/ |
D | time_point_cast.pass.cpp | 60 test(std::chrono::milliseconds(7265000), std::chrono::seconds(7265)); in main() 72 test_constexpr<std::chrono::milliseconds, 7265000, std::chrono::seconds,7265> (); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.duration/time.duration.cast/ |
D | duration_cast.pass.cpp | 38 test(std::chrono::milliseconds(7265000), std::chrono::seconds(7265)); in main()
|
/ndk/sources/third_party/googletest/googletest/test/ |
D | gtest_xml_output_unittest.py | 187 self.assertTrue(time_delta < datetime.timedelta(seconds=600),
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | chrono | 98 typedef duration<long long > seconds; 266 constexpr chrono::seconds operator "" s(unsigned long long); // C++14 512 typedef duration<long long > seconds; 974 constexpr chrono::seconds operator"" s(unsigned long long __s) 976 return chrono::seconds(static_cast<chrono::seconds::rep>(__s));
|
/ndk/sources/host-tools/make-3.81/tests/scripts/features/ |
D | parallelism | 21 $sleep_command = "sleep -seconds";
|
/ndk/sources/third_party/googletest/googletest/src/ |
D | gtest.cc | 3197 time_t seconds = static_cast<time_t>(ms / 1000); in FormatEpochTimeInMillisAsIso8601() local 3202 const struct tm* const time_struct = localtime(&seconds); // NOLINT in FormatEpochTimeInMillisAsIso8601() 3205 const struct tm* const time_struct = localtime(&seconds); // NOLINT in FormatEpochTimeInMillisAsIso8601()
|
/ndk/sources/host-tools/make-3.81/tests/ |
D | ChangeLog | 431 'OS/2' for (surprise!) OS/2. Also choose a wait time of 2 seconds
|
/ndk/sources/host-tools/make-3.81/po/ |
D | make.pot | 883 msgid "%s is suspending for 30 seconds..."
|