HomeSort by relevance Sort by last modified time
    Searched defs:Formatter (Results 1 - 25 of 39) sorted by null

1 2

  /frameworks/base/core/java/android/text/format/
Formatter.java 24 * by the {@link java.util.Formatter} class in {@link java.util}
26 public final class Formatter {
  /libcore/luni/src/main/java/java/util/logging/
Formatter.java 24 * {@code Formatter} objects are used to format {@link LogRecord} objects into a
29 public abstract class Formatter {
32 * Constructs a {@code Formatter} object.
34 protected Formatter() {
51 * Formatter}.
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
ScriptFormatter.js 34 WebInspector.Formatter = function()
40 * @return {?WebInspector.Formatter}
42 WebInspector.Formatter.createFormatter = function(contentType)
55 WebInspector.Formatter.locationToPosition = function(lineEndings, lineNumber, columnNumber)
66 WebInspector.Formatter.positionToLocation = function(lineEndings, position)
76 WebInspector.Formatter.prototype = {
89 * @implements {WebInspector.Formatter}
136 * @implements {WebInspector.Formatter}
239 var originalPosition = WebInspector.Formatter.locationToPosition(this._originalLineEndings, lineNumber, columnNumber || 0);
241 return WebInspector.Formatter.positionToLocation(this._formattedLineEndings, formattedPosition)
    [all...]
  /frameworks/native/services/surfaceflinger/RenderEngine/
ProgramCache.cpp 31 * A simple formatter class to automatically add the endl and
35 class Formatter;
36 static Formatter& indent(Formatter& f);
37 static Formatter& dedent(Formatter& f);
39 class Formatter {
42 typedef Formatter& (*FormaterManipFunc)(Formatter&);
43 friend Formatter& indent(Formatter& f)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/tools/trace/
format.py 33 class Formatter:
34 '''Plain formatter'''
58 class AnsiFormatter(Formatter):
59 '''Formatter for plain-text files which outputs ANSI escape codes. See
78 Formatter.function(self, name)
83 Formatter.variable(self, name)
88 Formatter.literal(self, value)
93 Formatter.address(self, value)
97 class WindowsConsoleFormatter(Formatter):
98 '''Formatter for the Windows Console. See
    [all...]
  /external/mesa3d/src/gallium/tools/trace/
format.py 33 class Formatter:
34 '''Plain formatter'''
58 class AnsiFormatter(Formatter):
59 '''Formatter for plain-text files which outputs ANSI escape codes. See
78 Formatter.function(self, name)
83 Formatter.variable(self, name)
88 Formatter.literal(self, value)
93 Formatter.address(self, value)
97 class WindowsConsoleFormatter(Formatter):
98 '''Formatter for the Windows Console. See
    [all...]
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
MiscFilesHandler.java 24 import android.text.format.Formatter;
182 Formatter.formatFileSize(mContext, selectedDataSize),
183 Formatter.formatFileSize(mContext, mAdapter.getDataSize())));
254 view.setFileSize(Formatter.formatFileSize(mContext, item.mSize));
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
string.py 534 # the Formatter class
543 class Formatter(object):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
string.py 534 # the Formatter class
543 class Formatter(object):
  /external/clang/lib/Format/
Format.cpp 16 #define DEBUG_TYPE "format-formatter"
    [all...]
  /frameworks/base/services/java/com/android/server/
DeviceStorageMonitorService.java 42 import android.text.format.Formatter;
468 pw.print(" mFreeMem="); pw.print(Formatter.formatFileSize(mContext, mFreeMem));
470 pw.println(Formatter.formatFileSize(mContext, mTotalMemory));
472 pw.println(Formatter.formatFileSize(mContext, mFreeMemAfterLastCacheClear));
474 pw.print(Formatter.formatFileSize(mContext, mLastReportedFreeMem));
483 pw.print(Formatter.formatFileSize(mContext, mMemLowThreshold));
485 pw.println(Formatter.formatFileSize(mContext, mMemFullThreshold));
487 pw.print(Formatter.formatFileSize(mContext, mMemCacheStartTrimThreshold));
489 pw.println(Formatter.formatFileSize(mContext, mMemCacheTrimToThreshold));
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/logging/
__init__.py 29 'FATAL', 'FileHandler', 'Filter', 'Formatter', 'Handler', 'INFO',
343 # Formatter classes and functions
346 class Formatter(object):
348 Formatter instances are used to convert a LogRecord to text.
352 be interpreted by either a human or an external system. The base Formatter
356 The Formatter can be initialized with a format string which makes use of
392 Initialize the formatter with specified format strings.
394 Initialize the formatter either with the specified format string, or a
408 This method should be called from format() by a formatter which
416 is used; to change this for a particular formatter instance, set th
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/logging/
__init__.py 29 'FATAL', 'FileHandler', 'Filter', 'Formatter', 'Handler', 'INFO',
343 # Formatter classes and functions
346 class Formatter(object):
348 Formatter instances are used to convert a LogRecord to text.
352 be interpreted by either a human or an external system. The base Formatter
356 The Formatter can be initialized with a format string which makes use of
392 Initialize the formatter with specified format strings.
394 Initialize the formatter either with the specified format string, or a
408 This method should be called from format() by a formatter which
416 is used; to change this for a particular formatter instance, set th
    [all...]
  /prebuilts/tools/common/m2/internal/com/google/code/findbugs/jFormatString/2.0.1/
jFormatString-2.0.1.jar 
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
DirectoryFragment.java 55 import android.text.format.Formatter;
    [all...]
  /libcore/luni/src/main/java/java/util/
Formatter.java 40 * It's relatively rare to use a {@code Formatter} directly. A variety of classes offer convenience
41 * methods for accessing formatter functionality.
134 * this formatter).
300 * It's also possible to format dates and times with {@code Formatter}, though you should
303 * The facilities offered by {@code Formatter} are low-level and place the burden of localization
513 * {@code %t} with {@code %T} will uppercase the field according to the rules of the formatter's
521 * <p><i>Thread safety</i>. Formatter is not thread-safe.
528 public final class Formatter implements Closeable, Flushable {
598 * Constructs a {@code Formatter}.
606 public Formatter() {
    [all...]
  /frameworks/base/core/java/android/widget/
NumberPicker.java 149 * strings like "01". Keeping a static formatter etc. is the most efficient
153 private static class TwoDigitFormatter implements NumberPicker.Formatter {
157 java.util.Formatter mFmt;
186 private java.util.Formatter createFormatter(Locale locale) {
187 return new java.util.Formatter(mBuilder, locale);
196 public static final Formatter getTwoDigitFormatter() {
286 * Formatter for for displaying the current value.
288 private Formatter mFormatter;
527 public interface Formatter {
    [all...]
  /packages/apps/Settings/src/com/android/settings/
DataUsageSummary.java 95 import android.text.format.Formatter;
    [all...]
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/4/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/6/
android.jar 
  /prebuilts/sdk/8/
android.jar 
  /prebuilts/sdk/9/
android.jar 

Completed in 476 milliseconds

1 2