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

  /libcore/ojluni/src/main/java/java/time/zone/
Ser.java 222 final int offsetSecs = offset.getTotalSeconds();
223 int offsetByte = offsetSecs % 900 == 0 ? offsetSecs / 900 : 127; // compress to -72 to +72
226 out.writeInt(offsetSecs);
  /libcore/ojluni/src/main/java/java/time/
ZoneOffset.java     [all...]
  /libcore/ojluni/src/main/java/java/time/format/
Parsed.java 333 Long offsetSecs = fieldValues.get(OFFSET_SECONDS);
334 if (offsetSecs != null) {
335 ZoneOffset offset = ZoneOffset.ofTotalSeconds(offsetSecs.intValue());
593 Long offsetSecs = fieldValues.get(OFFSET_SECONDS);
594 if (offsetSecs != null) {
595 ZoneOffset offset = ZoneOffset.ofTotalSeconds(offsetSecs.intValue());
  /libcore/ojluni/src/test/java/time/test/java/time/format/
TestZoneOffsetParser.java 323 public void test_parse_bigOffsets(String pattern, String parse, long offsetSecs) throws Exception {
327 assertEquals(parsed.getLong(OFFSET_SECONDS), offsetSecs);

Completed in 144 milliseconds