Home
last modified time | relevance | path

Searched refs:segmentStandins (Results 1 – 4 of 4) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/text/
DTransliteratorParser.java79 private StringBuffer segmentStandins; field in TransliteratorParser
1146 segmentStandins = new StringBuffer(); in parseRule()
1228 if (segmentStandins.length() > segmentObjects.size()) { in parseRule()
1231 for (int i=0; i<segmentStandins.length(); ++i) { in parseRule()
1232 if (segmentStandins.charAt(i) == 0) { in parseRule()
1488 if (segmentStandins.length() < seg) { in getSegmentStandin()
1489 segmentStandins.setLength(seg); in getSegmentStandin()
1491 char c = segmentStandins.charAt(seg-1); in getSegmentStandin()
1501 segmentStandins.setCharAt(seg-1, c); in getSegmentStandin()
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
DTransliteratorParser.java78 private StringBuffer segmentStandins; field in TransliteratorParser
1145 segmentStandins = new StringBuffer(); in parseRule()
1227 if (segmentStandins.length() > segmentObjects.size()) { in parseRule()
1230 for (int i=0; i<segmentStandins.length(); ++i) { in parseRule()
1231 if (segmentStandins.charAt(i) == 0) { in parseRule()
1487 if (segmentStandins.length() < seg) { in getSegmentStandin()
1488 segmentStandins.setLength(seg); in getSegmentStandin()
1490 char c = segmentStandins.charAt(seg-1); in getSegmentStandin()
1500 segmentStandins.setCharAt(seg-1, c); in getSegmentStandin()
/external/icu/icu4c/source/i18n/
Drbt_pars.cpp1276 segmentStandins.truncate(0); in parseRule()
1369 if (segmentStandins.length() > segmentObjects.size()) { in parseRule()
1372 for (i=0; i<segmentStandins.length(); ++i) { in parseRule()
1373 if (segmentStandins.charAt(i) == 0) { in parseRule()
1550 while (segmentStandins.length() < seg) { in getSegmentStandin()
1551 segmentStandins.append(empty); in getSegmentStandin()
1553 UChar c = segmentStandins.charAt(seg-1); in getSegmentStandin()
1564 segmentStandins.setCharAt(seg-1, c); in getSegmentStandin()
Drbt_pars.h94 UnicodeString segmentStandins; variable