Home
last modified time | relevance | path

Searched refs:typeEnd (Results 1 – 5 of 5) sorted by relevance

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
DInternalLocaleBuilder.java587 int typeEnd = -1; in setUnicodeLocaleExtension() local
592 assert(typeStart == -1 || typeEnd != -1); in setUnicodeLocaleExtension()
593 type = (typeStart == -1) ? "" : subtags.substring(typeStart, typeEnd); in setUnicodeLocaleExtension()
602 typeStart = typeEnd = -1; in setUnicodeLocaleExtension()
607 typeEnd = itr.currentEnd(); in setUnicodeLocaleExtension()
622 assert(typeStart == -1 || typeEnd != -1); in setUnicodeLocaleExtension()
623 type = (typeStart == -1) ? "" : subtags.substring(typeStart, typeEnd); in setUnicodeLocaleExtension()
/external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
DInternalLocaleBuilder.java591 int typeEnd = -1; in setUnicodeLocaleExtension() local
596 assert(typeStart == -1 || typeEnd != -1); in setUnicodeLocaleExtension()
597 type = (typeStart == -1) ? "" : subtags.substring(typeStart, typeEnd); in setUnicodeLocaleExtension()
606 typeStart = typeEnd = -1; in setUnicodeLocaleExtension()
611 typeEnd = itr.currentEnd(); in setUnicodeLocaleExtension()
626 assert(typeStart == -1 || typeEnd != -1); in setUnicodeLocaleExtension()
627 type = (typeStart == -1) ? "" : subtags.substring(typeStart, typeEnd); in setUnicodeLocaleExtension()
/external/cldr/tools/java/org/unicode/cldr/util/
DPathDescription.java141 int typeEnd = description.indexOf(';'); in getDescription() local
142 String type = description.substring(4, typeEnd).trim(); in getDescription()
143 description = description.substring(typeEnd + 1).trim(); in getDescription()
/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/android/
DResTable.java1183 int typeEnd = -1;
1189 else if (p == '/') typeEnd = pIndex;
1209 if (typeEnd != -1) {
1210 type = nameString.substring(nameIndex, typeEnd);
1211 nameIndex = typeEnd+1;
/external/skqp/tools/bookmaker/
DmdOut.cpp1049 const char* typeEnd = nullptr; in getMemberTypeName() local
1062 typeEnd = spaceLoc; in getMemberTypeName()
1066 SkASSERT(typeEnd); in getMemberTypeName()
1067 *memberType = string(typeStart, (int) (typeEnd - typeStart)); in getMemberTypeName()