Searched defs:test_time (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/chrome/browser/google_apis/
H A Dtime_util_unittest.cc30 base::Time test_time; local
31 ASSERT_TRUE(GetTimeFromString("2013-01-15T17:11:35.374", &test_time));
34 EXPECT_EQ(local_time, test_time);
39 base::Time test_time; local
44 EXPECT_TRUE(GetTimeFromString("2012-07-14T02:03:21.151+01", &test_time));
45 EXPECT_EQ(FormatTime(target_time), FormatTime(test_time));
48 EXPECT_TRUE(GetTimeFromString("2012-07-14T07:33:21.151+06:30", &test_time));
49 EXPECT_EQ(FormatTime(target_time), FormatTime(test_time));
52 EXPECT_TRUE(GetTimeFromString("2012-07-13T18:33:21.151-06:30", &test_time));
53 EXPECT_EQ(FormatTime(target_time), FormatTime(test_time));
57 base::Time test_time; local
[all...]
/external/chromium_org/content/common/
H A Dinter_process_time_ticks_converter_unittest.cc21 int64 test_time; member in struct:content::__anon7919::TestParams
39 TimeTicks test_time = TimeTicks::FromInternalValue(params.test_time); local
50 test_time)).ToTimeTicks().ToInternalValue();
63 p.test_time = 0;
77 p.test_time = 3;
92 p.test_time = 4;
102 // bounds and scale down the delta. |test_time| is on the midpoint, so it
110 p.test_time = 5;
119 // adjust the lower bound and move |test_time| ou
[all...]
/external/chromium/net/tools/fetch/
H A Dfetch_client.cc182 int test_time = table.GetCounterValue("t:FetchClient.total_time"); local
187 printf("Time : %dms\n", test_time);
189 if (test_time > 0) {
192 (static_cast<float>(test_time) / 1000.0);
/external/chromium_org/net/tools/fetch/
H A Dfetch_client.cc195 int test_time = table.GetCounterValue("t:FetchClient.total_time"); local
200 printf("Time : %dms\n", test_time);
202 if (test_time > 0) {
205 (static_cast<float>(test_time) / 1000.0);
/external/netperf/
H A Dnetsh.c160 test_time, /* test ends by time */ variable
414 test_time = 10; /* test ends by time */
696 test_time = convert(optarg);
698 if (test_time < 0) {
699 test_bytes = -1 * test_time;
701 test_time = 0;
1003 test_time,
/external/chromium/chrome/browser/sync/engine/
H A Dsyncer_unittest.cc1910 int64 test_time = 123456; local
1920 entry.Put(syncable::MTIME, test_time);
1947 EXPECT_TRUE(entry.Get(MTIME) == test_time);
/external/chromium_org/sync/engine/
H A Dsyncer_unittest.cc2358 const base::Time& test_time = ProtoTimeToTime(123456); local
2370 entry.Put(syncable::MTIME, test_time);
2396 EXPECT_TRUE(entry.Get(MTIME) == test_time);

Completed in 336 milliseconds