Home
last modified time | relevance | path

Searched refs:Formatter (Results 1 – 25 of 104) sorted by relevance

12345

/external/mesa3d/src/gallium/tools/trace/
Dformat.py33 class Formatter: class
58 class AnsiFormatter(Formatter):
78 Formatter.function(self, name)
83 Formatter.variable(self, name)
88 Formatter.literal(self, value)
93 Formatter.address(self, value)
97 class WindowsConsoleFormatter(Formatter):
123 Formatter.__init__(self, stream)
147 Formatter.function(self, name)
152 Formatter.variable(self, name)
[all …]
/external/caliper/examples/src/main/java/examples/
DFormatterBenchmark.java20 import java.util.Formatter;
28 Formatter f = new Formatter(); in formatter_NoFormatting()
43 Formatter f = new Formatter(); in formatter_OneInt()
60 Formatter f = new Formatter(); in formatter_OneString()
/external/opencv3/samples/cpp/
Dcout_mat.cpp39 cout << "r (matlab) = \n" << format(r, Formatter::FMT_MATLAB) << ";" << endl << endl; in main()
40 cout << "r (python) = \n" << format(r, Formatter::FMT_PYTHON) << ";" << endl << endl; in main()
41 cout << "r (numpy) = \n" << format(r, Formatter::FMT_NUMPY) << ";" << endl << endl; in main()
42 cout << "r (csv) = \n" << format(r, Formatter::FMT_CSV) << ";" << endl << endl; in main()
43 cout << "r (c) = \n" << format(r, Formatter::FMT_C) << ";" << endl << endl; in main()
/external/opencv3/samples/cpp/tutorial_code/core/mat_the_basic_image_container/
Dmat_the_basic_image_container.cpp78 cout << "R (python) = " << endl << format(R, Formatter::FMT_PYTHON) << endl << endl; in main()
81 cout << "R (numpy) = " << endl << format(R, Formatter::FMT_NUMPY ) << endl << endl; in main()
84 cout << "R (csv) = " << endl << format(R, Formatter::FMT_CSV ) << endl << endl; in main()
87 cout << "R (c) = " << endl << format(R, Formatter::FMT_C ) << endl << endl; in main()
/external/chromium-trace/catapult/devil/devil/utils/
Drun_tests_helper.py12 class CustomFormatter(logging.Formatter):
19 logging.Formatter.__init__(self, fmt=fmt)
26 msg = logging.Formatter.format(self, record)
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/widget/
DNumberPicker.java44 public interface Formatter { interface in NumberPicker
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) { in setFormatter()
/external/autotest/client/common_lib/
Dlogging_config.py29 file_formatter = logging.Formatter(
34 console_formatter = logging.Formatter(
64 formatter = logging.Formatter(fmt=self.CONSOLE_FORMAT,
88 formatter = logging.Formatter(fmt=self.FILE_FORMAT, datefmt=datefmt)
/external/selinux/policycoreutils/gui/
Dhtml_util.py30 import formatter as Formatter namespace
38 class TextWriter(Formatter.DumbWriter):
41 Formatter.DumbWriter.__init__(self, file, maxcol)
131 formatter = Formatter.AbstractFormatter(TextWriter(buffer, maxcol))
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/
DFormatter.java40 public abstract class Formatter<PlotType extends Plot> { class
42 public Formatter<PlotType> configure(Context ctx, int xmlCfgId) { in configure()
/external/opencv3/modules/core/src/
Dout.cpp256 class FormatterBase : public Formatter
365 Formatter::~Formatter() {} in ~Formatter()
367 Ptr<Formatter> Formatter::get(int fmt) in get()
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
DXYSeriesFormatter.java21 import com.androidplot.ui.Formatter;
25 …lass XYSeriesFormatter<XYRegionFormatterType extends XYRegionFormatter> extends Formatter<XYPlot> {
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
DFormatterTest.java23 import java.util.logging.Formatter;
30 Formatter f;
127 public static class MockFormatter extends Formatter {
DMemoryHandlerTest.java27 import java.util.logging.Formatter;
103 Formatter formatter = handler.getFormatter(); in testClose()
118 Formatter formatter = handler.getFormatter(); in testFlush()
380 public static class MockFormatter extends Formatter {
DFileHandlerTest.java33 import java.util.logging.Formatter;
213 Formatter formatter, String encoding) throws Exception { in assertFileContent()
218 LogRecord[] lr, Formatter formatter, String encoding) throws Exception { in assertFileContent()
514 Formatter f = handler.getFormatter(); in testSetOutputStream()
615 public static class MockFormatter extends Formatter {
/external/opencv3/modules/core/include/opencv2/core/
Dcvstd.inl.hpp183 return out << Formatter::get()->format(mtx); in operator <<()
189 return out << Formatter::get()->format(Mat(vec)); in operator <<()
196 return out << Formatter::get()->format(Mat(vec)); in operator <<()
203 return out << Formatter::get()->format(Mat(matx)); in operator <<()
Doperations.hpp373 return Formatter::get(fmt)->format(mtx.getMat()); in format()
390 return print(Formatter::get()->format(mtx), stream); in print()
396 return print(Formatter::get()->format(mtx.getMat(ACCESS_READ)), stream); in print()
402 return print(Formatter::get()->format(Mat(vec)), stream); in print()
408 return print(Formatter::get()->format(Mat(vec)), stream); in print()
414 return print(Formatter::get()->format(cv::Mat(matx)), stream); in print()
/external/autotest/client/cros/cellular/pseudomodem/
Dlogging_setup.py16 class ModemManagerFormatter(logging.Formatter):
56 stdout_formatter = logging.Formatter(
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue148/
DPrintableUnicodeTest.java18 import java.util.Formatter;
172 Formatter formatter = new Formatter(result); in hexdump()
/external/autotest/client/cros/cellular/
Dlabconfig_write_stanzas30 class Formatter(object): class
55 f = Formatter()
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
DStringLiteral.java18 import java.util.Formatter;
59 new Formatter(result).format("\\u%04x", (int) c); in stringLiteral()
DSnippet.java26 import java.util.Formatter;
80 Formatter formatter = new Formatter(appendable);
/external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/
DPlotTest.java29 import com.androidplot.ui.Formatter;
101 public void doDrawLegendIcon(Canvas canvas, RectF rect, Formatter formatter) { in doDrawLegendIcon()
117 public void doDrawLegendIcon(Canvas canvas, RectF rect, Formatter formatter) { in doDrawLegendIcon()
122 static class MockFormatter1 extends Formatter<MockPlot> {
135 static class MockFormatter2 extends Formatter<MockPlot> {
149 public static class MockPlot extends Plot<MockSeries, Formatter, SeriesRenderer> {
/external/guice/core/src/com/google/inject/internal/
DErrors.java56 import java.util.Formatter;
334 Formatter allSources = new Formatter(); in childBindingAlreadySet()
574 Formatter fmt = new Formatter().format(heading).format(":%n%n");
779 public static void formatSource(Formatter formatter, Object source) {
788 public static void formatSource(Formatter formatter, Object source, ElementSource elementSource) {
823 public static void formatInjectionPoint(Formatter formatter, Dependency<?> dependency,
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/pie/
DSegmentFormatter.java22 import com.androidplot.ui.Formatter;
24 public class SegmentFormatter extends Formatter<PieChart> {
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/
DFormatter.java28 abstract class Formatter<T> implements Function<T, String> { class

12345