Searched refs:smallestFieldPosition (Results 1 – 3 of 3) sorted by relevance
/external/icu/icu4c/source/i18n/ |
D | measfmt.cpp | 1056 FieldPosition smallestFieldPosition(smallestField); in formatNumeric() local 1058 dateFmt.format(date, draft, smallestFieldPosition, status); in formatNumeric() 1065 if (smallestFieldPosition.getBeginIndex() != 0 || in formatNumeric() 1066 smallestFieldPosition.getEndIndex() != 0) { in formatNumeric() 1067 appendRange(draft, 0, smallestFieldPosition.getBeginIndex(), appendTo); in formatNumeric() 1075 smallestFieldPosition.getBeginIndex(), in formatNumeric() 1076 smallestFieldPosition.getEndIndex(), in formatNumeric() 1084 smallestFieldPosition.getEndIndex(), in formatNumeric()
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | MeasureFormat.java | 1316 FieldPosition smallestFieldPosition = new FieldPosition(smallestField); in formatNumeric() local 1318 duration, new StringBuffer(), smallestFieldPosition).toString(); in formatNumeric() 1321 if (smallestFieldPosition.getBeginIndex() != 0 in formatNumeric() 1322 || smallestFieldPosition.getEndIndex() != 0) { in formatNumeric() 1324 appendTo.append(draft, 0, smallestFieldPosition.getBeginIndex()); in formatNumeric() 1333 smallestFieldPosition.getBeginIndex(), in formatNumeric() 1334 smallestFieldPosition.getEndIndex()); in formatNumeric() 1341 appendTo.append(draft, smallestFieldPosition.getEndIndex(), draft.length()); in formatNumeric()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | MeasureFormat.java | 1344 FieldPosition smallestFieldPosition = new FieldPosition(smallestField); in formatNumeric() local 1346 duration, new StringBuffer(), smallestFieldPosition).toString(); in formatNumeric() 1349 if (smallestFieldPosition.getBeginIndex() != 0 in formatNumeric() 1350 || smallestFieldPosition.getEndIndex() != 0) { in formatNumeric() 1352 appendTo.append(draft, 0, smallestFieldPosition.getBeginIndex()); in formatNumeric() 1361 smallestFieldPosition.getBeginIndex(), in formatNumeric() 1362 smallestFieldPosition.getEndIndex()); in formatNumeric() 1369 appendTo.append(draft, smallestFieldPosition.getEndIndex(), draft.length()); in formatNumeric()
|