Home
last modified time | relevance | path

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

/external/cldr/tools/java/org/unicode/cldr/util/
DDateTimeFormats.java463 …showRow(output, RowStyle.header, FIELDS_TITLE, "Skeleton", "English Example", "Native Example", fa… in addTable()
474 showRow(output, RowStyle.separator, skeleton, null, null, null, false); in addTable()
479 …showRow(output, RowStyle.normal, name, skeleton, comparison.getExample(skeleton), getExample(skele… in addTable()
483 …showRow(output, RowStyle.separator, "Additional Patterns in Locale data", null, null, null, false); in addTable()
500 …showRow(output, RowStyle.normal, skeleton, skeleton, comparison.getExample(skeleton), getExample(s… in addTable()
635 enum RowStyle { enum in DateTimeFormats
651 …private void showRow(Appendable output, RowStyle rowStyle, String name, String skeleton, String en… in showRow()
664 … String startCell = rowStyle == RowStyle.header ? "<th class='dtf-h'>" : "<td class='dtf-s'>"; in showRow()
665 String endCell = rowStyle == RowStyle.header ? "</th>" : "</td>"; in showRow()
681 if (rowStyle != RowStyle.header) { in showRow()