Home
last modified time | relevance | path

Searched refs:sectionId (Results 1 – 6 of 6) sorted by relevance

/external/cldr/tools/java/org/unicode/cldr/util/
DPathHeader.java241 private final SectionId sectionId;
243 private PageId(SectionId sectionId, String... alternateNames) {
244 this.sectionId = sectionId;
245 SectionIdToPageIds.put(sectionId, this);
278 return sectionId;
282 private final SectionId sectionId;
356 private PathHeader(SectionId sectionId, PageId pageId, String header,
359 this.sectionId = sectionId;
395 return sectionId.toString();
399 return sectionId;
[all …]
/external/cldr/tools/java/org/unicode/cldr/tool/
DFindWidths.java55 SectionId sectionId = ph.getSectionId(); in main() local
57 || sectionId == SectionId.Special) { in main()
78 SectionId sectionId = ph.getSectionId(); in main() local
80 || sectionId == SectionId.Special) { in main()
DShowStarredCoverage.java137 SectionId sectionId = ph.getSectionId(); in condense() local
139 String category = sectionId + "|" + pageId; in condense()
140 switch (sectionId) { in condense()
142 category = sectionId.toString(); in condense()
145 …category = sectionId + " — " + (starredPath.contains("@count") ? "long name" : starredPath.contain… in condense()
148 category = sectionId + " — " + (starredPath.contains("/displayName") ? "field labels" in condense()
162 : sectionId.toString(); in condense()
170 category = sectionId.toString(); in condense()
173 category = sectionId.toString(); in condense()
DShowPathHeaderDescriptions.java105 SectionId sectionId = pathHeader.getSectionId(); in showDescriptions() local
115 sv.put(sectionId, url); in showDescriptions()
119 spv.put(Row.of(sectionId, pageId), url); in showDescriptions()
120 shv.put(Row.of(sectionId, header), url); in showDescriptions()
123 R3<SectionId, PageId, String> full = Row.of(sectionId, pageId, header); in showDescriptions()
DGenerateChangeChart.java117 SectionId sectionId = pathHeader.getSectionId(); in main() local
118 if (sectionId != lastSectionId) { in main()
126 … localeFirstOut = new LocaleFirstChartWriter(summary, dir, sectionId.toString(), topLinks); in main()
127 …pathFirstOut = new PathFirstChartWriter(summary, dir, sectionId.toString() + " " + BY_PATH, topLin… in main()
128 lastSectionId = sectionId; in main()
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DTestPathHeader.java186 final SectionId sectionId = ph.getSectionId(); in TestCompleteness() local
187 if (sectionId != SectionId.Special) { in TestCompleteness()
188 pageUniqueness.put(ph.getPageId(), sectionId); in TestCompleteness() local
189 headerUniqueness.put(ph.getHeader(), new Pair<>(sectionId, ph.getPageId())); in TestCompleteness()