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.java1002 * @param formatter the Formatter used for formatting the date range.
1011 public static Formatter formatDateRange(Context context, Formatter formatter, long startMillis, argument
1013 return formatDateRange(context, formatter, startMillis, endMillis, flags, null);
1171 * @param formatter the Formatter used for formatting the date range.
1180 * @return the formatter with the formatted date/time range appended to the string buffer.
1182 public static Formatter formatDateRange(Context context, Formatter formatter, long startMillis, argument
1417 return formatter.format("%s", startDate.format(defaultDateFormat));
1429 return formatter.format(fullFormat,
1468 return formatter.format(fullFormat,
1487 return formatter
[all...]
/frameworks/base/core/java/android/widget/
H A DNumberPicker.java154 * strings like "01". Keeping a static formatter etc. is the most efficient
1070 * Set the formatter to be used for formatting the current value.
1073 * formatter is never invoked.
1076 * @param formatter The formatter object. If formatter is <code>null</code>,
1080 public void setFormatter(Formatter formatter) { argument
1081 if (formatter == mFormatter) {
1084 mFormatter = formatter;
1723 * be returned. Otherwise, the formatter specifie
[all...]

Completed in 312 milliseconds