Searched defs:formatter (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
H A DTrackerDataHelper.java57 * @param formatter - formats the output from the get*Output* methods
59 public TrackerDataHelper(Context context, IFormatter formatter) { argument
61 mFormatter = formatter;
144 * Returns the output header particular to the associated formatter
151 * Returns the output footer particular to the associated formatter
/frameworks/base/core/java/com/android/internal/os/
H A DLoggingPrintStream.java182 private final Formatter formatter = new Formatter(builder, null); field in class:LoggingPrintStream
191 formatter.format(l, format, args);
/frameworks/base/core/java/android/text/format/
H A DDateUtils.java640 * @param formatter the Formatter used for formatting the date range.
649 public static Formatter formatDateRange(Context context, Formatter formatter, long startMillis, argument
651 return formatDateRange(context, formatter, startMillis, endMillis, flags, null);
806 * @param formatter the Formatter used for formatting the date range.
815 * @return the formatter with the formatted date/time range appended to the string buffer.
817 public static Formatter formatDateRange(Context context, Formatter formatter, long startMillis, argument
828 formatter.out().append(range);
832 return formatter;
/frameworks/base/core/java/android/widget/
H A DNumberPicker.java149 * strings like "01". Keeping a static formatter etc. is the most efficient
1140 * Set the formatter to be used for formatting the current value.
1143 * formatter is never invoked.
1146 * @param formatter The formatter object. If formatter is <code>null</code>,
1150 public void setFormatter(Formatter formatter) { argument
1151 if (formatter == mFormatter) {
1154 mFormatter = formatter;
1795 * be returned. Otherwise, the formatter specifie
[all...]

Completed in 102 milliseconds