Lines Matching defs:seconds
60 * as a count of seconds and fractions of seconds at nanosecond
74 * duration.seconds = end.seconds - start.seconds;
77 * if (duration.seconds < 0 && duration.nanos > 0) {
78 * duration.seconds += 1;
80 * } else if (duration.seconds > 0 && duration.nanos < 0) {
81 * duration.seconds -= 1;
91 * end.seconds = start.seconds + duration.seconds;
95 * end.seconds -= 1;
98 * end.seconds += 1;
111 * object, where the string ends in the suffix "s" (indicating seconds) and
112 * is preceded by the number of seconds, with nanoseconds expressed as
113 * fractional seconds. For example, 3 seconds with 0 nanoseconds should be
114 * encoded in JSON format as "3s", while 3 seconds and 1 nanosecond should
115 * be expressed in JSON format as "3.000000001s", and 3 seconds and 1
121 * Signed seconds of the span of time. Must be from -315,576,000,000
125 @property(nonatomic, readwrite) int64_t seconds;
130 * `seconds` field and a positive or negative `nanos` field. For durations
132 * of the same sign as the `seconds` field. Must be from -999,999,999