HomeSort by relevance Sort by last modified time
    Searched defs:TmToSeconds (Results 1 - 2 of 2) sorted by null

  /external/webrtc/webrtc/base/
timeutils_unittest.cc 170 class TmToSeconds : public testing::Test {
172 TmToSeconds() {
176 ~TmToSeconds() {
185 // First generate something correct and check that TmToSeconds is happy.
203 int64_t t = rtc::TmToSeconds(tm);
206 // Now damage a random field and check that TmToSeconds is unhappy.
242 EXPECT_EQ(rtc::TmToSeconds(tm), -1);
251 EXPECT_TRUE(rtc::TmToSeconds(*tm) == t);
255 EXPECT_TRUE(rtc::TmToSeconds(tm) == t);
261 TEST_F(TmToSeconds, TestTmToSeconds)
    [all...]
timeutils.cc 207 int64_t TmToSeconds(const std::tm& tm) {

Completed in 72 milliseconds