Home
last modified time | relevance | path

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

/external/cldr/tools/cldr-code/src/main/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/cldr-code/src/main/java/org/unicode/cldr/util/
DLocalesTxtReader.java61 int commentPos = line.indexOf('#'); in read() local
62 if (commentPos >= 0) { in read()
63 line = line.substring(0, commentPos); in read()
DSpecialLocales.java203 int commentPos = line.indexOf('#'); in readDataFile() local
204 if (commentPos >= 0) { in readDataFile()
205 line = line.substring(0, commentPos); in readDataFile()
DStandardCodes.java638 int commentPos = line.indexOf('#'); in StandardCodes() local
640 if (commentPos >= 0) { in StandardCodes()
641 comment = line.substring(commentPos + 1).trim(); in StandardCodes()
642 line = line.substring(0, commentPos); in StandardCodes()
898 int commentPos = line.indexOf('#');
899 if (commentPos >= 0) {
900 line = line.substring(0, commentPos);
DZoneParser.java799 int commentPos = line.indexOf("#"); in makeZoneData()
801 if (commentPos >= 0) { in makeZoneData()
802 comment = line.substring(commentPos + 1).trim(); in makeZoneData()
803 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.java832 int commentPos = line.indexOf('#'); in readDataLine() local
833 if (commentPos >= 0) line = line.substring(0, commentPos); in readDataLine()