Home
last modified time | relevance | path

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

/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
DTransliteratorRegistry.java97 private String nextSpec; // next spec field in TransliteratorRegistry.Spec
145 return nextSpec != null; in hasFallback()
159 nextSpec = spec; in setupNext()
160 int i = nextSpec.lastIndexOf(LOCALE_SEP); in setupNext()
164 nextSpec = spec.substring(0, i); in setupNext()
167 nextSpec = scriptName; // scriptName may be null in setupNext()
171 if (!Utility.sameObjects(nextSpec, scriptName)) { in setupNext()
172 nextSpec = scriptName; in setupNext()
174 nextSpec = null; in setupNext()
184 spec = nextSpec; in next()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DTransliteratorRegistry.java98 private String nextSpec; // next spec field in TransliteratorRegistry.Spec
146 return nextSpec != null; in hasFallback()
160 nextSpec = spec; in setupNext()
161 int i = nextSpec.lastIndexOf(LOCALE_SEP); in setupNext()
165 nextSpec = spec.substring(0, i); in setupNext()
168 nextSpec = scriptName; // scriptName may be null in setupNext()
172 if (!Utility.sameObjects(nextSpec, scriptName)) { in setupNext()
173 nextSpec = scriptName; in setupNext()
175 nextSpec = null; in setupNext()
185 spec = nextSpec; in next()
/external/icu/icu4c/source/i18n/
Dtransreg.cpp249 UnicodeString nextSpec; member in TransliteratorSpec
310 return nextSpec.length() != 0; in hasFallback()
324 nextSpec = spec; in setupNext()
325 int32_t i = nextSpec.lastIndexOf(LOCALE_SEP); in setupNext()
329 nextSpec.truncate(i); in setupNext()
332 nextSpec = scriptName; // scriptName may be empty in setupNext()
336 nextSpec.truncate(0); in setupNext()
345 spec = nextSpec; in next()