Lines Matching refs:choiceLimits
250 choiceLimits = new double[count];
251 System.arraycopy(newChoiceLimits, 0, choiceLimits, 0, count);
261 for (int i = 0; i < choiceLimits.length; ++i) {
268 double less = previousDouble(choiceLimits[i]);
269 double tryLessOrEqual = Math.abs(Math.IEEEremainder(choiceLimits[i], 1.0d));
273 result.append(""+choiceLimits[i]);
276 if (choiceLimits[i] == Double.POSITIVE_INFINITY) {
278 } else if (choiceLimits[i] == Double.NEGATIVE_INFINITY) {
341 choiceLimits = limits;
350 return choiceLimits;
385 for (i = 0; i < choiceLimits.length; ++i) {
386 if (!(number >= choiceLimits[i])) {
387 // same as number < choiceLimits, except catchs NaN
419 tempNumber = choiceLimits[i];
460 other.choiceLimits = (double[]) choiceLimits.clone();
469 int result = choiceLimits.length;
487 return (Arrays.equals(choiceLimits, other.choiceLimits)
498 if (choiceLimits.length != choiceFormats.length) {
509 * <code>choiceLimits[i]</code> and less than <code>choiceLimits[i+1]</code>.
512 private double[] choiceLimits;
517 * <code>choiceLimits[i]</code> and less than <code>choiceLimits[i+1]</code>.