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

1 2

  /external/fio/tools/
fio_generate_plots 78 plot () { function
112 echo " $PLOT_TITLE ; $YAXIS ; $DEFAULT_OPTS ; show style lines ; $OUTPUT ; plot " $PLOT_LINE | $GNUPLOT -
117 # plot <sub title> <file name tag> <y axis label> <y axis scale>
120 plot "I/O Latency" lat "Time (msec)" 1000
121 plot "I/O Operations Per Second" iops "IOPS" 1
122 plot "I/O Submission Latency" slat "Time (?sec)" 1
123 plot "I/O Completion Latency" clat "Time (msec)" 1000
124 plot "I/O Bandwidth" bw "Throughput (KB/s)" 1
  /external/androidplot/Examples/DemoApp/src/com/androidplot/demos/
XYPlotWithBgImgActivity.java 19 private XYPlot plot; field in class:XYPlotWithBgImgActivity
27 plot = (XYPlot) findViewById(R.id.graph_metrics);
30 //plot.setMarkupEnabled(true);
33 plot.getGraphWidget().getBackgroundPaint().setColor(Color.TRANSPARENT);
34 plot.getGraphWidget().getGridBackgroundPaint().setShader(WHITE_SHADER);
35 plot.getGraphWidget().getDomainGridLinePaint().setColor(Color.BLACK);
36 plot.getGraphWidget().getDomainGridLinePaint().setPathEffect(new DashPathEffect(new float[]{3, 3}, 1));
37 plot.getGraphWidget().getRangeGridLinePaint().setColor(Color.BLACK);
38 plot.getGraphWidget().getRangeGridLinePaint().setPathEffect(new DashPathEffect(new float[]{3, 3}, 1));
39 plot.getGraphWidget().getDomainOriginLinePaint().setColor(Color.BLACK)
    [all...]
SimpleXYPlotActivity.java 27 * A straightforward example of using AndroidPlot to plot some data.
32 private XYPlot plot; field in class:SimpleXYPlotActivity
46 plot = (XYPlot) findViewById(R.id.mySimpleXYPlot);
48 // Create a couple arrays of y-values to plot:
69 plot.addSeries(series1, series1Format);
76 plot.addSeries(series2, series2Format);
79 plot.setTicksPerRangeLabel(3);
80 plot.getGraphWidget().setDomainLabelOrientation(-45);
XYRegionExampleActivity.java 45 private XYPlot plot; field in class:XYRegionExampleActivity
82 plot = (XYPlot) findViewById(R.id.xyRegionExamplePlot);
150 plot.addSeries(timSeries, timFormatter);
153 plot.removeSeries(timSeries);
156 plot.redraw();
161 plot.addSeries(nickSeries, nickFormatter);
165 plot.removeSeries(nickSeries);
169 plot.redraw();
174 plot.addSeries(joeSeries, joeFormatter);
176 plot.removeSeries(joeSeries);
    [all...]
BarPlotExampleActivity.java 55 * The simplest possible example of using AndroidPlot to plot some data.
61 private XYPlot plot; field in class:BarPlotExampleActivity
76 // Create a couple arrays of y-values to plot:
107 plot = (XYPlot) findViewById(R.id.mySimpleXYPlot);
109 selectionWidget = new TextLabelWidget(plot.getLayoutManager(), NO_SELECTION_TXT,
130 plot.setTicksPerRangeLabel(3);
131 plot.setRangeLowerBoundary(0, BoundaryMode.FIXED);
132 plot.getGraphWidget().setGridPadding(30, 10, 30, 0);
134 plot.setTicksPerDomainLabel(2);
153 plot.setOnTouchListener(new View.OnTouchListener()
    [all...]
DynamicXYPlotActivity.java 23 import com.androidplot.Plot;
34 // redraws a plot whenever an update is received:
36 Plot plot; field in class:DynamicXYPlotActivity.MyPlotUpdater
38 public MyPlotUpdater(Plot plot) {
39 this.plot = plot;
44 plot.redraw();
  /external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/xy/
XYLegendWidgetTest.java 25 import com.androidplot.Plot;
74 XYPlot plot = new XYPlot(context, "Test", Plot.RenderMode.USE_MAIN_THREAD); local
79 plot.addSeries(s1, new LineAndPointFormatter(
82 assertEquals(1, plot.getSeriesSet().size());
84 Deencapsulation.invoke(plot, "onSizeChanged", 100, 100, 100, 100);
85 plot.redraw();
88 Deencapsulation.invoke(plot, "onDraw", new Canvas());
90 plot.removeSeries(s1);
91 assertEquals(0, plot.getSeriesSet().size())
    [all...]
XYSeriesRendererTest.java 73 XYPlot plot = new XYPlot(context, "Test"); local
74 plot.setDomainStepMode(XYStepMode.SUBDIVIDE);
75 plot.setDomainStepValue(10);
76 plot.setDomainBoundaries(0, 100, BoundaryMode.FIXED);
77 plot.setRangeBoundaries(0, 100, BoundaryMode.FIXED);
78 plot.calculateMinMaxVals();
79 XYStep domainStep = XYStepCalculator.getStep(plot, XYAxisType.DOMAIN, gridRect, plot.getCalculatedMinX().doubleValue(), plot.getCalculatedMaxX().doubleValue());
XYPlotTest.java 24 import com.androidplot.Plot;
50 XYPlot plot; // testing field in class:XYPlotTest
65 plot = new XYPlot(null, "test");
78 plot.addSeries(series1, new LineAndPointFormatter());
79 plot.centerOnDomainOrigin(5, 2, BoundaryMode.FIXED);
80 plot.calculateMinMaxVals();
83 assertEquals(3.0, plot.getCalculatedMinX());
84 assertEquals(7.0, plot.getCalculatedMaxX());
89 plot.addSeries(series1, new LineAndPointFormatter());
90 plot.centerOnDomainOrigin(5);
    [all...]
  /external/androidplot/Examples/DemoApp/src/com/androidplot/demos/widget/
DemoAppWidgetProvider.java 38 XYPlot plot = new XYPlot(context, "Widget Example"); local
39 //plot.getLayoutParams().height = 100;
40 //plot.getLayoutParams().width = 100;
41 plot.measure(150,150);
42 plot.layout(0,0,150,150);
43 plot.setDrawingCacheEnabled(true);
45 // Create a couple arrays of y-values to plot:
65 plot.addSeries(series1, series1Format);
68 plot.addSeries(series2,
74 plot.setTicksPerRangeLabel(3);
    [all...]
  /external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/
PlotTest.java 61 public void onBeforeDraw(Plot source, Canvas canvas) {}
64 public void onAfterDraw(Plot source, Canvas canvas) {}
91 public MockRenderer1(Plot plot) {
92 super(plot);
107 public MockRenderer2(Plot plot) {
108 super(plot);
130 public SeriesRenderer getRendererInstance(MockPlot plot) {
131 return new MockRenderer1(plot);
186 Plot plot = new MockPlot(context, "MockPlot"); local
226 Plot plot = new MockPlot(context, "MockPlot"); local
296 Plot plot = new MockPlot(context, "MockPlot"); local
327 Plot plot = new MockPlot(context, "MockPlot"); local
354 Plot plot = new MockPlot(context, "MockPlot"); local
379 Plot plot = new MockPlot(context, "MockPlot"); local
407 Plot plot = new MockPlot(context, "MockPlot"); local
462 Plot plot = new MockPlot(context, "MockPlot"); local
    [all...]
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/
SeriesRenderer.java 24 import com.androidplot.Plot;
27 <PlotType extends Plot, SeriesType extends Series, SeriesFormatterType extends Formatter> {
28 private PlotType plot; field in class:SeriesRenderer
30 public SeriesRenderer(PlotType plot) {
31 this.plot = plot;
35 return plot;
38 public void setPlot(PlotType plot) {
39 this.plot = plot;
    [all...]
  /external/libvpx/libvpx/vp8/common/
textblit.c 55 static void plot (const int x, const int y, unsigned char *image, const int pitch) function
106 plot(y,x, image, pitch);
120 plot(x,y, image, pitch);
  /external/libvpx/libvpx/vp9/common/
vp9_textblit.c 27 static void plot(int x, int y, unsigned char *image, int pitch) { function
101 plot(y, x, image, pitch);
111 plot(x, y, image, pitch);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
textblit.c 55 static void plot (const int x, const int y, unsigned char *image, const int pitch) function
106 plot(y,x, image, pitch);
120 plot(x,y, image, pitch);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_textblit.c 27 static void plot(int x, int y, unsigned char *image, int pitch) { function
101 plot(y, x, image, pitch);
111 plot(x, y, image, pitch);
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/util/
Redrawer.java 4 import com.androidplot.Plot;
11 * Utility class for invoking Plot.redraw() on a backgorund thread
18 private List<Plot> plots;
25 * @param plots List of Plot instances to be redrawn
29 public Redrawer(List<Plot> plots, float maxRefreshRate, boolean startImmediately) {
38 public Redrawer(Plot plot, float maxRefreshRate, boolean startImmediately) {
39 this(Arrays.asList(new Plot[]{plot}), maxRefreshRate, startImmediately);
43 * Temporarily stop redrawing the plot
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_aalinetemp.h 37 NAME(plot)(struct gl_context *ctx, struct LineInfo *line, int ix, int iy) function
214 segment(ctx, &line, NAME(plot), tStart, tEnd);
226 segment(ctx, &line, NAME(plot), tStart, 1.0F);
231 segment(ctx, &line, NAME(plot), 0.0, 1.0);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/
HifiUltrasoundTestActivity.java 217 XYPlot plot = (XYPlot) popupView.findViewById(R.id.responseChart); local
218 plot.setDomainStep(XYStepMode.INCREMENT_BY_VAL, 2000);
241 plot.addSeries(series, seriesFormat);
258 plot.addSeries(noiseSeries, noiseSeriesFormat);
274 plot.addSeries(series, seriesFormat);
284 plot.addSeries(passSeries, passSeriesFormat);
HifiUltrasoundSpeakerTestActivity.java 256 XYPlot plot = (XYPlot) popupView.findViewById(R.id.responseChart); local
257 plot.setDomainStep(XYStepMode.INCREMENT_BY_VAL, 2000);
280 plot.addSeries(series, seriesFormat);
297 plot.addSeries(noiseSeries, noiseSeriesFormat);
313 plot.addSeries(series, seriesFormat);
323 plot.addSeries(passSeries, passSeriesFormat);
  /external/skia/src/gpu/
GrAtlas.cpp 67 // once the plot is nearly full we will revert to uploading each subimage individually
130 // If the Plot is nearly full, anything else we add will probably be small and one
196 void GrAtlas::makeMRU(GrPlot* plot) {
197 if (fPlotList.head() == plot) {
201 fPlotList.remove(plot);
202 fPlotList.addToHead(plot);
208 // iterate through entire plot list for this atlas, see if we can find a hole
211 GrPlot* plot = usage->fPlots[i]; local
213 if (this == plot->fAtlas && plot->addSubImage(width, height, image, loc))
237 GrPlot* plot; local
266 GrPlot* plot; local
281 GrPlot* plot; local
    [all...]
  /frameworks/base/tools/orientationplot/
orientationplot.py 24 import matplotlib.pyplot as plot namespace
77 self.fig = plot.figure(1)
230 return axes.plot([], label=label, color=color, linewidth=linewidth)[0]
269 plot.close()
457 plot.show()
  /frameworks/base/tools/velocityplot/
velocityplot.py 28 import matplotlib.pyplot as plot namespace
81 self.fig = plot.figure(1)
156 return axes.plot([], label=label, color=color, linewidth=linewidth)[0]
183 plot.close()
289 plot.show()
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
XYLegendWidget.java 47 private XYPlot plot; field in class:XYLegendWidget
69 public XYLegendWidget(LayoutManager layoutManager, XYPlot plot,
74 this.plot = plot;
99 Paint bgPaint = plot.getGraphWidget().getGridBackgroundPaint();
107 Paint bgPaint = plot.getGraphWidget().getGridBackgroundPaint();
148 if(plot.isEmpty()) {
159 for(XYSeriesRenderer renderer : plot.getRendererList()) {
161 SeriesAndFormatterList sfl = plot.getSeriesAndFormatterListForRenderer(renderer.getClass());
182 for(XYSeriesRenderer renderer : plot.getRendererList()) {
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_rast_debug.c 114 static void plot(struct tile *tile, function
152 plot(tile, i, j, val, blend);
167 plot(tile, i, j, val, FALSE);
210 plot(tile, x, y, val, blend);

Completed in 2416 milliseconds

1 2