Home
last modified time | relevance | path

Searched refs:commentPos (Results 1 – 8 of 8) 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.java34 int commentPos = line.indexOf('#'); in main() local
35 if (commentPos >= 0) { in main()
36 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.java158 int commentPos = line.indexOf('#'); in SpecialLocales() local
159 if (commentPos >= 0) { in SpecialLocales()
160 line = line.substring(0, commentPos); in SpecialLocales()
DStandardCodes.java518 int commentPos = line.indexOf('#'); in loadPlatformLocaleStatus() local
519 if (commentPos >= 0) { in loadPlatformLocaleStatus()
520 line = line.substring(0, commentPos); in loadPlatformLocaleStatus()
690 int commentPos = line.indexOf('#'); in StandardCodes() local
692 if (commentPos >= 0) { in StandardCodes()
693 comment = line.substring(commentPos + 1).trim(); in StandardCodes()
694 line = line.substring(0, commentPos); in StandardCodes()
950 int commentPos = line.indexOf('#');
951 if (commentPos >= 0) {
952 line = line.substring(0, commentPos);
DZoneParser.java756 int commentPos = line.indexOf("#"); in makeZoneData()
758 if (commentPos >= 0) { in makeZoneData()
759 comment = line.substring(commentPos + 1).trim(); in makeZoneData()
760 line = line.substring(0, commentPos); in makeZoneData()
/external/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/
DCollationPerformanceTest.java1057 int commentPos = line.indexOf('#'); in readDataLine() local
1058 if (commentPos >= 0) line = line.substring(0, commentPos); in readDataLine()
1145 int commentPos = line.indexOf('#'); in getCollationRules() local
1146 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()