Searched refs:commentPos (Results 1 – 9 of 9) sorted by relevance
/external/cldr/tools/java/org/unicode/cldr/draft/ |
D | UnicodeMapBuilder.java | 132 final int commentPos = line.indexOf('#'); in readDataLine() local 133 if (commentPos >= 0) { in readDataLine() 134 line = line.substring(0, commentPos); in readDataLine()
|
D | StateMachineTest.java | 33 int commentPos = line.indexOf('#'); in main() local 34 if (commentPos >= 0) { in main() 35 line = line.substring(0, commentPos); in main()
|
D | StateMachineBuilder.java | 105 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/ |
D | SpecialLocales.java | 138 int commentPos = line.indexOf('#'); in SpecialLocales() local 139 if (commentPos >= 0) { in SpecialLocales() 140 line = line.substring(0, commentPos); in SpecialLocales()
|
D | StandardCodes.java | 516 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);
|
D | ZoneParser.java | 749 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/ |
D | CollationMapper.java | 189 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/ |
D | CollationPerformanceTest.java | 1048 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()
|
D | PerfTest.java | 805 int commentPos = line.indexOf('#'); in readDataLine() local 806 if (commentPos >= 0) line = line.substring(0, commentPos); in readDataLine()
|