Home
last modified time | relevance | path

Searched refs:tsvFile (Results 1 – 3 of 3) sorted by relevance

/external/cldr/tools/java/org/unicode/cldr/tool/
DGenerateSidewaysView.java212 Output<PrintWriter> tsvFile = new Output<>(); in main() local
218 … out = start(out, main, headerString, path.getSection() + ":" + path.getPage(), tsvFile); in main()
260 tsvFile.value.print( in main()
279 tsvFile.value.print("\u00B7" + locale + "\u00B7"); in main()
282 tsvFile.value.print("\u00B7" + locale + "\u00B7"); in main()
290 tsvFile.value.print("\u00B7" + locale + "\u00B7"); in main()
296 tsvFile.value.print("\u00B7all-others\u00B7"); in main()
299 tsvFile.value.println(); in main()
303 showExemplars(out, headerString, pair[0], pair[1], pair[2], tsvFile); in main()
305 finish(out, tsvFile.value); in main()
[all …]
DChartDelta.java245 …try (PrintWriter tsvFile = FileUtilities.openUTF8Writer(getTsvDir(DIR, DIR_NAME), DIR_NAME + ".tsv… in writeLdml() argument
248 tsvFile.println("# Section\tPage\tHeader\tCode\tLocale\tOld\tNew\tLevel"); in writeLdml()
401 writeDiffs(anchors, base, diff, tsvFile, counts); in writeLdml()
407 tsvFile.println("# EOF"); in writeLdml()
621 …nchors anchors, String file, String title, Multimap<PathHeader, String> bcp, PrintWriter tsvFile) { in writeDiffs() argument
649 writeTable(anchors, file, tablePrinter, title, tsvFile); in writeDiffs()
672 …private void writeDiffs(Anchors anchors, String file, Set<PathDiff> diff, PrintWriter tsvFile, Cou… in writeDiffs() argument
720 writeTable(anchors, file, tablePrinter, ENGLISH.getName(file) + " Delta", tsvFile); in writeDiffs()
729 private PrintWriter tsvFile; field in ChartDelta.ChartDeltaSub
731 … public ChartDeltaSub(String title, String file, TablePrinter tablePrinter, PrintWriter tsvFile) { in ChartDeltaSub() argument
[all …]
DTablePrinter.java234 public void toTsv(PrintWriter tsvFile) { in toTsv() argument
236 toTsvInternal(sortedFlat, tsvFile); in toTsv()
293 … void toTsvInternal(@SuppressWarnings("rawtypes") Comparable[][] sortedFlat, PrintWriter tsvFile) { in toTsvInternal() argument
313tsvFile.append(sep).append(format(columnsFlat[j].cellPattern.format(patternArgs)).replace("<br>", … in toTsvInternal()
319 tsvFile.append(sep).append(format(sortedFlat[i][j]).replace("<br>", " ")); in toTsvInternal()
323 tsvFile.println(); in toTsvInternal()