Home
last modified time | relevance | path

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

/external/icu/android_icu4j/src/main/java/android/icu/impl/
DNormalizer2Impl.java1603 int lastBoundaryInDest=findPreviousFCDBoundary(buffer.getStringBuilder(), in makeFCDAndAppend() local
1605 StringBuilder middle=new StringBuilder((buffer.length()-lastBoundaryInDest)+ in makeFCDAndAppend()
1607 middle.append(buffer.getStringBuilder(), lastBoundaryInDest, buffer.length()); in makeFCDAndAppend() local
1608 buffer.removeSuffix(buffer.length()-lastBoundaryInDest); in makeFCDAndAppend()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DNormalizer2Impl.java1594 int lastBoundaryInDest=findPreviousFCDBoundary(buffer.getStringBuilder(), in makeFCDAndAppend() local
1596 StringBuilder middle=new StringBuilder((buffer.length()-lastBoundaryInDest)+ in makeFCDAndAppend()
1598 middle.append(buffer.getStringBuilder(), lastBoundaryInDest, buffer.length()); in makeFCDAndAppend() local
1599 buffer.removeSuffix(buffer.length()-lastBoundaryInDest); in makeFCDAndAppend()
/external/icu/icu4c/source/common/
Dnormalizer2impl.cpp2278 const UChar *lastBoundaryInDest=findPreviousFCDBoundary(buffer.getStart(), in makeFCDAndAppend() local
2280 int32_t destSuffixLength=(int32_t)(buffer.getLimit()-lastBoundaryInDest); in makeFCDAndAppend()
2281 UnicodeString middle(lastBoundaryInDest, destSuffixLength); in makeFCDAndAppend()