Home
last modified time | relevance | path

Searched refs:lastStarterInDest (Results 1 – 3 of 3) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/impl/
DNormalizer2Impl.java1453 int lastStarterInDest=findPreviousCompBoundary(buffer.getStringBuilder(), in composeAndAppend() local
1455 StringBuilder middle=new StringBuilder((buffer.length()-lastStarterInDest)+ in composeAndAppend()
1457 middle.append(buffer.getStringBuilder(), lastStarterInDest, buffer.length()); in composeAndAppend() local
1458 buffer.removeSuffix(buffer.length()-lastStarterInDest); in composeAndAppend()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DNormalizer2Impl.java1444 int lastStarterInDest=findPreviousCompBoundary(buffer.getStringBuilder(), in composeAndAppend() local
1446 StringBuilder middle=new StringBuilder((buffer.length()-lastStarterInDest)+ in composeAndAppend()
1448 middle.append(buffer.getStringBuilder(), lastStarterInDest, buffer.length()); in composeAndAppend() local
1449 buffer.removeSuffix(buffer.length()-lastStarterInDest); in composeAndAppend()
/external/icu/icu4c/source/common/
Dnormalizer2impl.cpp1707 const UChar *lastStarterInDest=findPreviousCompBoundary(buffer.getStart(), in composeAndAppend() local
1709 int32_t destSuffixLength=(int32_t)(buffer.getLimit()-lastStarterInDest); in composeAndAppend()
1710 UnicodeString middle(lastStarterInDest, destSuffixLength); in composeAndAppend()