Searched refs:totalSecs (Results 1 – 2 of 2) sorted by relevance
413 Integer totalSecs = totalSeconds; in ofTotalSeconds() local414 ZoneOffset result = SECONDS_CACHE.get(totalSecs); in ofTotalSeconds()417 SECONDS_CACHE.putIfAbsent(totalSecs, result); in ofTotalSeconds()418 result = SECONDS_CACHE.get(totalSecs); in ofTotalSeconds()
3667 int totalSecs = Math.toIntExact(offsetSecs); in format() local3668 if (totalSecs == 0) { in format()3671 … int absHours = Math.abs((totalSecs / 3600) % 100); // anything larger than 99 silently dropped in format()3672 int absMinutes = Math.abs((totalSecs / 60) % 60); in format()3673 int absSeconds = Math.abs(totalSecs % 60); in format()3676 buf.append(totalSecs < 0 ? "-" : "+"); in format()3974 int totalSecs = Math.toIntExact(offsetSecs); in format() local3975 if (totalSecs != 0) { in format()3976 … int absHours = Math.abs((totalSecs / 3600) % 100); // anything larger than 99 silently dropped in format()3977 int absMinutes = Math.abs((totalSecs / 60) % 60); in format()[all …]