HomeSort by relevance Sort by last modified time
    Searched refs:getFormatter (Results 1 - 25 of 62) sorted by null

1 2 3

  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/
PeriodFormatterFactory.java 73 public PeriodFormatter getFormatter();
DurationFormatterFactory.java 78 public DurationFormatter getFormatter();
BasicDurationFormat.java 50 formatter = pfs.newDurationFormatterFactory().getFormatter();
51 pformatter = pfs.newPeriodFormatterFactory().setDisplayPastFuture(false).getFormatter();
59 formatter = pfs.newDurationFormatterFactory().setLocale(locale.getName()).getFormatter();
60 pformatter = pfs.newPeriodFormatterFactory().setDisplayPastFuture(false).setLocale(locale.getName()).getFormatter();
BasicDurationFormatterFactory.java 20 * Subclasses override getFormatter to return a custom
150 public DurationFormatter getFormatter() {
172 .getFormatter();
BasicPeriodFormatterFactory.java 188 public PeriodFormatter getFormatter() {
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/
RenderBundle.java 40 public SeriesFormatterType getFormatter() {
SeriesAndFormatterList.java 76 public FormatterType getFormatter(SeriesType series) {
80 public FormatterType getFormatter(int index) {
SeriesRenderer.java 46 public SeriesFormatterType getFormatter(SeriesType series) {
47 return (SeriesFormatterType) plot.getFormatter(series, getClass());
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/duration/
RegressionTest.java 46 .getFormatter();
65 .getFormatter();
LanguageTestRoot.java 243 PeriodFormatter pf = pfFactory.getFormatter();
268 PeriodFormatter pf = pfFactory.getFormatter();
289 PeriodFormatter pf = pfFactory.getFormatter();
310 PeriodFormatter pf = pfFactory.getFormatter();
358 PeriodFormatter pf = pfFactory.getFormatter();
398 PeriodFormatter pf = pfFactory.getFormatter();
428 PeriodFormatter pf = pfFactory.getFormatter();
458 PeriodFormatter pf = pfFactory.getFormatter();
482 PeriodFormatter pf = pfFactory.getFormatter();
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldFileHandlerTest.java 98 assertNotNull("Formatter is null", handler.getFormatter());
122 assertNotNull("Formatter is null", handler.getFormatter());
153 assertFileContent(TEMPPATH + SEP + "log", "string", h.getFormatter());
154 assertFileContent(TEMPPATH + SEP + "log", "string.1", h.getFormatter());
155 assertFileContent(TEMPPATH + SEP + "log", "string.2", h.getFormatter());
156 assertFileContent(TEMPPATH + SEP + "log", "string.3", h.getFormatter());
167 .getFormatter());
182 .getFormatter());
184 .getFormatter());
204 assertNotNull("Formatter is null", handler.getFormatter());
    [all...]
OldMemoryHandlerTest.java 77 assertNotNull("Formatter should not be null", handler.getFormatter());
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
FileHandlerTest.java 161 .getFormatter(), "UTF-8");
171 assertTrue(handler.getFormatter() instanceof MockFormatter);
197 assertTrue(handler.getFormatter() instanceof XMLFormatter);
305 assertFileContent(tempPath, "testLimitCount1", handler.getFormatter(), "UTF-8");
313 handler.getFormatter(), "UTF-8");
332 rs[5], rs[6], rs[7] }, handler.getFormatter(), "UTF-8");
334 rs[8], rs[9] }, handler.getFormatter(), "UTF-8");
351 rs[3], rs[4], null, rs[5] }, handler.getFormatter(), "UTF-8");
353 rs[6], rs[7], rs[8] }, handler.getFormatter(), "UTF-8");
355 new LogRecord[] { rs[9] }, handler.getFormatter(), "UTF-8")
    [all...]
MemoryHandlerTest.java 103 Formatter formatter = handler.getFormatter();
108 assertEquals(handler.getFormatter(), formatter);
118 Formatter formatter = handler.getFormatter();
123 assertEquals(handler.getFormatter(), formatter);
160 assertTrue(handler.getFormatter() instanceof MockFormatter);
194 assertTrue(handler.getFormatter() instanceof SimpleFormatter);
244 assertTrue(handler.getFormatter() instanceof SimpleFormatter);
257 assertTrue(handler.getFormatter() instanceof MockFormatter);
262 assertNull(target.getFormatter());
HandlerTest.java 75 assertNull(h.getFormatter());
102 assertNull(h.getFormatter());
219 * Test getFormatter & setFormatter methods with non-null value.
225 assertSame(f, h.getFormatter());
229 * Test getFormatter & setFormatter methods with null.
SocketHandlerTest.java 176 assertTrue(h.getFormatter() instanceof XMLFormatter);
210 assertTrue(h.getFormatter() instanceof XMLFormatter);
247 assertTrue(h.getFormatter() instanceof MockFormatter);
261 assertTrue(h.getFormatter() instanceof MockFormatter);
291 assertTrue(h.getFormatter() instanceof XMLFormatter);
307 assertTrue(h.getFormatter() instanceof XMLFormatter);
ConsoleHandlerTest.java 90 assertTrue(h.getFormatter() instanceof SimpleFormatter);
115 assertTrue(h.getFormatter() instanceof MockFormatter);
139 assertTrue(h.getFormatter() instanceof SimpleFormatter);
  /libcore/luni/src/main/java/java/util/logging/
StreamHandler.java 134 write(getFormatter().getHead(this));
220 write(getFormatter().getTail(this));
290 msg = getFormatter().format(record);
Handler.java 205 public Formatter getFormatter() {
  /libcore/luni/src/main/java/libcore/icu/
DateIntervalFormat.java 84 getFormatter(skeleton, icuLocale, icuTimeZone);
90 private static com.ibm.icu.text.DateIntervalFormat getFormatter(String skeleton, ULocale locale,
RelativeDateTimeFormatter.java 168 str = getFormatter(icuLocale, style, displayContext)
175 str = getFormatter(icuLocale, style, displayContext)
222 getFormatter(icuLocale, style, displayContext);
324 return getFormatter(icuLocale, style, capitalizationContext)
330 * getFormatter() caches the RelativeDateTimeFormatter instances based on
334 * getFormatter() may have been evicted by the time of the call to
337 private static com.ibm.icu.text.RelativeDateTimeFormatter getFormatter(
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/duration/languages/
Test_ja.java 46 PeriodFormatter pf = pff.getFormatter();
61 PeriodFormatter pf = pff.getFormatter();
  /frameworks/base/core/java/com/android/internal/logging/
AndroidHandler.java 133 String message = getFormatter().format(record);
  /external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/
PlotTest.java 315 assertEquals(registry.get(MockRenderer1.class).getFormatter(m1), f1);
316 assertEquals(registry.get(MockRenderer1.class).getFormatter(m2), f2);
317 assertEquals(registry.get(MockRenderer2.class).getFormatter(m2), f3);
319 assertNotSame(registry.get(MockRenderer2.class).getFormatter(m2), f1);
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
BarRenderer.java 109 protected T getFormatter(int index, XYSeries series) {
110 return getFormatter(series);
328 return getFormatter(seriesIndex, series);

Completed in 1994 milliseconds

1 2 3