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

/libcore/ojluni/src/main/java/java/text/
H A DChoiceFormat.java251 choiceLimits = new double[count];
252 System.arraycopy(newChoiceLimits, 0, choiceLimits, 0, count);
264 for (int i = 0; i < choiceLimits.length; ++i) {
271 double less = previousDouble(choiceLimits[i]);
272 double tryLessOrEqual = Math.abs(Math.IEEEremainder(choiceLimits[i], 1.0d));
276 result.append(""+choiceLimits[i]);
279 if (choiceLimits[i] == Double.POSITIVE_INFINITY) {
281 } else if (choiceLimits[i] == Double.NEGATIVE_INFINITY) {
349 choiceLimits = Arrays.copyOf(limits, limits.length);
359 double[] newLimits = Arrays.copyOf(choiceLimits, choiceLimit
530 private double[] choiceLimits; field in class:ChoiceFormat
[all...]

Completed in 139 milliseconds