Home
last modified time | relevance | path

Searched refs:commentPos (Results 1 – 9 of 9) sorted by relevance

/external/cldr/tools/java/org/unicode/cldr/draft/
DUnicodeMapBuilder.java132 final int commentPos = line.indexOf('#'); in readDataLine() local
133 if (commentPos >= 0) { in readDataLine()
134 line = line.substring(0, commentPos); in readDataLine()
DStateMachineTest.java33 int commentPos = line.indexOf('#'); in main() local
34 if (commentPos >= 0) { in main()
35 line = line.substring(0, commentPos); in main()
DStateMachineBuilder.java105 int commentPos = rule.indexOf('#'); in add() local
106 if (commentPos >= 0 && !rule.startsWith("'#")) { in add()
107 rule = rule.substring(0, commentPos).trim(); in add()
/external/cldr/tools/java/org/unicode/cldr/util/
DSpecialLocales.java138 int commentPos = line.indexOf('#'); in SpecialLocales() local
139 if (commentPos >= 0) { in SpecialLocales()
140 line = line.substring(0, commentPos); in SpecialLocales()
DStandardCodes.java516 int commentPos = line.indexOf('#'); in loadPlatformLocaleStatus() local
517 if (commentPos >= 0) { in loadPlatformLocaleStatus()
518 line = line.substring(0, commentPos); in loadPlatformLocaleStatus()
688 int commentPos = line.indexOf('#'); in StandardCodes() local
690 if (commentPos >= 0) { in StandardCodes()
691 comment = line.substring(commentPos + 1).trim(); in StandardCodes()
692 line = line.substring(0, commentPos); in StandardCodes()
948 int commentPos = line.indexOf('#');
949 if (commentPos >= 0) {
950 line = line.substring(0, commentPos);
DZoneParser.java749 int commentPos = line.indexOf("#"); in makeZoneData()
751 if (commentPos >= 0) { in makeZoneData()
752 comment = line.substring(commentPos + 1).trim(); in makeZoneData()
753 line = line.substring(0, commentPos); in makeZoneData()
/external/cldr/tools/java/org/unicode/cldr/icu/
DCollationMapper.java189 int commentPos = Utility.quotedIndexOf(line, 0, line.length(), "#");
190 if (commentPos > -1) {
191 line = line.substring(0, commentPos);
/external/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/
DCollationPerformanceTest.java1048 int commentPos = line.indexOf('#'); in readDataLine() local
1049 if (commentPos >= 0) line = line.substring(0, commentPos); in readDataLine()
1136 int commentPos = line.indexOf('#'); in getCollationRules() local
1137 if (commentPos >= 0) line = line.substring(0, commentPos); in getCollationRules()
DPerfTest.java805 int commentPos = line.indexOf('#'); in readDataLine() local
806 if (commentPos >= 0) line = line.substring(0, commentPos); in readDataLine()