/external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/xy/ |
D | XYPlotTest.java | 50 XYPlot plot; // testing field in XYPlotTest 65 plot = new XYPlot(null, "test"); in setUp() 78 plot.addSeries(series1, new LineAndPointFormatter()); in testOriginFixedMode() 79 plot.centerOnDomainOrigin(5, 2, BoundaryMode.FIXED); in testOriginFixedMode() 80 plot.calculateMinMaxVals(); in testOriginFixedMode() 83 assertEquals(3.0, plot.getCalculatedMinX()); in testOriginFixedMode() 84 assertEquals(7.0, plot.getCalculatedMaxX()); in testOriginFixedMode() 89 plot.addSeries(series1, new LineAndPointFormatter()); in testOriginAutoMode() 90 plot.centerOnDomainOrigin(5); in testOriginAutoMode() 91 plot.calculateMinMaxVals(); in testOriginAutoMode() [all …]
|
D | XYLegendWidgetTest.java | 74 XYPlot plot = new XYPlot(context, "Test", Plot.RenderMode.USE_MAIN_THREAD); in testDoOnDraw() local 79 plot.addSeries(s1, new LineAndPointFormatter( in testDoOnDraw() 82 assertEquals(1, plot.getSeriesSet().size()); in testDoOnDraw() 84 Deencapsulation.invoke(plot, "onSizeChanged", 100, 100, 100, 100); in testDoOnDraw() 85 plot.redraw(); in testDoOnDraw() 88 Deencapsulation.invoke(plot, "onDraw", new Canvas()); in testDoOnDraw() 90 plot.removeSeries(s1); in testDoOnDraw() 91 assertEquals(0, plot.getSeriesSet().size()); in testDoOnDraw() 92 plot.addSeries(s1, new BarFormatter(Color.RED, Color.GREEN)); in testDoOnDraw() 93 plot.redraw(); in testDoOnDraw() [all …]
|
D | XYSeriesRendererTest.java | 73 XYPlot plot = new XYPlot(context, "Test"); in testDataToGridCorrelation() local 74 plot.setDomainStepMode(XYStepMode.SUBDIVIDE); in testDataToGridCorrelation() 75 plot.setDomainStepValue(10); in testDataToGridCorrelation() 76 plot.setDomainBoundaries(0, 100, BoundaryMode.FIXED); in testDataToGridCorrelation() 77 plot.setRangeBoundaries(0, 100, BoundaryMode.FIXED); in testDataToGridCorrelation() 78 plot.calculateMinMaxVals(); in testDataToGridCorrelation() 79 …omainStep = XYStepCalculator.getStep(plot, XYAxisType.DOMAIN, gridRect, plot.getCalculatedMinX().d… in testDataToGridCorrelation()
|
/external/blktrace/iowatcher/ |
D | plot.h | 33 struct plot { struct 139 int svg_io_graph(struct plot *plot, struct graph_dot_data *gdd); 141 int svg_line_graph(struct plot *plot, struct graph_line_data *gld, char *color, int thresh1, int th… 146 struct plot *alloc_plot(void); 147 int close_plot(struct plot *plot); 148 int close_plot_no_height(struct plot *plot); 149 void setup_axis(struct plot *plot); 150 void set_xticks(struct plot *plot, int num_ticks, int first, int last); 151 void set_yticks(struct plot *plot, int num_ticks, int first, int last, char *units); 152 void set_plot_title(struct plot *plot, char *title); [all …]
|
D | plot.c | 344 void setup_axis(struct plot *plot) in setup_axis() argument 347 int fd = plot->fd; in setup_axis() 351 if (plot->no_legend) in setup_axis() 354 plot->total_width = axis_x_off(graph_width) + graph_left_pad / 2 + local_legend_width; in setup_axis() 355 plot->total_height = axis_y() + tick_label_pad + tick_font_size; in setup_axis() 357 if (plot->add_xlabel) in setup_axis() 358 plot->total_height += bump_height; in setup_axis() 363 plot->start_x_offset, in setup_axis() 364 plot->start_y_offset, plot->total_width + 40, in setup_axis() 365 plot->total_height + 20); in setup_axis() [all …]
|
D | main.c | 659 static void plot_movie_history(struct plot *plot, struct list_head *list) in plot_movie_history() argument 671 svg_io_graph_movie_array_spindle(plot, in plot_movie_history() 674 svg_io_graph_movie_array(plot, in plot_movie_history() 680 svg_io_graph_movie_array_spindle(plot, in plot_movie_history() 683 svg_io_graph_movie_array(plot, in plot_movie_history() 719 static void plot_io_legend(struct plot *plot, struct graph_dot_data *gdd, char *prefix, char *rw) in plot_io_legend() argument 731 svg_add_legend(plot, label, rw, gdd->color); in plot_io_legend() 735 static void plot_io(struct plot *plot, unsigned int min_seconds, in plot_io() argument 744 setup_axis(plot); in plot_io() 746 svg_alloc_legend(plot, count_io_plot_types() * 2); in plot_io() [all …]
|
/external/webrtc/rtc_tools/rtc_event_log_visualizer/ |
D | main.cc | 42 plot, 132 for (const auto& plot : plots_) { in RegisterPlot() local 133 RTC_DCHECK(plot.label != label) in RegisterPlot() 158 for (auto& plot : plots_) { in EnableAllPlots() local 159 plot.enabled = true; in EnableAllPlots() 168 for (auto& plot : plots_) { in EnablePlotByFlag() local 169 if (plot.label == flag) { in EnablePlotByFlag() 170 plot.enabled = true; in EnablePlotByFlag() 281 plots.RegisterPlot("incoming_packet_sizes", [&](Plot* plot) { in main() argument 282 analyzer.CreatePacketGraph(webrtc::kIncomingPacket, plot); in main() [all …]
|
D | analyzer.h | 37 void CreatePacketGraph(PacketDirection direction, Plot* plot); 39 void CreateRtcpTypeGraph(PacketDirection direction, Plot* plot); 41 void CreateAccumulatedPacketsGraph(PacketDirection direction, Plot* plot); 43 void CreatePacketRateGraph(PacketDirection direction, Plot* plot); 45 void CreateTotalPacketRateGraph(PacketDirection direction, Plot* plot); 47 void CreatePlayoutGraph(Plot* plot); 49 void CreateAudioLevelGraph(PacketDirection direction, Plot* plot); 51 void CreateSequenceNumberGraph(Plot* plot); 53 void CreateIncomingPacketLossGraph(Plot* plot); 55 void CreateIncomingDelayGraph(Plot* plot); [all …]
|
D | analyzer.cc | 403 Plot* plot) { in CreatePacketGraph() argument 420 plot->AppendTimeSeries(std::move(time_series)); in CreatePacketGraph() 423 plot->SetXAxis(config_.CallBeginTimeSec(), config_.CallEndTimeSec(), in CreatePacketGraph() 425 plot->SetSuggestedYAxis(0, 1, "Packet size (bytes)", kBottomMargin, in CreatePacketGraph() 427 plot->SetTitle(GetDirectionAsString(direction) + " RTP packets"); in CreatePacketGraph() 431 Plot* plot) { in CreateRtcpTypeGraph() argument 432 plot->AppendTimeSeries(CreateRtcpTypeTimeSeries( in CreateRtcpTypeGraph() 434 plot->AppendTimeSeries(CreateRtcpTypeTimeSeries( in CreateRtcpTypeGraph() 436 plot->AppendTimeSeries(CreateRtcpTypeTimeSeries( in CreateRtcpTypeGraph() 438 plot->AppendTimeSeries(CreateRtcpTypeTimeSeries( in CreateRtcpTypeGraph() [all …]
|
D | analyze_audio.cc | 30 Plot* plot) { in CreateAudioEncoderTargetBitrateGraph() argument 46 plot->AppendTimeSeries(std::move(time_series)); in CreateAudioEncoderTargetBitrateGraph() 47 plot->SetXAxis(config.CallBeginTimeSec(), config.CallEndTimeSec(), "Time (s)", in CreateAudioEncoderTargetBitrateGraph() 49 plot->SetSuggestedYAxis(0, 1, "Bitrate (bps)", kBottomMargin, kTopMargin); in CreateAudioEncoderTargetBitrateGraph() 50 plot->SetTitle("Reported audio encoder target bitrate"); in CreateAudioEncoderTargetBitrateGraph() 55 Plot* plot) { in CreateAudioEncoderFrameLengthGraph() argument 71 plot->AppendTimeSeries(std::move(time_series)); in CreateAudioEncoderFrameLengthGraph() 72 plot->SetXAxis(config.CallBeginTimeSec(), config.CallEndTimeSec(), "Time (s)", in CreateAudioEncoderFrameLengthGraph() 74 plot->SetSuggestedYAxis(0, 1, "Frame length (ms)", kBottomMargin, kTopMargin); in CreateAudioEncoderFrameLengthGraph() 75 plot->SetTitle("Reported audio encoder frame length"); in CreateAudioEncoderFrameLengthGraph() [all …]
|
D | analyze_audio.h | 29 Plot* plot); 32 Plot* plot); 35 Plot* plot); 38 Plot* plot); 41 Plot* plot); 44 Plot* plot); 57 Plot* plot); 64 Plot* plot); 71 Plot* plot);
|
/external/skia/gm/ |
D | runtimeintrinsics.cpp | 106 static void plot(SkCanvas* canvas, in plot() function 156 plot(canvas, "radians(x)", 0.0f, 360.0f, 0.0f, kTwoPI); 157 plot(canvas, "degrees(x)", 0.0f, kTwoPI, 0.0f, 360.0f); 160 plot(canvas, "sin(x)", 0.0f, kTwoPI, -1.0f, 1.0f); 161 plot(canvas, "cos(x)", 0.0f, kTwoPI, -1.0f, 1.0f); 162 plot(canvas, "tan(x)", 0.0f, kPI, -10.0f, 10.0f); 165 plot(canvas, "asin(x)", -1.0f, 1.0f, -kPIOverTwo, kPIOverTwo); 166 plot(canvas, "acos(x)", -1.0f, 1.0f, 0.0f, kPI); 167 plot(canvas, "atan(x)", -10.0f, 10.0f, -kPIOverTwo, kPIOverTwo); 170 plot(canvas, "atan(0.1, x)", -1.0f, 1.0f, 0.0f, kPI); [all …]
|
/external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/ |
D | PlotTest.java | 91 public MockRenderer1(Plot plot) { in MockRenderer1() argument 92 super(plot); in MockRenderer1() 107 public MockRenderer2(Plot plot) { in MockRenderer2() argument 108 super(plot); in MockRenderer2() 130 public SeriesRenderer getRendererInstance(MockPlot plot) { in getRendererInstance() argument 131 return new MockRenderer1(plot); in getRendererInstance() 143 public SeriesRenderer getRendererInstance(MockPlot plot) { in getRendererInstance() argument 144 return new MockRenderer2(plot); in getRendererInstance() 186 Plot plot = new MockPlot(context, "MockPlot"); in testAddSeries() local 193 plot.addSeries(m1, new MockFormatter1()); in testAddSeries() [all …]
|
/external/androidplot/Examples/DemoApp/src/com/androidplot/demos/ |
D | XYPlotWithBgImgActivity.java | 19 private XYPlot plot; field in XYPlotWithBgImgActivity 27 plot = (XYPlot) findViewById(R.id.graph_metrics); in onCreate() 33 plot.getGraphWidget().getBackgroundPaint().setColor(Color.TRANSPARENT); in onCreate() 34 plot.getGraphWidget().getGridBackgroundPaint().setShader(WHITE_SHADER); in onCreate() 35 plot.getGraphWidget().getDomainGridLinePaint().setColor(Color.BLACK); in onCreate() 36 …plot.getGraphWidget().getDomainGridLinePaint().setPathEffect(new DashPathEffect(new float[]{3, 3},… in onCreate() 37 plot.getGraphWidget().getRangeGridLinePaint().setColor(Color.BLACK); in onCreate() 38 …plot.getGraphWidget().getRangeGridLinePaint().setPathEffect(new DashPathEffect(new float[]{3, 3}, … in onCreate() 39 plot.getGraphWidget().getDomainOriginLinePaint().setColor(Color.BLACK); in onCreate() 40 plot.getGraphWidget().getRangeOriginLinePaint().setColor(Color.BLACK); in onCreate() [all …]
|
D | XYRegionExampleActivity.java | 45 private XYPlot plot; field in XYRegionExampleActivity 82 plot = (XYPlot) findViewById(R.id.xyRegionExamplePlot); in onCreate() 150 plot.addSeries(timSeries, timFormatter); in onS1CheckBoxClicked() 153 plot.removeSeries(timSeries); in onS1CheckBoxClicked() 156 plot.redraw(); in onS1CheckBoxClicked() 161 plot.addSeries(nickSeries, nickFormatter); in onS2CheckBoxClicked() 165 plot.removeSeries(nickSeries); in onS2CheckBoxClicked() 169 plot.redraw(); in onS2CheckBoxClicked() 174 plot.addSeries(joeSeries, joeFormatter); in onS3CheckBoxClicked() 176 plot.removeSeries(joeSeries); in onS3CheckBoxClicked() [all …]
|
D | BarPlotExampleActivity.java | 61 private XYPlot plot; field in BarPlotExampleActivity 107 plot = (XYPlot) findViewById(R.id.mySimpleXYPlot); in onCreate() 109 selectionWidget = new TextLabelWidget(plot.getLayoutManager(), NO_SELECTION_TXT, in onCreate() 130 plot.setTicksPerRangeLabel(3); in onCreate() 131 plot.setRangeLowerBoundary(0, BoundaryMode.FIXED); in onCreate() 132 plot.getGraphWidget().setGridPadding(30, 10, 30, 0); in onCreate() 134 plot.setTicksPerDomainLabel(2); in onCreate() 153 plot.setOnTouchListener(new View.OnTouchListener() { in onCreate() 254 plot.setDomainValueFormat(new NumberFormat() { in onCreate() 279 Iterator<XYSeries> iterator1 = plot.getSeriesSet().iterator(); in updatePlot() [all …]
|
/external/skqp/src/gpu/ |
D | GrDrawOpAtlas.cpp | 213 inline bool GrDrawOpAtlas::updatePlot(GrDeferredUploadTarget* target, AtlasID* id, Plot* plot) { in updatePlot() argument 214 int pageIdx = GetPageIndexFromID(plot->id()); in updatePlot() 215 this->makeMRU(plot, pageIdx); in updatePlot() 220 if (plot->lastUploadToken() < target->tokenTracker()->nextTokenToFlush()) { in updatePlot() 222 sk_sp<Plot> plotsp(SkRef(plot)); in updatePlot() 231 plot->setLastUploadToken(lastUploadToken); in updatePlot() 233 *id = plot->id(); in updatePlot() 245 for (Plot* plot = plotIter.get(); plot; plot = plotIter.next()) { in uploadToPage() local 246 SkASSERT(GrBytesPerPixel(fProxies[pageIdx]->config()) == plot->bpp()); in uploadToPage() 248 if (plot->addSubImage(width, height, image, loc)) { in uploadToPage() [all …]
|
/external/skia/src/gpu/ |
D | GrDrawOpAtlas.cpp | 240 AtlasLocator* atlasLocator, Plot* plot) { in updatePlot() argument 241 int pageIdx = plot->pageIndex(); in updatePlot() 242 this->makeMRU(plot, pageIdx); in updatePlot() 247 if (plot->lastUploadToken() < target->tokenTracker()->nextTokenToFlush()) { in updatePlot() 249 sk_sp<Plot> plotsp(SkRef(plot)); in updatePlot() 258 plot->setLastUploadToken(lastUploadToken); in updatePlot() 260 atlasLocator->updatePlotLocator(plot->plotLocator()); in updatePlot() 273 for (Plot* plot = plotIter.get(); plot; plot = plotIter.next()) { in uploadToPage() local 275 plot->bpp()); in uploadToPage() 277 if (plot->addSubImage(width, height, image, atlasLocator)) { in uploadToPage() [all …]
|
/external/tensorflow/tensorflow/lite/micro/examples/micro_speech/apollo3/ |
D | compare_1k.py | 88 plt.plot(micro_windowed_input, label='Micro fixed') 91 plt.plot(cmsis_windowed_input, label='CMSIS fixed') 94 plt.plot(to_float(micro_windowed_input, 30), label='Micro to float') 95 plt.plot(to_float(cmsis_windowed_input, 15), label='CMSIS to float') 100 plt.plot(micro_dft, label='Micro fixed') 103 plt.plot(cmsis_dft, label='CMSIS fixed') 106 plt.plot(to_float(micro_dft, 22), label='Micro to float') 109 plt.plot(to_float(cmsis_dft, 6), label='CMSIS to float') 110 plt.plot(py_result, label='Python result') 115 plt.plot(micro_power, label='Micro fixed') [all …]
|
/external/webrtc/rtc_tools/network_tester/ |
D | parse_packet_log.py | 52 def CreateSendTimeDiffPlot(packets, plot): argument 57 plot.grid(True) 58 plot.set_title("SendTime difference [us]") 59 plot.plot(GetTimeAxis(packets), y) 88 def CreateReceiveBiratePlot(packets, plot): argument 91 plot.grid(True) 92 plot.set_title("Receive birate [bps]") 93 plot.plot(GetTimeAxis(packets), y) 96 def CreatePacketlossPlot(packets, plot): argument 122 plot.grid(True) [all …]
|
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/ |
D | SeriesRenderer.java | 28 private PlotType plot; field in SeriesRenderer 30 public SeriesRenderer(PlotType plot) { in SeriesRenderer() argument 31 this.plot = plot; in SeriesRenderer() 35 return plot; in getPlot() 38 public void setPlot(PlotType plot) { in setPlot() argument 39 this.plot = plot; in setPlot() 43 return plot.getSeriesAndFormatterListForRenderer(getClass()); in getSeriesAndFormatterList() 47 return (SeriesFormatterType) plot.getFormatter(series, getClass()); in getFormatter()
|
/external/libsrtp2/ |
D | timing | 11 # plot authentication-only data 17 set output "plot-auth.pict" 18 plot "timing.dat" index 0 title "HMAC SHA1" with lines, "timing.dat" index 1 title "TMMH/AES" with … 20 # plot encryption-only data 25 set output "plot-enc.pict" 27 plot "timing.dat" index 3 title "SEAL" with lines, "timing.dat" index 4 title "AES ICM" with lines 29 # plot encryption and authentication data 35 set output "plot-enc-auth.pict" 36 plot "timing.dat" index 5 title "TMMH/SEAL" with lines, "timing.dat" index 6 title "TMMH/AES" with …
|
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/ |
D | XYGraphWidget.java | 93 private XYPlot plot; field in XYGraphWidget 172 public XYGraphWidget(LayoutManager layoutManager, XYPlot plot, SizeMetrics sizeMetrics) { in XYGraphWidget() argument 174 this.plot = plot; in XYGraphWidget() 337 if (plot.getCalculatedMinY() == null in getYVal() 338 || plot.getCalculatedMaxY() == null) { in getYVal() 341 return ValPixConverter.pixToVal(yPix - paddedGridRect.top, plot in getYVal() 342 .getCalculatedMinY().doubleValue(), plot.getCalculatedMaxY() in getYVal() 363 if (plot.getCalculatedMinX() == null in getXVal() 364 || plot.getCalculatedMaxX() == null) { in getXVal() 367 return ValPixConverter.pixToVal(xPix - paddedGridRect.left, plot in getXVal() [all …]
|
/external/androidplot/Examples/DemoApp/src/com/androidplot/demos/widget/ |
D | DemoAppWidgetProvider.java | 38 XYPlot plot = new XYPlot(context, "Widget Example"); in onUpdate() local 41 plot.measure(150,150); in onUpdate() 42 plot.layout(0,0,150,150); in onUpdate() 43 plot.setDrawingCacheEnabled(true); in onUpdate() 65 plot.addSeries(series1, series1Format); in onUpdate() 68 plot.addSeries(series2, in onUpdate() 74 plot.setTicksPerRangeLabel(3); in onUpdate() 80 Bitmap bmp = plot.getDrawingCache(); in onUpdate()
|
/external/webrtc/modules/audio_coding/audio_network_adaptor/ |
D | parse_ana_dump.py | 134 plot = plots.pop() 135 plot.grid(True) 136 plot.set_title(key + " (metric)") 137 plot.plot(metrics[key]['time'], metrics[key]['value']) 139 plot = plots.pop() 140 plot.grid(True) 141 plot.set_title(key + " (decision)") 142 plot.plot(decisions[key]['time'], decisions[key]['value'])
|