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.java213 Output<PrintWriter> tsvFile = new Output<>(); in main() local
219 … out = start(out, main, headerString, path.getSection() + ":" + path.getPage(), tsvFile); in main()
261 tsvFile.value.print( in main()
280 tsvFile.value.print("\u00B7" + locale + "\u00B7"); in main()
283 tsvFile.value.print("\u00B7" + locale + "\u00B7"); in main()
291 tsvFile.value.print("\u00B7" + locale + "\u00B7"); in main()
297 tsvFile.value.print("\u00B7all-others\u00B7"); in main()
300 tsvFile.value.println(); in main()
304 showExemplars(out, headerString, pair[0], pair[1], pair[2], tsvFile); in main()
306 finish(out, tsvFile.value); in main()
[all …]
DChartDelta.java296 …try (PrintWriter tsvFile = FileUtilities.openUTF8Writer(getTsvDir(DIR, dirName), dirName + ".tsv"); in writeLdml() argument
299 tsvFile.println("# Section\tPage\tHeader\tCode\tLocale\tOld\tNew\tLevel"); in writeLdml()
462 writeDiffs(anchors, base, diff, tsvFile, counts); in writeLdml()
691 …nchors anchors, String file, String title, Multimap<PathHeader, String> bcp, PrintWriter tsvFile) { in writeDiffs() argument
724 writeTable(anchors, file, tablePrinter, title, tsvFile); in writeDiffs()
747 …private void writeDiffs(Anchors anchors, String file, Set<PathDiff> diff, PrintWriter tsvFile, Cou… in writeDiffs() argument
796 writeTable(anchors, file, tablePrinter, title, tsvFile); in writeDiffs()
805 private PrintWriter tsvFile; field in ChartDelta.ChartDeltaSub
807 … private ChartDeltaSub(String title, String file, TablePrinter tablePrinter, PrintWriter tsvFile) { in ChartDeltaSub() argument
812 this.tsvFile = tsvFile; in ChartDeltaSub()
[all …]
DTablePrinter.java235 public void toTsv(PrintWriter tsvFile) { in toTsv() argument
237 toTsvInternal(sortedFlat, tsvFile); in toTsv()
295 … void toTsvInternal(@SuppressWarnings("rawtypes") Comparable[][] sortedFlat, PrintWriter tsvFile) { in toTsvInternal() argument
315tsvFile.append(sep).append(format(columnsFlat[j].cellPattern.format(patternArgs)).replace("<br>", … in toTsvInternal()
321 tsvFile.append(sep).append(format(sortedFlat[i][j]).replace("<br>", " ")); in toTsvInternal()
325 tsvFile.println(); in toTsvInternal()