OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TmToSeconds
(Results
1 - 4
of
4
) 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.h
100
int64_t
TmToSeconds
(const std::tm& tm);
sslidentity.cc
248
return
TmToSeconds
(tm);
timeutils.cc
207
int64_t
TmToSeconds
(const std::tm& tm) {
Completed in 47 milliseconds