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

1 2 3

  /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/sources/
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...]
  /external/chromium_org/ui/base/l10n/
formatter.h 24 // Formatter for a (format, length) combination. May either be instantiated
27 class Formatter {
43 Formatter(const Pluralities& sec_pluralities,
48 Formatter(const Pluralities& sec_pluralities,
78 DISALLOW_IMPLICIT_CONSTRUCTORS(Formatter);
87 const Formatter* Get(TimeFormat::Format format,
99 scoped_ptr<Formatter>
formatter.cc 5 #include "ui/base/l10n/formatter.h"
181 Formatter::Formatter(const Pluralities& sec_pluralities,
191 Formatter::Formatter(const Pluralities& sec_pluralities,
213 void Formatter::Format(Unit unit,
223 void Formatter::Format(TwoUnits units,
239 scoped_ptr<icu::PluralFormat> Formatter::CreateFallbackFormat(
254 scoped_ptr<icu::PluralFormat> Formatter::InitFormat(
270 const Formatter* FormatterContainer::Get(TimeFormat::Format format
    [all...]
  /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 {
  /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...]
  /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...]
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallDetailHistoryAdapter.java 22 import android.text.format.Formatter;
175 mDurationItems.add(Formatter.formatShortFileSize(mContext, dataUsage));
  /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):
  /frameworks/base/services/core/java/com/android/server/storage/
DeviceStorageMonitorService.java 46 import android.text.format.Formatter;
415 pw.print(" mFreeMem="); pw.print(Formatter.formatFileSize(context, mFreeMem));
417 pw.println(Formatter.formatFileSize(context, mTotalMemory));
420 pw.println(Formatter.formatFileSize(context, mFreeMemAfterLastCacheClear));
423 pw.print(Formatter.formatFileSize(context, mLastReportedFreeMem));
436 pw.print(Formatter.formatFileSize(context, mMemLowThreshold));
438 pw.println(Formatter.formatFileSize(context, mMemFullThreshold));
441 pw.print(Formatter.formatFileSize(context, mMemCacheStartTrimThreshold));
443 pw.println(Formatter.formatFileSize(context, 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...]
  /external/owasp/sanitizer/tools/findbugs/lib/
jFormatString.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/jFormatString/2.0.1/
jFormatString-2.0.1.jar 
  /external/clang/lib/Format/
Format.cpp 33 #define DEBUG_TYPE "format-formatter"
    [all...]
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
DirectoryFragment.java 56 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...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
Workspace.js 263 return this._projectDelegate.type() === WebInspector.projectTypes.Debugger || this._projectDelegate.type() === WebInspector.projectTypes.Formatter || this._projectDelegate.type() === WebInspector.projectTypes.LiveEdit;
526 Formatter: "formatter",
  /frameworks/base/core/java/android/widget/
NumberPicker.java 152 * strings like "01". Keeping a static formatter etc. is the most efficient
156 private static class TwoDigitFormatter implements NumberPicker.Formatter {
160 java.util.Formatter mFmt;
189 private java.util.Formatter createFormatter(Locale locale) {
190 return new java.util.Formatter(mBuilder, locale);
199 public static final Formatter getTwoDigitFormatter() {
289 * Formatter for for displaying the current value.
291 private Formatter mFormatter;
539 public interface Formatter {
    [all...]
  /packages/apps/Settings/src/com/android/settings/
DataUsageSummary.java 94 import android.text.format.Formatter;
    [all...]
  /prebuilts/sdk/20/
android.jar 
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 

Completed in 1004 milliseconds

1 2 3