OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TimeIsLaterOrEqual
(Results
1 - 5
of
5
) sorted by null
/external/chromium/third_party/libjingle/source/talk/base/
time.h
52
bool
TimeIsLaterOrEqual
(uint32 earlier, uint32 later); // Inclusive
57
return
TimeIsLaterOrEqual
(ts1, ts2) ? ts2 : ts1;
62
return
TimeIsLaterOrEqual
(ts1, ts2) ? ts1 : ts2;
time.cc
84
bool
TimeIsLaterOrEqual
(uint32 earlier, uint32 later) {
/external/chromium_org/third_party/libjingle/source/talk/base/
timeutils.h
68
bool
TimeIsLaterOrEqual
(uint32 earlier, uint32 later); // Inclusive
73
return
TimeIsLaterOrEqual
(ts1, ts2) ? ts2 : ts1;
78
return
TimeIsLaterOrEqual
(ts1, ts2) ? ts1 : ts2;
timeutils_unittest.cc
53
EXPECT_TRUE(
TimeIsLaterOrEqual
(ts_earlier, ts_now));
55
EXPECT_FALSE(
TimeIsLaterOrEqual
(ts_now, ts_earlier));
59
EXPECT_TRUE(
TimeIsLaterOrEqual
(ts_earlier, ts_earlier));
126
EXPECT_TRUE(
TimeIsLaterOrEqual
(ts_earlier, ts_later));
128
EXPECT_FALSE(
TimeIsLaterOrEqual
(ts_later, ts_earlier));
timeutils.cc
164
bool
TimeIsLaterOrEqual
(uint32 earlier, uint32 later) {
Completed in 517 milliseconds