OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:choicelimits
(Results
1 - 2
of
2
) sorted by null
/libcore/luni/src/main/java/java/text/
ChoiceFormat.java
75
private double[]
choiceLimits
;
134
choiceLimits
= limits;
136
choiceLimits
= new double[limitCount];
137
System.arraycopy(limits, 0,
choiceLimits
, 0, limitCount);
151
choiceLimits
= EmptyArray.DOUBLE;
196
clone.
choiceLimits
=
choiceLimits
.clone();
221
return Arrays.equals(
choiceLimits
, choice.
choiceLimits
)
240
for (int i =
choiceLimits
.length - 1; i >= 0; i--)
[
all
...]
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
ChoiceFormatTest.java
149
double[]
choiceLimits
= { -1, 0, 1, ChoiceFormat.nextDouble(1) };
156
choiceLimits
));
178
choiceLimits
[0] = ChoiceFormat.nextDouble(-1);
180
choiceLimits
));
Completed in 80 milliseconds