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

/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DTransliteratorRegistry.java98 private String nextSpec; // next spec field in class:TransliteratorRegistry.Spec
101 private boolean isNextLocale; // TRUE if nextSpec is a locale
146 return nextSpec != null;
160 nextSpec = spec;
161 int i = nextSpec.lastIndexOf(LOCALE_SEP);
165 nextSpec = spec.substring(0, i);
168 nextSpec = scriptName; // scriptName may be null
172 if (!Utility.sameObjects(nextSpec, scriptName)) {
173 nextSpec = scriptName;
175 nextSpec
[all...]
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DTransliteratorRegistry.java97 private String nextSpec; // next spec field in class:TransliteratorRegistry.Spec
100 private boolean isNextLocale; // TRUE if nextSpec is a locale
145 return nextSpec != null;
159 nextSpec = spec;
160 int i = nextSpec.lastIndexOf(LOCALE_SEP);
164 nextSpec = spec.substring(0, i);
167 nextSpec = scriptName; // scriptName may be null
171 if (!Utility.sameObjects(nextSpec, scriptName)) {
172 nextSpec = scriptName;
174 nextSpec
[all...]
/external/icu/icu4c/source/i18n/
H A Dtransreg.cpp249 UnicodeString nextSpec; member in class:TransliteratorSpec
252 UBool isNextLocale; // TRUE if nextSpec is a locale
310 return nextSpec.length() != 0;
324 nextSpec = spec;
325 int32_t i = nextSpec.lastIndexOf(LOCALE_SEP);
329 nextSpec.truncate(i);
332 nextSpec = scriptName; // scriptName may be empty
336 nextSpec.truncate(0);
345 spec = nextSpec;

Completed in 370 milliseconds