Lines Matching +full:01 +full:- +full:win32
30 #pragma clang diagnostic ignored "-Wdeprecated-declarations"
36 #pragma mark - GPBTimestampRoot
51 #pragma mark - GPBTimestamp
66 * second table is needed for interpretation, using a [24-hour linear
69 * The range is from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. By
90 * Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`.
96 * // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z
97 * // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z.
99 * timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL));
128 * format is "{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z"
130 * {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional
137 * For example, "2017-01-15T01:30:15.01Z" encodes 15.01 seconds past
138 * 01:30 UTC on January 15, 2017.
142 …* [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects…
146 * the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use
148 * http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D
155 * 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to
156 * 9999-12-31T23:59:59Z inclusive.
161 * Non-negative fractions of a second at nanosecond resolution. Negative
162 * second values with fractions must still have non-negative nanos values