OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TestTimeFormats
(Results
1 - 2
of
2
) sorted by null
/external/chromium/chrome/common/
time_format_unittest.cc
36
void
TestTimeFormats
(const TimeDelta delta, const char* expected_ascii) {
60
TestTimeFormats
(twohundred_millisecs, "0 secs");
61
TestTimeFormats
(one_sec - twohundred_millisecs, "0 secs");
62
TestTimeFormats
(one_sec + twohundred_millisecs, "1 sec");
63
TestTimeFormats
(five_secs + twohundred_millisecs, "5 secs");
64
TestTimeFormats
(one_min + five_secs, "1 min");
65
TestTimeFormats
(three_mins + twohundred_millisecs, "3 mins");
66
TestTimeFormats
(one_hour + five_secs, "1 hour");
67
TestTimeFormats
(four_hours + five_secs, "4 hours");
68
TestTimeFormats
(one_day + five_secs, "1 day")
[
all
...]
/external/chromium_org/ui/base/l10n/
time_format_unittest.cc
18
void
TestTimeFormats
(const TimeDelta& delta, const char* expected_ascii) {
40
TestTimeFormats
(twohundred_millisecs, "0 secs");
41
TestTimeFormats
(one_sec - twohundred_millisecs, "0 secs");
42
TestTimeFormats
(one_sec + twohundred_millisecs, "1 sec");
43
TestTimeFormats
(five_secs + twohundred_millisecs, "5 secs");
44
TestTimeFormats
(one_min + five_secs, "1 min");
45
TestTimeFormats
(three_mins + twohundred_millisecs, "3 mins");
46
TestTimeFormats
(one_hour + five_secs, "1 hour");
47
TestTimeFormats
(four_hours + five_secs, "4 hours");
48
TestTimeFormats
(one_day + five_secs, "1 day")
[
all
...]
Completed in 287 milliseconds