/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/ |
D | minutes.pass.cpp | 22 typedef D::period Period; in main() typedef 26 static_assert((std::is_same<Period, std::ratio<60> >::value), ""); in main()
|
D | hours.pass.cpp | 22 typedef D::period Period; in main() typedef 26 static_assert((std::is_same<Period, std::ratio<3600> >::value), ""); in main()
|
D | nanoseconds.pass.cpp | 22 typedef D::period Period; in main() typedef 26 static_assert((std::is_same<Period, std::nano>::value), ""); in main()
|
D | microseconds.pass.cpp | 22 typedef D::period Period; in main() typedef 26 static_assert((std::is_same<Period, std::micro>::value), ""); in main()
|
D | seconds.pass.cpp | 22 typedef D::period Period; in main() typedef 26 static_assert((std::is_same<Period, std::ratio<1> >::value), ""); in main()
|
D | milliseconds.pass.cpp | 22 typedef D::period Period; in main() typedef 26 static_assert((std::is_same<Period, std::milli>::value), ""); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | condition_variable | 49 template <class Rep, class Period> 52 const chrono::duration<Rep, Period>& rel_time); 54 template <class Rep, class Period, class Predicate> 57 const chrono::duration<Rep, Period>& rel_time, 94 template <class Lock, class Rep, class Period> 97 const chrono::duration<Rep, Period>& rel_time); 99 template <class Lock, class Rep, class Period, class Predicate> 102 const chrono::duration<Rep, Period>& rel_time,
|
D | shared_mutex | 34 template <class Rep, class Period> 35 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time); 43 template <class Rep, class Period> 45 try_lock_shared_for(const chrono::duration<Rep, Period>& rel_time); 67 template <class Rep, class Period> 69 const chrono::duration<Rep, Period>& rel_time); 80 template <class Rep, class Period> 81 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time); 317 template <class Rep, class Period> 318 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
|
D | mutex | 65 template <class Rep, class Period> 66 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time); 83 template <class Rep, class Period> 84 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time); 124 template <class Rep, class Period> 125 unique_lock(mutex_type& m, const chrono::duration<Rep, Period>& rel_time); 137 template <class Rep, class Period> 138 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
|
D | chrono | 22 template <class ToDuration, class Rep, class Period> 25 duration_cast(const duration<Rep, Period>& fd); 40 template <class Rep, class Period = ratio<1>> 44 …static_assert(__is_ratio<Period>::value, "Second template parameter of duration must be a std::rat… 45 static_assert(Period::num > 0, "duration period must be positive"); 48 typedef Period period; 156 template <class Rep1, class Period, class Rep2> 158 duration<typename common_type<Rep1, Rep2>::type, Period> 159 operator*(const duration<Rep1, Period>& d, const Rep2& s); 160 template <class Rep1, class Period, class Rep2> [all …]
|
D | future | 168 template <class Rep, class Period> 170 wait_for(const chrono::duration<Rep, Period>& rel_time) const; 195 template <class Rep, class Period> 197 wait_for(const chrono::duration<Rep, Period>& rel_time) const; 222 template <class Rep, class Period> 224 wait_for(const chrono::duration<Rep, Period>& rel_time) const; 249 template <class Rep, class Period> 251 wait_for(const chrono::duration<Rep, Period>& rel_time) const; 276 template <class Rep, class Period> 278 wait_for(const chrono::duration<Rep, Period>& rel_time) const; [all …]
|
D | thread | 79 template <class Rep, class Period> 80 void sleep_for(const chrono::duration<Rep, Period>& rel_time);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.locking/ |
D | try_lock_for.pass.cpp | 26 template <class Rep, class Period> 27 bool try_lock_for(const std::chrono::duration<Rep, Period>& rel_time) in try_lock_for()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.locking/ |
D | try_lock_for.pass.cpp | 28 template <class Rep, class Period> 29 bool try_lock_shared_for(const std::chrono::duration<Rep, Period>& rel_time) in try_lock_shared_for()
|
/ndk/sources/cxx-stl/llvm-libc++/patches.android/ |
D | 0013-temp-collective-ndk-hackathon-fixes.patch | 267 @@ -106,6 +106,8 @@ void sleep_for(const chrono::duration<Rep, Period>& rel_time);
|