Searched refs:commentPos (Results 1 – 9 of 9) sorted by relevance
/external/cldr/tools/cldr-code/src/main/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/cldr-code/src/main/java/org/unicode/cldr/util/ |
D | LocalesTxtReader.java | 61 int commentPos = line.indexOf('#'); in read() local 62 if (commentPos >= 0) { in read() 63 line = line.substring(0, commentPos); in read()
|
D | SpecialLocales.java | 203 int commentPos = line.indexOf('#'); in readDataFile() local 204 if (commentPos >= 0) { in readDataFile() 205 line = line.substring(0, commentPos); in readDataFile()
|
D | StandardCodes.java | 638 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);
|
D | ZoneParser.java | 799 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/ |
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 | 832 int commentPos = line.indexOf('#'); in readDataLine() local 833 if (commentPos >= 0) line = line.substring(0, commentPos); in readDataLine()
|