HomeSort by relevance Sort by last modified time
    Searched refs:parsed_time (Results 1 - 4 of 4) sorted by null

  /external/libchrome/base/time/
pr_time_unittest.cc 91 PRTime parsed_time = 0; local
92 PRStatus result = PR_ParseTimeString(time_buf, PR_FALSE, &parsed_time);
94 EXPECT_EQ(current_time64, parsed_time);
98 PRTime parsed_time = 0; local
100 PR_FALSE, &parsed_time);
102 EXPECT_EQ(comparison_time_pdt, parsed_time);
106 PRTime parsed_time = 0; local
108 &parsed_time);
110 EXPECT_EQ(comparison_time_local_, parsed_time);
114 PRTime parsed_time = 0 local
122 PRTime parsed_time = 0; local
130 PRTime parsed_time = 0; local
138 PRTime parsed_time = 0; local
146 PRTime parsed_time = 0; local
154 PRTime parsed_time = 0; local
162 PRTime parsed_time = 0; local
170 PRTime parsed_time = 0; local
179 PRTime parsed_time = 0; local
188 PRTime parsed_time = 0; local
197 PRTime parsed_time = 0; local
206 PRTime parsed_time = 0; local
215 PRTime parsed_time = 0; local
224 PRTime parsed_time = 0; local
233 PRTime parsed_time = 0; local
241 PRTime parsed_time = 0; local
248 PRTime parsed_time = 0; local
255 PRTime parsed_time = 0; local
264 PRTime parsed_time = 0; local
275 PRTime parsed_time = 0; local
283 PRTime parsed_time = 0; local
    [all...]
time_unittest.cc 181 Time parsed_time; local
182 EXPECT_TRUE(Time::FromString(time_buf, &parsed_time));
183 EXPECT_EQ(current_time, parsed_time.ToTimeT());
211 Time parsed_time; local
212 EXPECT_TRUE(Time::FromString("Mon, 15 Oct 2007 19:45:00 GMT", &parsed_time));
213 EXPECT_EQ(comparison_time_pdt_, parsed_time);
217 Time parsed_time; local
218 EXPECT_TRUE(Time::FromString("15 Oct 07 12:45:00", &parsed_time));
219 EXPECT_EQ(comparison_time_local_, parsed_time);
223 Time parsed_time; local
229 Time parsed_time; local
235 Time parsed_time; local
241 Time parsed_time; local
247 Time parsed_time; local
253 Time parsed_time; local
259 Time parsed_time; local
266 Time parsed_time; local
278 Time parsed_time; local
290 Time parsed_time; local
302 Time parsed_time; local
317 Time parsed_time; local
325 Time parsed_time; local
337 Time parsed_time; local
352 Time parsed_time; local
357 Time parsed_time; local
    [all...]
time.cc 248 Time* parsed_time) {
249 DCHECK((time_string != NULL) && (parsed_time != NULL));
262 *parsed_time = Time(result_time);
time.h 533 static bool FromString(const char* time_string, Time* parsed_time) {
534 return FromStringInternal(time_string, true, parsed_time);
536 static bool FromUTCString(const char* time_string, Time* parsed_time) {
537 return FromStringInternal(time_string, false, parsed_time);
575 Time* parsed_time);

Completed in 88 milliseconds