HomeSort by relevance Sort by last modified time
    Searched defs:choiceLimits (Results 1 - 2 of 2) sorted by null

  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
ChoiceFormatTest.java 151 double[] choiceLimits = { -1, 0, 1, ChoiceFormat.nextDouble(1) };
158 choiceLimits));
180 choiceLimits[0] = ChoiceFormat.nextDouble(-1);
182 choiceLimits));
  /libcore/ojluni/src/main/java/java/text/
ChoiceFormat.java 250 choiceLimits = new double[count];
251 System.arraycopy(newChoiceLimits, 0, choiceLimits, 0, count);
263 for (int i = 0; i < choiceLimits.length; ++i) {
270 double less = previousDouble(choiceLimits[i]);
271 double tryLessOrEqual = Math.abs(Math.IEEEremainder(choiceLimits[i], 1.0d));
275 result.append(""+choiceLimits[i]);
278 if (choiceLimits[i] == Double.POSITIVE_INFINITY) {
280 } else if (choiceLimits[i] == Double.NEGATIVE_INFINITY) {
348 choiceLimits = Arrays.copyOf(limits, limits.length);
357 double[] newLimits = Arrays.copyOf(choiceLimits, choiceLimits.length)
    [all...]

Completed in 177 milliseconds