HomeSort by relevance Sort by last modified time
    Searched refs:plot (Results 51 - 75 of 168) sorted by null

1 23 4 5 6 7

  /cts/apps/CameraITS/tests/scene0/
test_gyro_bias.py 32 # Number of samples averaged together, in the plot.
64 pylab.plot(times, xs, 'r', label="x")
65 pylab.plot(times, ys, 'g', label="y")
66 pylab.plot(times, zs, 'b', label="z")
  /cts/apps/CameraITS/tests/scene1/
test_param_exposure_time.py 54 # Draw a plot.
55 pylab.plot(exp_times, r_means, 'r')
56 pylab.plot(exp_times, g_means, 'g')
57 pylab.plot(exp_times, b_means, 'b')
test_param_sensitivity.py 59 # Draw a plot.
60 pylab.plot(sensitivities, r_means, 'r')
61 pylab.plot(sensitivities, g_means, 'g')
62 pylab.plot(sensitivities, b_means, 'b')
test_black_white.py 71 # Draw a plot.
72 pylab.plot([0,1], r_means, 'r')
73 pylab.plot([0,1], g_means, 'g')
74 pylab.plot([0,1], b_means, 'b')
test_linearity.py 84 pylab.plot(sensitivities, r_means, 'r')
85 pylab.plot(sensitivities, g_means, 'g')
86 pylab.plot(sensitivities, b_means, 'b')
90 # Check that each plot is actually linear.
test_param_color_correction.py 84 # Draw a plot.
86 pylab.plot(domain, r_means, 'r')
87 pylab.plot(domain, g_means, 'g')
88 pylab.plot(domain, b_means, 'b')
test_post_raw_sensitivity_boost.py 113 pylab.plot(xs, [rgb[0] for rgb in raw_rgb_means], 'r')
114 pylab.plot(xs, [rgb[1] for rgb in raw_rgb_means], 'g')
115 pylab.plot(xs, [rgb[2] for rgb in raw_rgb_means], 'b')
119 pylab.plot(xs, [rgb[0] for rgb in yuv_rgb_means], 'r')
120 pylab.plot(xs, [rgb[1] for rgb in yuv_rgb_means], 'g')
121 pylab.plot(xs, [rgb[2] for rgb in yuv_rgb_means], 'b')
  /external/chromium-trace/catapult/third_party/flot/
jquery.flot.symbol.js 17 function processRawData(plot, series, datapoints) {
62 function init(plot) {
63 plot.hooks.processDatapoints.push(processRawData);
66 $.plot.plugins.push({
jquery.flot.symbol.min.js 7 (function($){function processRawData(plot,series,datapoints){var handlers={square:function(ctx,x,y,radius,shadow){var size=radius*Math.sqrt(Math.PI)/2;ctx.rect(x-size,y-size,size+size,size+size)},diamond:function(ctx,x,y,radius,shadow){var size=radius*Math.sqrt(Math.PI/2);ctx.moveTo(x-size,y);ctx.lineTo(x,y-size);ctx.lineTo(x+size,y);ctx.lineTo(x,y+size);ctx.lineTo(x-size,y)},triangle:function(ctx,x,y,radius,shadow){var size=radius*Math.sqrt(2*Math.PI/Math.sin(Math.PI/3));var height=size*Math.sin(Math.PI/3);ctx.moveTo(x-size/2,y+height/2);ctx.lineTo(x+size/2,y+height/2);if(!shadow){ctx.lineTo(x,y-height/2);ctx.lineTo(x-size/2,y+height/2)}},cross:function(ctx,x,y,radius,shadow){var size=radius*Math.sqrt(Math.PI)/2;ctx.moveTo(x-size,y-size);ctx.lineTo(x+size,y+size);ctx.moveTo(x-size,y+size);ctx.lineTo(x+size,y-size)}};var s=series.points.symbol;if(handlers[s])series.points.symbol=handlers[s]}function init(plot){plot.hooks.processDatapoints.push(processRawData)}$.plot.plugins.push({init:init,name:"symbols",version:"1.0"})})(jQuery)
jquery.flot.fillbetween.js 18 $.plot($("#placeholder"), dataset, { lines: { show: true, fill: true }});
40 function init( plot ) {
62 function computeFillBottoms( plot, s, datapoints ) {
68 var other = findBottomSeries( s, plot.getData() );
216 plot.hooks.processDatapoints.push( computeFillBottoms );
219 $.plot.plugins.push({
jquery.flot.fillbetween.min.js 7 (function($){var options={series:{fillBetween:null}};function init(plot){function findBottomSeries(s,allseries){var i;for(i=0;i<allseries.length;++i){if(allseries[i].id===s.fillBetween){return allseries[i]}}if(typeof s.fillBetween==="number"){if(s.fillBetween<0||s.fillBetween>=allseries.length){return null}return allseries[s.fillBetween]}return null}function computeFillBottoms(plot,s,datapoints){if(s.fillBetween==null){return}var other=findBottomSeries(s,plot.getData());if(!other){return}var ps=datapoints.pointsize,points=datapoints.points,otherps=other.datapoints.pointsize,otherpoints=other.datapoints.points,newpoints=[],px,py,intery,qx,qy,bottom,withlines=s.lines.show,withbottom=ps>2&&datapoints.format[2].y,withsteps=withlines&&s.lines.steps,fromgap=true,i=0,j=0,l,m;while(true){if(i>=points.length){break}l=newpoints.length;if(points[i]==null){for(m=0;m<ps;++m){newpoints.push(points[i+m])}i+=ps}else if(j>=otherpoints.length){if(!withlines){for(m=0;m<ps;++m){newpoints.push(points[i+m])}}i+=ps}else if(otherpoints[j]==null){for(m=0;m<ps;++m){newpoints.push(null)}fromgap=true;j+=otherps}else{px=points[i];py=points[i+1];qx=otherpoints[j];qy=otherpoints[j+1];bottom=0;if(px===qx){for(m=0;m<ps;++m){newpoints.push(points[i+m])}bottom=qy;i+=ps;j+=otherps}else if(px>qx){if(withlines&&i>0&&points[i-ps]!=null){intery=py+(points[i-ps+1]-py)*(qx-px)/(points[i-ps]-px);newpoints.push(qx);newpoints.push(intery);for(m=2;m<ps;++m){newpoints.push(points[i+m])}bottom=qy}j+=otherps}else{if(fromgap&&withlines){i+=ps;continue}for(m=0;m<ps;++m){newpoints.push(points[i+m])}if(withlines&&j>0&&otherpoints[j-otherps]!=null){bottom=qy+(otherpoints[j-otherps+1]-qy)*(px-qx)/(otherpoints[j-otherps]-qx)}i+=ps}fromgap=false;if(l!==newpoints.length&&withbottom){newpoints[l+2]=bottom}}if(withsteps&&l!==newpoints.length&&l>0&&newpoints[l]!==null&&newpoints[l]!==newpoints[l-ps]&&newpoints[l+1]!==newpoints[l-ps+1]){for(m=0;m<ps;++m){newpoints[l+ps+m]=newpoints[l+m]}newpoints[l+1]=newpoints[l-ps+1]}}datapoints.points=newpoints}plot.hooks.processDatapoints.push(computeFillBottoms)}$.plot.plugins.push({init:init,options:options,name:"fillbetween",version:"1.0"})})(jQuery)
  /external/v8/tools/
plot-timer-events 84 -- $@ $options 2>/dev/null > timer-events.plot
88 cat timer-events.plot
90 cat timer-events.plot | gnuplot > timer-events.png
93 rm -f timer-events.plot
  /external/skia/src/gpu/
GrBatchAtlas.h 130 BatchPlot* plot = fPlotArray[updater.fPlotsToUpdate[i]]; local
131 this->makeMRU(plot);
132 plot->setLastUseToken(batchToken);
152 // index() is a unique id for the plot relative to the owning GrAtlas. genID() is a
153 // monotonically incremented number which is bumped every time this plot is
165 // To manage the lifetime of a plot, we use two tokens. We use the last upload token to
168 // lastUse to determine when we can evict a plot from the cache, ie if the last use has
169 // already flushed through the gpu then we can reuse the plot.
190 // Create a clone of this plot. The cloned plot will take the place of th
    [all...]
  /cts/apps/CameraITS/tests/inprog/
test_black_level.py 84 pylab.plot(range(32), yhist.tolist()[0:32], 'rgb'[si])
85 pylab.plot(range(32), uhist.tolist()[112:144], 'rgb'[si]+'--')
86 pylab.plot(range(32), vhist.tolist()[112:144], 'rgb'[si]+'--')
  /external/autotest/frontend/tko/
graphing_utils.py 114 plot_type: 'Line' or 'Bar', depending on the plot type the user wants
133 raise ValidationError({'plot' : 'Plot must be either Line or Bar'})
180 Given all the data for the metrics, create a line plot.
182 plots: list of dicts containing the plot data. Each dict contains:
183 x: list of x-values for the plot
187 label: plot title
192 # single plot
206 # Plot all the data
207 for plot_index, (plot, color) in enumerate(zip(plots, _colors(len(plots))))
    [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/v8/tools/profviz/
profviz.js 104 "plot",
121 this.plot.style.webkitFilter = "grayscale(1)";
129 this.plot.style.webkitFilter = "";
141 this.toggle("plot");
142 this.plot.src = "";
148 if (this.toggledisplay.next_mode == "plot") {
150 this.plot.style.display = "block";
154 this.toggledisplay.next_mode = "plot";
155 this.plot.style.display = "none";
157 this.toggledisplay.innerHTML = "Show plot";
    [all...]
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
XYSeriesFormatter.java 58 * subclasses are forced to take a Plot instead of an XYPlot as a parameter,
60 * @param plot
64 public abstract SeriesRenderer getRendererInstance(XYPlot plot);
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
metric_recorder.h 58 bool plot; member in struct:webrtc::testing::bwe::PlotInformation
121 void set_plot_available_capacity(bool plot) {
122 plot_information_[kTotalAvailable].plot = plot;
125 void PauseFlow(); // Plot zero.
126 void ResumeFlow(int64_t paused_time_ms); // Plot zero.
  /system/extras/memcpy-perf/
graph_memcpy.py 29 line, = ax.plot(size, perf, '-', linewidth=0.2, label=arg)
  /external/webrtc/webrtc/modules/audio_processing/transient/test/
plotDetection.m 12 plot(tx, x, td, d);
  /external/skia/bench/
ChartBench.cpp 30 // Generates a path to stroke along the top of each plot and a fill path for the area below each
31 // plot. The fill path is bounded below by the bottomData plot points or a horizontal line at
39 SkPath* plot, SkPath* fill) {
40 plot->rewind();
42 plot->incReserve(topData.count());
54 plot->moveTo(x, topData[leftShift]);
58 plot->lineTo(x, topData[i + leftShift]);
64 plot->lineTo(x, topData[i]);
87 // A set of scrolling line plots with the area between each plot filled. Stresses out GPU pat
    [all...]

Completed in 1415 milliseconds

1 23 4 5 6 7