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

  /external/libchrome/base/time/
time_to_iso8601.cc 13 Time::Exploded exploded; local
14 t.UTCExplode(&exploded);
15 return StringPrintf("%04d-%02d-%02dT%02d:%02d:%02d.%03dZ", exploded.year,
16 exploded.month, exploded.day_of_month, exploded.hour,
17 exploded.minute, exploded.second, exploded.millisecond)
    [all...]
time_unittest.cc 36 // 31 on a 28-30 day month. Test |exploded| returns Time(0) on 31st of
40 Time::Exploded explode;
156 // C library time and exploded time.
167 Time::Exploded exploded; local
168 our_time_1.UTCExplode(&exploded);
171 EXPECT_EQ(tms.tm_year + 1900, exploded.year);
172 EXPECT_EQ(tms.tm_mon + 1, exploded.month);
173 EXPECT_EQ(tms.tm_mday, exploded.day_of_month);
174 EXPECT_EQ(tms.tm_hour, exploded.hour)
213 Time::Exploded exploded; local
274 Time::Exploded exploded; local
288 Time::Exploded exploded; local
297 Time::Exploded exploded; local
327 Time::Exploded exploded; local
335 Time::Exploded exploded; local
343 Time::Exploded exploded; local
502 Time::Exploded exploded; local
713 Time::Exploded exploded = {0}; local
1198 Time::Exploded exploded; local
    [all...]
time_exploded_posix.cc 128 void Time::Explode(bool is_local, Exploded* exploded) const {
129 // Time stores times with microsecond resolution, but Exploded only carries
136 int millisecond; // Exploded millisecond value (0-999).
157 exploded->year = timestruct.tm_year + 1900;
158 exploded->month = timestruct.tm_mon + 1;
159 exploded->day_of_week = timestruct.tm_wday;
160 exploded->day_of_month = timestruct.tm_mday;
161 exploded->hour = timestruct.tm_hour;
162 exploded->minute = timestruct.tm_min
    [all...]
time.cc 296 Exploded exploded; local
297 LocalExplode(&exploded);
298 exploded.hour = 0;
299 exploded.minute = 0;
300 exploded.second = 0;
301 exploded.millisecond = 0;
303 if (FromLocalExploded(exploded, &out_time))
332 bool Time::ExplodedMostlyEquals(const Exploded& lhs, const Exploded& rhs)
340 Time::Exploded exploded; local
    [all...]
time.h 496 // Represents an exploded time that can be formatted nicely. This is kind of
499 struct BASE_EXPORT Exploded {
512 // Exploded value can be successfully converted to a Time value.
628 // Converts an exploded structure representing either the local time or UTC
631 static bool FromUTCExploded(const Exploded& exploded,
633 return FromExploded(false, exploded, time);
635 static bool FromLocalExploded(const Exploded& exploded,
637 return FromExploded(true, exploded, time)
    [all...]
  /external/libchrome/crypto/
nss_util_unittest.cc 21 base::Time::Exploded exploded; local
22 exploded.year = prxtime.tm_year = 2011;
23 exploded.month = 12;
25 // PRExplodedTime::tm_wday is a smaller type than Exploded::day_of_week, so
28 exploded.day_of_week = prxtime.tm_wday = 0; // Should be unused.
29 exploded.day_of_month = prxtime.tm_mday = 10;
30 exploded.hour = prxtime.tm_hour = 2;
31 exploded.minute = prxtime.tm_min = 52;
32 exploded.second = prxtime.tm_sec = 19
    [all...]
  /external/libchrome/base/metrics/
persistent_histogram_storage.cc 85 Time::Exploded exploded; local
86 Time::Now().LocalExplode(&exploded);
89 .AppendASCII(StringPrintf("%04d%02d%02d%02d%02d%02d", exploded.year,
90 exploded.month, exploded.day_of_month,
91 exploded.hour, exploded.minute,
92 exploded.second))
field_trial.cc 104 Time::Exploded exploded; local
105 exploded.year = year;
106 exploded.month = month;
107 exploded.day_of_week = 0; // Should be unused.
108 exploded.day_of_month = day_of_month;
109 exploded.hour = 0;
110 exploded.minute = 0;
111 exploded.second = 0;
112 exploded.millisecond = 0
504 Time::Exploded exploded; local
    [all...]
field_trial_unittest.cc 48 Time::Exploded exploded; local
49 one_year_before_build_time.LocalExplode(&exploded);
50 return exploded.year;
    [all...]
  /external/libchrome/base/third_party/nspr/
prtime.h 197 PR_ImplodeTime(const PRExplodedTime *exploded); variable
200 * Adjust exploded time to normalize field overflows after manipulation.
212 PRExplodedTime *exploded, PRTimeParamFn params);
prtime.cc 137 PR_ImplodeTime(const PRExplodedTime *exploded)
148 copy = *exploded;
    [all...]
  /cts/tests/tests/location/src/android/location/cts/asn1/base/
Asn1IA5String.java 257 ByteBuffer exploded = ByteBuffer.allocate(count); local
260 exploded.put(reader.readByte());
262 exploded.put((byte) reader.readLowBits(characterBitCount));
265 exploded.flip();
268 CharBuffer valueCharacters = charset.newDecoder().decode(exploded);
  /external/python/cpython3/Lib/test/
test_ipaddress.py     [all...]
  /external/python/cpython3/Lib/
ipaddress.py 392 def exploded(self): member in class:_IPAddressBase
    [all...]

Completed in 789 milliseconds