Home
last modified time | relevance | path

Searched refs:TimePoint (Results 1 – 25 of 45) sorted by relevance

12

/external/grpc-grpc/include/grpcpp/impl/codegen/
Dtime.h40 class TimePoint {
42 TimePoint(const T& time) { you_need_a_specialization_of_TimePoint(); } in TimePoint() function
53 class TimePoint<gpr_timespec> {
55 TimePoint(const gpr_timespec& time) : time_(time) {} in TimePoint() function
76 class TimePoint<std::chrono::system_clock::time_point> {
78 TimePoint(const std::chrono::system_clock::time_point& time) { in TimePoint() function
Dchannel_interface.h69 TimePoint<T> deadline_tp(deadline); in NotifyOnStateChange()
77 TimePoint<T> deadline_tp(deadline); in WaitForStateChange()
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Support/
DChrono.cpp26 TimePoint<> TP; in TEST()
44 TimePoint<> T = in TEST()
69 TimePoint<seconds> Sec = toTimePoint(TimeT); in TEST()
70 TimePoint<milliseconds> Milli = toTimePoint(TimeT); in TEST()
71 TimePoint<microseconds> Micro = toTimePoint(TimeT); in TEST()
72 TimePoint<nanoseconds> Nano = toTimePoint(TimeT); in TEST()
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DChrono.h33 using TimePoint = std::chrono::time_point<std::chrono::system_clock, D>; variable
36 LLVM_ATTRIBUTE_ALWAYS_INLINE inline std::time_t toTimeT(TimePoint<> TP) { in toTimeT()
43 LLVM_ATTRIBUTE_ALWAYS_INLINE inline TimePoint<std::chrono::seconds>
51 raw_ostream &operator<<(raw_ostream &OS, sys::TimePoint<> TP);
DProcess.h63 static void GetTimeUsage(TimePoint<> &elapsed,
DFileSystem.h213 TimePoint<> getLastAccessedTime() const;
214 TimePoint<> getLastModificationTime() const;
554 std::error_code setLastModificationAndAccessTime(int FD, TimePoint<> Time);
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DChrono.cpp26 static inline struct tm getStructTM(TimePoint<> TP) { in getStructTM()
44 raw_ostream &operator<<(raw_ostream &OS, TimePoint<> TP) { in operator <<()
54 void format_provider<TimePoint<>>::format(const TimePoint<> &T, raw_ostream &OS, in format()
57 TimePoint<seconds> Truncated = time_point_cast<seconds>(T); in format()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
DChrono.h34 using TimePoint = std::chrono::time_point<std::chrono::system_clock, D>; variable
37 LLVM_ATTRIBUTE_ALWAYS_INLINE inline std::time_t toTimeT(TimePoint<> TP) { in toTimeT()
44 LLVM_ATTRIBUTE_ALWAYS_INLINE inline TimePoint<std::chrono::seconds>
52 raw_ostream &operator<<(raw_ostream &OS, sys::TimePoint<> TP);
63 struct format_provider<sys::TimePoint<>> {
64 static void format(const sys::TimePoint<> &TP, llvm::raw_ostream &OS,
DProcess.h62 static void GetTimeUsage(TimePoint<> &elapsed,
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/operators/
Drx-skip_until.hpp211 template<class Observable, class TimePoint,
214 std::is_convertible<TimePoint, rxsc::scheduler::clock_type::time_point>>,
222 static Result member(Observable&& o, TimePoint&& when) { in member()
224 …return Result(SkipUntil(std::forward<Observable>(o), rxs::timer(std::forward<TimePoint>(when), cn)… in member()
227 template<class Observable, class TimePoint, class Coordination,
231 std::is_convertible<TimePoint, rxsc::scheduler::clock_type::time_point>>,
239 static Result member(Observable&& o, TimePoint&& when, Coordination cn) { in member()
240 …return Result(SkipUntil(std::forward<Observable>(o), rxs::timer(std::forward<TimePoint>(when), cn)… in member()
Drx-take_until.hpp219 template<class Observable, class TimePoint,
222 std::is_convertible<TimePoint, rxsc::scheduler::clock_type::time_point>>,
230 static Result member(Observable&& o, TimePoint&& when) { in member()
232 …return Result(TakeUntil(std::forward<Observable>(o), rxs::timer(std::forward<TimePoint>(when), cn)… in member()
235 template<class Observable, class TimePoint, class Coordination,
239 std::is_convertible<TimePoint, rxsc::scheduler::clock_type::time_point>>,
247 static Result member(Observable&& o, TimePoint&& when, Coordination cn) { in member()
248 …return Result(TakeUntil(std::forward<Observable>(o), rxs::timer(std::forward<TimePoint>(when), cn)… in member()
/external/libcxxabi/test/support/
Dtimer.hpp22 typedef Clock::time_point TimePoint; typedef in timer
33 TimePoint end = Clock::now(); in ~timer()
39 TimePoint m_start;
/external/libcxx/test/std/utilities/time/time.point/time.point.nonmember/
Dop_-duration.pass.cpp26 typedef std::chrono::time_point<std::chrono::system_clock> TimePoint; in test2739() typedef
29 TimePoint t0 = std::chrono::system_clock::from_time_t(200); in test2739()
30 TimePoint t1 = t0 - d; in test2739()
/external/grpc-grpc/include/grpcpp/
Dalarm.h53 SetInternal(cq, TimePoint<T>(deadline).raw_time(), tag); in Alarm()
62 SetInternal(cq, TimePoint<T>(deadline).raw_time(), tag); in Set()
93 alarm_->SetInternal(TimePoint<T>(deadline).raw_time(), std::move(f)); in Set()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/
DDebugMap.h111 sys::TimePoint<std::chrono::seconds> Timestamp,
169 sys::TimePoint<std::chrono::seconds> getTimestamp() const { in getTimestamp()
194 sys::TimePoint<std::chrono::seconds> Timestamp, uint8_t Type);
197 sys::TimePoint<std::chrono::seconds> Timestamp;
DMachODebugMapParser.cpp70 sys::TimePoint<std::chrono::seconds> Timestamp);
109 Result->addDebugMapObject(File, sys::TimePoint<std::chrono::seconds>()); in Warning()
130 StringRef Filename, sys::TimePoint<std::chrono::seconds> Timestamp) { in switchToNewDebugMapObject()
DDebugMap.cpp43 sys::TimePoint<std::chrono::seconds> Timestamp, in DebugMapObject()
87 sys::TimePoint<std::chrono::seconds> Timestamp, in addDebugMapObject()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/Unix/
DUnix.h84 inline struct timespec toTimeSpec(TimePoint<> TP) { in toTimeSpec()
94 inline struct timeval toTimeVal(TimePoint<std::chrono::microseconds> TP) { in toTimeVal()
/external/swiftshader/third_party/llvm-subzero/lib/Support/Unix/
DUnix.h84 inline struct timespec toTimeSpec(TimePoint<> TP) { in toTimeSpec()
94 inline struct timeval toTimeVal(TimePoint<std::chrono::microseconds> TP) { in toTimeVal()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/Windows/
DWindowsSupport.h227 inline TimePoint<> toTimePoint(FILETIME Time) { in toTimePoint()
236 return TimePoint<>(std::chrono::nanoseconds(100 * TimeInteger.QuadPart)); in toTimePoint()
239 inline FILETIME toFILETIME(TimePoint<> TP) { in toFILETIME()
/external/swiftshader/third_party/llvm-subzero/lib/Support/Windows/
DWindowsSupport.h225 inline TimePoint<> toTimePoint(FILETIME Time) { in toTimePoint()
234 return TimePoint<>(std::chrono::nanoseconds(100 * TimeInteger.QuadPart)); in toTimePoint()
237 inline FILETIME toFILETIME(TimePoint<> TP) { in toFILETIME()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/
DArchiveWriter.cpp144 raw_ostream &Out, const sys::TimePoint<std::chrono::seconds> &ModTime, in printRestOfMemberHeader()
160 const sys::TimePoint<std::chrono::seconds> &ModTime, in printGNUSmallMemberHeader()
169 const sys::TimePoint<std::chrono::seconds> &ModTime, in printBSDMemberHeader()
283 static sys::TimePoint<std::chrono::seconds> now(bool Deterministic) { in now()
288 return sys::TimePoint<seconds>(); in now()
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/
Drx-scheduler.hpp870 template<class TimePoint>
873 typedef TimePoint time_point_type;
875 time_schedulable(TimePoint when, schedulable a) in time_schedulable()
880 TimePoint when;
888 template<class TimePoint>
891 typedef time_schedulable<TimePoint> item_type;
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/
DArchiveWriter.h27 sys::TimePoint<std::chrono::seconds> ModTime;
DArchive.h55 Expected<sys::TimePoint<std::chrono::seconds>> getLastModified() const;
117 Expected<sys::TimePoint<std::chrono::seconds>> getLastModified() const { in getLastModified()

12