Home
last modified time | relevance | path

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

/external/cldr/tools/java/org/unicode/cldr/tool/
DCheckLangTagBNF.java73 int hashPos = line.indexOf('#'); in setFromFile() local
74 if (hashPos >= 0) line = line.substring(0, hashPos); in setFromFile()
240 int hashPos = test.indexOf('#'); in main() local
241 if (hashPos >= 0) test = test.substring(0, hashPos); in main()
/external/cldr/tools/java/org/unicode/cldr/icu/
DExtractICUData.java216 int hashPos = line.indexOf('#'); in fixTransRule() local
218 if (hashPos >= 0 && line.indexOf('\'', hashPos) < 0) { in fixTransRule()
219 String core = line.substring(0, hashPos).trim(); in fixTransRule()
220 String comment = line.substring(hashPos + 1).trim(); in fixTransRule()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DUnicodeRegex.java384 int hashPos = line.indexOf(bnfCommentString);
385 if (hashPos >= 0) line = line.substring(0, hashPos);
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DUnicodeRegex.java386 int hashPos = line.indexOf(bnfCommentString);
387 if (hashPos >= 0) line = line.substring(0, hashPos);
/external/icu/icu4c/source/i18n/
Drepattrn.cpp141 int32_t hashPos = UHASH_FIRST; in operator =() local
142 while (const UHashElement *hashEl = uhash_nextElement(other.fNamedCaptureMap, &hashPos)) { in operator =()