Searched defs:mFormatBuilder (Results 1 - 5 of 5) sorted by path

/frameworks/base/core/java/android/os/
H A DBatteryStats.java254 private final StringBuilder mFormatBuilder = new StringBuilder(32); field in class:BatteryStats
255 private final Formatter mFormatter = new Formatter(mFormatBuilder);
2534 mFormatBuilder.setLength(0);
2536 return mFormatBuilder.toString();
2540 mFormatBuilder.setLength(0);
2546 return mFormatBuilder.toString();
2549 return mFormatBuilder.toString();
2552 return mFormatBuilder.toString();
/frameworks/base/core/java/android/widget/
H A DChronometer.java77 private StringBuilder mFormatBuilder; field in class:Chronometer
178 if (format != null && mFormatBuilder == null) {
179 mFormatBuilder = new StringBuilder(format.length() * 2);
274 mFormatter = new Formatter(mFormatBuilder, loc);
276 mFormatBuilder.setLength(0);
280 text = mFormatBuilder.toString();
H A DMediaController.java88 StringBuilder mFormatBuilder; field in class:MediaController
303 mFormatBuilder = new StringBuilder();
304 mFormatter = new Formatter(mFormatBuilder, Locale.getDefault());
426 mFormatBuilder.setLength(0);
/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/
H A DMediaController.java55 StringBuilder mFormatBuilder; field in class:MediaController
163 mFormatBuilder = new StringBuilder();
164 mFormatter = new Formatter(mFormatBuilder, Locale.getDefault());
211 mFormatBuilder.setLength(0);
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/
H A DMediaController.java55 StringBuilder mFormatBuilder; field in class:MediaController
163 mFormatBuilder = new StringBuilder();
164 mFormatter = new Formatter(mFormatBuilder, Locale.getDefault());
211 mFormatBuilder.setLength(0);

Completed in 133 milliseconds