Home
last modified time | relevance | path

Searched refs:ToDoubleT (Results 1 – 11 of 11) sorted by relevance

/external/libchrome/base/i18n/
Dtime_formatting.cc31 formatter->format(static_cast<UDate>(time.ToDoubleT() * 1000), date_string); in TimeFormat()
42 static_cast<UDate>(time.ToDoubleT() * 1000), time_string, ampm_field); in TimeFormatWithoutAmPm()
253 UDate start_date = static_cast<UDate>(begin_time.ToDoubleT() * 1000); in DateIntervalFormat()
254 UDate end_date = static_cast<UDate>(end_time.ToDoubleT() * 1000); in DateIntervalFormat()
Dtime_formatting_unittest.cc39 static_cast<UDate>(time.ToDoubleT() * 1000), in GetShortTimeZone()
/external/libchrome/ipc/
Dipc_logging.cc263 Time::FromInternalValue(data.sent).ToDoubleT(), in Log()
265 Time::FromInternalValue(data.receive).ToDoubleT(), in Log()
267 Time::FromInternalValue(data.dispatch).ToDoubleT(), in Log()
Dipc_message_utils.cc1163 WriteParam(m, p.last_modified.ToDoubleT()); in Write()
1164 WriteParam(m, p.last_accessed.ToDoubleT()); in Write()
1165 WriteParam(m, p.creation_time.ToDoubleT()); in Write()
1191 LogParam(p.last_modified.ToDoubleT(), l); in Log()
1193 LogParam(p.last_accessed.ToDoubleT(), l); in Log()
1195 LogParam(p.creation_time.ToDoubleT(), l); in Log()
/external/libchrome/base/files/
Dfile_proxy_unittest.cc341 EXPECT_EQ(static_cast<int>(last_modified_time.ToDoubleT()), in TEST_F()
342 static_cast<int>(info.last_modified.ToDoubleT())); in TEST_F()
343 EXPECT_EQ(static_cast<int>(last_accessed_time.ToDoubleT()), in TEST_F()
344 static_cast<int>(info.last_accessed.ToDoubleT())); in TEST_F()
/external/libchrome/base/
Dsys_info_unittest.cc188 EXPECT_DOUBLE_EQ(lsb_release_time.ToDoubleT(), in TEST_F()
189 parsed_lsb_release_time.ToDoubleT()); in TEST_F()
Dsys_info_chromeos.cc214 env->SetVar(kLsbReleaseTimeKey, NumberToString(lsb_release_time.ToDoubleT())); in SetChromeOSVersionInfoForTest()
/external/libchrome/base/time/
Dtime.cc229 double Time::ToDoubleT() const { in ToDoubleT() function in base::Time
Dtime_unittest.cc147 EXPECT_EQ(10.0, Time().FromTimeT(10).ToDoubleT()); in TEST_F()
238 EXPECT_EQ(700.0003, t.ToDoubleT()); in TEST_F()
269 EXPECT_EQ(0.0, zero_time.ToDoubleT()); in TEST_F()
640 EXPECT_EQ(std::numeric_limits<double>::infinity(), t.ToDoubleT()); in TEST_F()
Dtime.h555 double ToDoubleT() const;
/external/libchrome/base/memory/
Dshared_memory_unittest.cc193 << Time::Now().ToDoubleT(); in TEST_P()