Searched defs:checkedAdd (Results 1 - 1 of 1) sorted by relevance

/libcore/luni/src/main/java/libcore/util/
H A DZoneInfo.java754 int wallTimeSeconds = checkedAdd(timeSeconds, offsetSeconds);
891 int adjustedWallTimeSeconds = checkedAdd(oldWallTimeSeconds, adjustmentSeconds);
1229 int endWallTimeSeconds = checkedAdd(timeZone.mTransitions[0], rawOffsetSeconds);
1241 endWallTimeSeconds = checkedAdd(timeZone.mTransitions[transitionIndex + 1],
1246 checkedAdd(timeZone.mTransitions[transitionIndex], totalOffsetSeconds);
1291 private static int checkedAdd(long a, int b) throws CheckedArithmeticException { method in class:ZoneInfo
1292 // Adapted from Guava IntMath.checkedAdd();

Completed in 30 milliseconds