OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:newLimits
(Results
1 - 2
of
2
) sorted by null
/external/icu4c/i18n/
choicfmt.cpp
339
double *
newLimits
= (double*) uprv_malloc( sizeof(double) * count);
341
if (
newLimits
== 0) {
349
uprv_free(
newLimits
);
356
uprv_free(
newLimits
);
403
newLimits
[k] = limit;
406
if (k > 0 && limit <=
newLimits
[k-1]) {
412
if (!(limit ==
newLimits
[k-1] &&
444
fChoiceLimits =
newLimits
;
452
uprv_free(
newLimits
);
/libcore/luni/src/main/java/java/text/
ChoiceFormat.java
157
double[]
newLimits
= new double[limitCount * 2];
158
System.arraycopy(limits, 0,
newLimits
, 0, limitCount);
159
limits =
newLimits
;
Completed in 2250 milliseconds