OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TimeIsLaterOrEqual
(Results
1 - 4
of
4
) sorted by null
/external/webrtc/webrtc/base/
timeutils.h
54
bool
TimeIsLaterOrEqual
(uint32_t earlier, uint32_t later); // Inclusive
59
return
TimeIsLaterOrEqual
(ts1, ts2) ? ts2 : ts1;
64
return
TimeIsLaterOrEqual
(ts1, ts2) ? ts1 : ts2;
timeutils_unittest.cc
37
EXPECT_TRUE(
TimeIsLaterOrEqual
(ts_earlier, ts_now));
39
EXPECT_FALSE(
TimeIsLaterOrEqual
(ts_now, ts_earlier));
43
EXPECT_TRUE(
TimeIsLaterOrEqual
(ts_earlier, ts_earlier));
110
EXPECT_TRUE(
TimeIsLaterOrEqual
(ts_earlier, ts_later));
112
EXPECT_FALSE(
TimeIsLaterOrEqual
(ts_later, ts_earlier));
ratetracker.cc
96
if (
TimeIsLaterOrEqual
(current_time, initialization_time_milliseconds_)) {
timeutils.cc
152
bool
TimeIsLaterOrEqual
(uint32_t earlier, uint32_t later) {
Completed in 184 milliseconds