Searched refs:commentPos (Results 1 – 8 of 8) 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 | 34 int commentPos = line.indexOf('#'); in main() local 35 if (commentPos >= 0) { in main() 36 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 | 158 int commentPos = line.indexOf('#'); in SpecialLocales() local 159 if (commentPos >= 0) { in SpecialLocales() 160 line = line.substring(0, commentPos); in SpecialLocales()
|
D | StandardCodes.java | 518 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);
|
D | ZoneParser.java | 756 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/ |
D | CollationPerformanceTest.java | 1057 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()
|
D | PerfTest.java | 805 int commentPos = line.indexOf('#'); in readDataLine() local 806 if (commentPos >= 0) line = line.substring(0, commentPos); in readDataLine()
|