Lines Matching +full:01 +full:- +full:win32
2 // NO CHECKED-IN PROTOBUF GENCODE
3 // clang-format off
20 #pragma clang diagnostic ignored "-Wdeprecated-declarations"
26 #pragma mark - GPBTimestampRoot
41 #pragma mark - GPBTimestamp
56 * second table is needed for interpretation, using a [24-hour linear
59 * The range is from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. By
80 * Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`.
86 * // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z
87 * // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z.
89 * timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL));
116 * format is "{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z"
118 * {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional
125 * For example, "2017-01-15T01:30:15.01Z" encodes 15.01 seconds past
126 * 01:30 UTC on January 15, 2017.
130 …* [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects…
134 * the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use
136 * http://joda-time.sourceforge.net/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime()
143 * 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to
144 * 9999-12-31T23:59:59Z inclusive.
149 * Non-negative fractions of a second at nanosecond resolution. Negative
150 * second values with fractions must still have non-negative nanos values
156 // NOTE: There are some Objective-C specific methods/properties in
169 // clang-format on