Home
last modified time | relevance | path

Searched refs:startThis (Results 1 – 7 of 7) sorted by relevance

/external/icu/icu4c/source/test/intltest/
Dnumbertest_stringbuilder.cpp82 const int32_t startThis; in testSplice() member
105 sb1.replace(cas.startThis, cas.endThis - cas.startThis, replacement); in testSplice()
108 …sb2.splice(cas.startThis, cas.endThis, replacement, 0, replacement.length(), UNUM_FIELD_COUNT, sta… in testSplice()
118 … sb1.replace(cas.startThis, cas.endThis - cas.startThis, UnicodeString(replacement, 1, 2)); in testSplice()
121 sb2.splice(cas.startThis, cas.endThis, replacement, 1, 3, UNUM_FIELD_COUNT, status); in testSplice()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/
DNumberStringBuilderTest.java88 int startThis = (Integer) cas[1]; in testSplice() local
94 sb1.replace(startThis, endThis, replacement); in testSplice()
97 sb2.splice(startThis, endThis, replacement, 0, replacement.length(), null); in testSplice()
106 sb1.replace(startThis, endThis, replacement.substring(1, 3)); in testSplice()
109 sb2.splice(startThis, endThis, replacement, 1, 3, null); in testSplice()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/number/
DNumberStringBuilderTest.java91 int startThis = (Integer) cas[1]; in testSplice() local
97 sb1.replace(startThis, endThis, replacement); in testSplice()
100 sb2.splice(startThis, endThis, replacement, 0, replacement.length(), null); in testSplice()
109 sb1.replace(startThis, endThis, replacement.substring(1, 3)); in testSplice()
112 sb2.splice(startThis, endThis, replacement, 1, 3, null); in testSplice()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
DNumberStringBuilder.java183 int startThis,
189 int thisLength = endThis - startThis;
195 position = prepareForInsert(startThis, count);
198 position = remove(startThis, -count);
/external/icu/android_icu4j/src/main/java/android/icu/impl/number/
DNumberStringBuilder.java185 int startThis,
191 int thisLength = endThis - startThis;
197 position = prepareForInsert(startThis, count);
200 position = remove(startThis, -count);
/external/icu/icu4c/source/i18n/
Dnumber_stringbuilder.cpp194 NumberStringBuilder::splice(int32_t startThis, int32_t endThis, const UnicodeString &unistr, in splice() argument
196 int32_t thisLength = endThis - startThis; in splice()
202 position = prepareForInsert(startThis, count, status); in splice()
205 position = remove(startThis, -count); in splice()
Dnumber_stringbuilder.h81 int32_t splice(int32_t startThis, int32_t endThis, const UnicodeString &unistr,