Home
last modified time | relevance | path

Searched refs:parseTimestamp (Results 1 – 5 of 5) sorted by relevance

/external/protobuf/java/util/src/test/java/com/google/protobuf/util/
DTimeUtilTest.java47 Timestamp start = TimeUtil.parseTimestamp("0001-01-01T00:00:00Z"); in testTimestampStringFormat()
48 Timestamp end = TimeUtil.parseTimestamp("9999-12-31T23:59:59.999999999Z"); in testTimestampStringFormat()
56 Timestamp value = TimeUtil.parseTimestamp("1970-01-01T00:00:00Z"); in testTimestampStringFormat()
61 value = TimeUtil.parseTimestamp("1969-12-31T23:59:59.999Z"); in testTimestampStringFormat()
75 value = TimeUtil.parseTimestamp("1970-01-01T00:00:00.010+08:00"); in testTimestampStringFormat()
77 value = TimeUtil.parseTimestamp("1970-01-01T00:00:00.010-08:00"); in testTimestampStringFormat()
98 result = TimeUtil.parseTimestamp(strings[index]); in run()
123 timestampValues[i] = TimeUtil.parseTimestamp(timestampStrings[i]); in testTimestampConcurrentParsing()
187 TimeUtil.parseTimestamp("0000-01-01T00:00:00Z"); in testTimetampInvalidFormat()
195 TimeUtil.parseTimestamp("10000-01-01T00:00:00Z"); in testTimetampInvalidFormat()
[all …]
DJsonFormatTest.java713 .setTimestampValue(TimeUtil.parseTimestamp("1970-01-01T00:00:00Z")) in testTimestamp()
911 anyMessage = Any.pack(TimeUtil.parseTimestamp("1969-12-31T23:59:59Z")); in testAnyFields()
/external/v8/tools/
Dparse-processor.js76 this.parseTimestamp = -1;
100 this.deserializationTimestamp, this.parseTimestamp,
105 this.deserializationTimestamp, this.parseTimestamp,
646 this.parseTimestamp + this.parseDuration,
1000 if (funktion.parseTimestamp > 0) return;
1001 funktion.parseTimestamp = startOf(timestamp, duration);
1008 funktion.parseTimestamp = startOf(timestamp, duration);
1017 script.parseTimestamp = ts;
/external/protobuf/java/util/src/main/java/com/google/protobuf/util/
DTimeUtil.java128 public static Timestamp parseTimestamp(String value) throws ParseException { in parseTimestamp() method in TimeUtil
DJsonFormat.java1197 Timestamp value = TimeUtil.parseTimestamp(json.getAsString()); in mergeTimestamp()