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

1 2 3 4 5

  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
Formatter.java 21 * A formatter which transforms an instance of a particular type into a string
28 abstract class Formatter<T> implements Function<T, String> {
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/
Formatter.java 40 public abstract class Formatter<PlotType extends Plot> {
42 public Formatter<PlotType> configure(Context ctx, int xmlCfgId) {
  /external/autotest/client/cros/cellular/
labconfig_write_stanzas 30 class Formatter(object):
55 f = Formatter()
  /libcore/ojluni/src/main/java/java/util/logging/
Formatter.java 30 * A Formatter provides support for formatting LogRecords.
32 * Typically each logging Handler will have a Formatter associated
33 * with it. The Formatter takes a LogRecord and converts it to
43 public abstract class Formatter {
46 * Construct a new formatter.
48 protected Formatter() {
56 * It is recommended to use the {@link Formatter#formatMessage}
94 * method is provided as a convenience for Formatter subclasses to
103 * <li>If there are no parameters, no formatter is used.
  /external/selinux/policycoreutils/gui/
html_util.py 30 import formatter as Formatter
38 class TextWriter(Formatter.DumbWriter):
41 Formatter.DumbWriter.__init__(self, file, maxcol)
90 def __init__(self, formatter, verbose=0):
91 htmllib.HTMLParser.__init__(self, formatter, verbose)
131 formatter = Formatter.AbstractFormatter(TextWriter(buffer, maxcol))
132 parser = HTMLParserAnchor(formatter)
  /packages/apps/Settings/src/com/android/settings/applications/
ProcessStatsPreference.java 23 import android.text.format.Formatter;
47 setSummary(Formatter.formatShortFileSize(getContext(), (long) amount));
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/tools/docmaker/
formatter.py 2 # formatter.py
16 # This is the base Formatter class. Its purpose is to convert a content
33 ## FORMATTER CLASS
35 class Formatter:
  /packages/apps/Settings/src/com/android/settings/datausage/
AppDataUsagePreference.java 21 import android.text.format.Formatter;
45 setSummary(Formatter.formatFileSize(context, item.total));
  /external/chromium-trace/catapult/dashboard/dashboard/
quick_logger.py 14 formatter = quick_logger.Formatter(template, extra='!')
15 logger = quick_logger.QuickLogger('a_namespace', 'a_log_name', formatter)
155 class Formatter(object):
161 """Initializes formatter.
206 def __init__(self, namespace, name, formatter=None):
212 formatter: Formatter object to format logs.
214 self._formatter = formatter
  /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/base/core/java/android/text/format/
Formatter.java 33 * by the {@link java.util.Formatter} class in {@link java.util}
35 public final class Formatter {
  /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;
159 mDurationItems.add(Formatter.formatShortFileSize(mContext, dataUsage));
  /external/opencv3/modules/core/src/
out.cpp 256 class FormatterBase : public Formatter
365 Formatter::~Formatter() {}
367 Ptr<Formatter> Formatter::get(int fmt)
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/dirlist/
GridDocumentHolder.java 29 import android.text.format.Formatter;
158 mSize.setText(Formatter.formatFileSize(mContext, docSize));
ListDocumentHolder.java 28 import android.text.format.Formatter;
165 mSize.setText(Formatter.formatFileSize(mContext, docSize));
  /packages/apps/Messaging/src/com/android/messaging/ui/conversation/
MessageDetailsDialog.java 24 import android.text.format.Formatter;
204 details.append(Formatter.formatFileSize(context, data.getSmsMessageSize()));
  /external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/widget/
NumberPicker.java 44 public interface Formatter {
50 * Keeping a static formatter etc. is the most efficient way to do this; it avoids creating
53 public static final NumberPicker.Formatter TWO_DIGIT_FORMATTER = new NumberPicker.Formatter() {
55 final java.util.Formatter mFmt = new java.util.Formatter(mBuilder);
88 private Formatter mFormatter;
142 public void setFormatter(Formatter formatter) {
143 mFormatter = formatter;
    [all...]
  /packages/apps/StorageManager/src/com/android/storagemanager/deletionhelper/
DeletionHelperSettings.java 24 import android.text.format.Formatter;
239 Formatter.formatFileSize(activity, getTotalFreeableSpace())));
  /prebuilts/gdb/darwin-x86/lib/python2.7/
string.py 534 # the Formatter class
543 class Formatter(object):
  /prebuilts/gdb/linux-x86/lib/python2.7/
string.py 534 # the Formatter class
543 class Formatter(object):
  /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/compiler-rt/lib/dfsan/
dfsan_custom.cc 886 struct Formatter {
887 Formatter(char *str_, const char *fmt_, size_t size_)
    [all...]
  /external/opencv3/modules/core/include/opencv2/
core.hpp     [all...]

Completed in 599 milliseconds

1 2 3 4 5