HomeSort by relevance Sort by last modified time
    Searched refs:withDecimalStyle (Results 1 - 11 of 11) sorted by null

  /libcore/ojluni/src/test/java/time/test/java/time/format/
AbstractTestPrinterParser.java 117 return builder.toFormatter(locale).withDecimalStyle(decimalStyle);
121 return builder.appendLiteral(c).toFormatter(locale).withDecimalStyle(decimalStyle);
125 return builder.appendLiteral(s).toFormatter(locale).withDecimalStyle(decimalStyle);
129 return builder.appendText(field).toFormatter(locale).withDecimalStyle(decimalStyle);
133 return builder.appendText(field, style).toFormatter(locale).withDecimalStyle(decimalStyle);
137 return builder.appendValue(field, minWidth, maxWidth, signStyle).toFormatter(locale).withDecimalStyle(decimalStyle);
141 return builder.appendOffset(pattern, noOffsetText).toFormatter(locale).withDecimalStyle(decimalStyle);
145 return builder.appendPattern(pattern).toFormatter(locale).withDecimalStyle(decimalStyle);
TestReducedPrinter.java 84 return builder.appendValueReduced(field, width, width, baseValue).toFormatter(locale).withDecimalStyle(decimalStyle);
88 return builder.appendValueReduced(field, minWidth, maxWidth, baseValue).toFormatter(locale).withDecimalStyle(decimalStyle);
92 return builder.appendValueReduced(field, minWidth, maxWidth, LocalDate.of(baseValue, 1, 1)).toFormatter(locale).withDecimalStyle(decimalStyle);
TestZoneTextPrinterParser.java 66 .withDecimalStyle(DecimalStyle.of(locale));
194 .withDecimalStyle(DecimalStyle.of(locale));
255 .withDecimalStyle(DecimalStyle.of(locale));
TestNonIsoFormatter.java 142 .withDecimalStyle(DecimalStyle.of(numberingLocale));
152 .withDecimalStyle(DecimalStyle.of(numberingLocale));
TestNumberParser.java 172 dtf = builder.appendValue(DAY_OF_YEAR, subsequentWidth).toFormatter(locale).withDecimalStyle(decimalStyle);
192 dtf = builder.appendValue(DAY_OF_YEAR, subsequentWidth).toFormatter(locale).withDecimalStyle(decimalStyle);
547 .appendValue(DAY_OF_MONTH, 2).toFormatter(locale).withDecimalStyle(decimalStyle);
TestReducedParser.java 100 return builder.appendValueReduced(field, width, width, baseValue).toFormatter(locale).withDecimalStyle(decimalStyle);
104 return builder.appendValueReduced(field, minWidth, maxWidth, baseValue).toFormatter(locale).withDecimalStyle(decimalStyle);
108 return builder.appendValueReduced(field, minWidth, maxWidth, LocalDate.of(baseValue, 1, 1)).toFormatter(locale).withDecimalStyle(decimalStyle);
TestDateTimeFormatter.java 105 .withDecimalStyle(DecimalStyle.STANDARD);
TestFractionPrinterParser.java 85 return builder.appendFraction(field, minWidth, maxWidth, decimalPoint).toFormatter(locale).withDecimalStyle(decimalStyle);
  /libcore/ojluni/src/test/java/time/tck/java/time/format/
TCKDateTimeFormatter.java 137 DateTimeFormatter base = fmt.withLocale(Locale.ENGLISH).withDecimalStyle(DecimalStyle.STANDARD);
144 DateTimeFormatter base = fmt.withLocale(Locale.ENGLISH).withDecimalStyle(DecimalStyle.STANDARD);
403 DateTimeFormatter test = fmt.withLocale(Locale.ENGLISH).withDecimalStyle(DecimalStyle.STANDARD);
410 DateTimeFormatter test = fmt.withLocale(Locale.ENGLISH).withDecimalStyle(DecimalStyle.STANDARD);
416 DateTimeFormatter test = fmt.withLocale(Locale.ENGLISH).withDecimalStyle(DecimalStyle.STANDARD);
423 DateTimeFormatter test = fmt.withLocale(Locale.ENGLISH).withDecimalStyle(DecimalStyle.STANDARD);
431 DateTimeFormatter test = fmt.withLocale(Locale.ENGLISH).withDecimalStyle(DecimalStyle.STANDARD);
438 DateTimeFormatter test = fmt.withLocale(Locale.ENGLISH).withDecimalStyle(DecimalStyle.STANDARD);
445 DateTimeFormatter test = fmt.withLocale(Locale.ENGLISH).withDecimalStyle(DecimalStyle.STANDARD);
454 DateTimeFormatter test = fmt.withLocale(Locale.ENGLISH).withDecimalStyle(DecimalStyle.STANDARD)
    [all...]
  /libcore/luni/src/test/java/libcore/java/time/format/
DateTimeFormatterTest.java 55 DateTimeFormatter arStyleFormatter = formatter.withDecimalStyle(arDecimalStyle);
59 // Verify that calling withDecimalStyle() doesn't modify the original formatter.
  /libcore/ojluni/src/main/java/java/time/format/
DateTimeFormatter.java 143 * The {@link #withDecimalStyle withDecimalStyle} method returns a new formatter that
    [all...]

Completed in 890 milliseconds