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

1 2 3 45 6 7

  /prebuilts/tools/common/jfreechart/
jfreechart-1.0.9.jar 
jfreechart-1.0.9-swt.jar 
  /prebuilts/tools/common/m2/repository/jfree/jfreechart/1.0.9/
jfreechart-1.0.9.jar 
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/
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);
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);
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
metric_recorder.cc 101 plot_information_[i].plot = false;
104 plot_information_[i].plot = plot_loss;
107 plot_information_[i].plot = plot_delay;
110 plot_information_[i].plot = true;
117 if (plot_information_[i].plot &&
356 if (plot_information_[i].plot) {
  /cts/apps/CameraITS/tests/scene1/
test_dng_noise_model.py 94 pylab.plot(sensitivities, var_expected[ch], "rgkb"[ch],
96 pylab.plot(sensitivities, var_measured[ch], "rgkb"[ch]+"--",
test_ev_compensation_basic.py 66 pylab.plot(evs, lumas, 'r')
test_raw_sensitivity.py 71 pylab.plot(range(len(variances)), variances)
  /development/tools/axl/
chewie.py 151 # pylab.plot([vals[-1][6]], rng)
154 pylab.plot(opened, rng, 'ro')
155 pylab.plot(killed[1], killed[0], 'rx')
179 # pylab.plot(lines, [[x, x] for x in range(len(vals))], 'r-')
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/pie/
SegmentFormatter.java 128 public SeriesRenderer getRendererInstance(PieChart plot) {
129 return new PieRenderer(plot);
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
LineAndPointFormatter.java 91 public SeriesRenderer getRendererInstance(XYPlot plot) {
92 return new LineAndPointRenderer(plot);
  /external/eigen/bench/btl/data/
mk_new_gnuplot.sh 28 echo plot \\ >> $WHAT.gnuplot
54 # pstoedit -rotate -90 -xscale 0.8 -yscale 0.8 -centered -yshift -50 -xshift -100 -f plot-svg aat.ps aat2.svg
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/estimators/
remb.cc 64 RembReceiver::RembReceiver(int flow_id, bool plot)
67 plot_estimate_(plot),
  /cts/apps/CameraITS/tests/scene0/
test_jitter.py 54 # Draw a plot.
55 pylab.plot(range(len(deltas_ms)), deltas_ms)
  /external/chromium-trace/catapult/third_party/flot/
FAQ.md 47 instead of $, e.g. call jQuery.plot instead of $.plot and use
jquery.flot.js 122 // re-calculating them when the plot is re-rendered in a loop.
135 throw new Error("Invalid dimensions for plot, width = " + width + ", height = " + height);
506 // The top-level container for the entire plot.
508 function Plot(placeholder, data_, options_, plugins) {
524 position: "ne", // position of default legend container within plot
525 margin: 5, // distance from grid edge to default legend container within plot
617 surface = null, // the canvas for the plot itself
618 overlay = null, // canvas for interactive stuff on top of plot
636 plot = this;
639 plot.setData = setData
    [all...]
jquery.flot.min.js 7 (function($){$.color={};$.color.make=function(r,g,b,a){var o={};o.r=r||0;o.g=g||0;o.b=b||0;o.a=a!=null?a:1;o.add=function(c,d){for(var i=0;i<c.length;++i)o[c.charAt(i)]+=d;return o.normalize()};o.scale=function(c,f){for(var i=0;i<c.length;++i)o[c.charAt(i)]*=f;return o.normalize()};o.toString=function(){if(o.a>=1){return"rgb("+[o.r,o.g,o.b].join(",")+")"}else{return"rgba("+[o.r,o.g,o.b,o.a].join(",")+")"}};o.normalize=function(){function clamp(min,value,max){return value<min?min:value>max?max:value}o.r=clamp(0,parseInt(o.r),255);o.g=clamp(0,parseInt(o.g),255);o.b=clamp(0,parseInt(o.b),255);o.a=clamp(0,o.a,1);return o};o.clone=function(){return $.color.make(o.r,o.b,o.g,o.a)};return o.normalize()};$.color.extract=function(elem,css){var c;do{c=elem.css(css).toLowerCase();if(c!=""&&c!="transparent")break;elem=elem.parent()}while(elem.length&&!$.nodeName(elem.get(0),"body"));if(c=="rgba(0, 0, 0, 0)")c="transparent";return $.color.parse(c)};$.color.parse=function(str){var res,m=$.color.make;if(res=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(str))return m(parseInt(res[1],10),parseInt(res[2],10),parseInt(res[3],10));if(res=/rgba\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]+(?:\.[0-9]+)?)\s*\)/.exec(str))return m(parseInt(res[1],10),parseInt(res[2],10),parseInt(res[3],10),parseFloat(res[4]));if(res=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(str))return m(parseFloat(res[1])*2.55,parseFloat(res[2])*2.55,parseFloat(res[3])*2.55);if(res=/rgba\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\s*\)/.exec(str))return m(parseFloat(res[1])*2.55,parseFloat(res[2])*2.55,parseFloat(res[3])*2.55,parseFloat(res[4]));if(res=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(str))return m(parseInt(res[1],16),parseInt(res[2],16),parseInt(res[3],16));if(res=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(str))return m(parseInt(res[1]+res[1],16),parseInt(res[2]+res[2],16),parseInt(res[3]+res[3],16));var name=$.trim(str).toLowerCase();if(name=="transparent")return m(255,255,255,0);else{res=lookupColors[name]||[0,0,0];return m(res[0],res[1],res[2])}};var lookupColors={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0]}})(jQuery);(function($){var hasOwnProperty=Object.prototype.hasOwnProperty;if(!$.fn.detach){$.fn.detach=function(){return this.each(function(){if(this.parentNode){this.parentNode.removeChild(this)}})}}function Canvas(cls,container){var element=container.children("."+cls)[0];if(element==null){element=document.createElement("canvas");element.className=cls;$(element).css({direction:"ltr",position:"absolute",left:0,top:0}).appendTo(container);if(!element.getContext){if(window.G_vmlCanvasManager){element=window.G_vmlCanvasManager.initElement(element)}else{throw new Error("Canvas is not available. If you're using IE with a fall-back such as Excanvas, then there's either a mistake in your conditional include, or the page has no DOCTYPE and is rendering in Quirks Mode.")}}}this.element=element;var context=this.context=element.getContext("2d");var devicePixelRatio=window.devicePixelRatio||1,backingStoreRatio=context.webkitBackingStorePixelRatio||context.mozBackingStorePixelRatio||context.msBackingStorePixelRatio||context.oBackingStorePixelRatio||context.backingStorePixelRatio||1;this.pixelRatio=devicePixelRatio/backingStoreRatio;this.resize(container.width(),container.height());this.textContainer=null;this.text={};this._textCache={}}Canvas.prototype.resize=function(width,height){if(width<=0||height<=0){throw new Error("Invalid dimensions for plot, width = "+width+", height = "+height)}var element=this.element,context=this.context,pixelRatio=this.pixelRatio;if(this.width!=width){element.width=width*pixelRatio;element.style.width=width+"px";this.width=width}if(this.height!=height){element.height=height*pixelRatio;element.style.height=height+"px";this.height=height}context.restore();context.save();context.scale(pixelRatio,pixelRatio)};Canvas.prototype.clear=function(){this.context.clearRect(0,0,this.width,this.height)};Canvas.prototype.render=function(){var cache=this._textCache;for(var layerKey in cache){if(hasOwnProperty.call(cache,layerKey)){var layer=this.getTextLayer(layerKey),layerCache=cache[layerKey];layer.hide();for(var styleKey in layerCache){if(hasOwnProperty.call(layerCache,styleKey)){var styleCache=layerCache[styleKey];for(var key in styleCache){if(hasOwnProperty.call(styleCache,key)){var positions=styleCache[key].positions;for(var i=0,position;position=positions[i];i++){if(position.active){if(!position.rendered){layer.append(position.element);position.rendered=true}}else{positions.splice(i--,1);if(position.rendered){position.element.detach()}}}if(positions.length==0){delete styleCache[key]}}}}}layer.show()}}};Canvas.prototype.getTextLayer=function(classes){var layer=this.text[classes];if(layer==null){if(this.textContainer==null){this.textContainer=$("<div class='flot-text'></div>").css({position:"absolute",top:0,left:0,bottom:0,right:0,"font-size":"smaller",color:"#545454"}).insertAfter(this.element)}layer=this.text[classes]=$("<div></div>").addClass(classes).css({position:"absolute",top:0,left:0,bottom:0,right:0}).appendTo(this.textContainer)}return layer};Canvas.prototype.getTextInfo=function(layer,text,font,angle,width){var textStyle,layerCache,styleCache,info;text=""+text;if(typeof font==="object"){textStyle=font.style+" "+font.variant+" "+font.weight+" "+font.size+"px/"+font.lineHeight+"px "+font.family}else{textStyle=font}layerCache=this._textCache[layer];if(layerCache==null){layerCache=this._textCache[layer]={}}styleCache=layerCache[textStyle];if(styleCache==null){styleCache=layerCache[textStyle]={}}info=styleCache[text];if(info==null){var element=$("<div></div>").html(text).css({position:"absolute","max-width":width,top:-9999}).appendTo(this.getTextLayer(layer));if(typeof font==="object"){element.css({font:textStyle,color:font.color})}else if(typeof font==="string"){element.addClass(font)}info=styleCache[text]={width:element.outerWidth(true),height:element.outerHeight(true),element:element,positions:[]};element.detach()}return info};Canvas.prototype.addText=function(layer,x,y,text,font,angle,width,halign,valign){var info=this.getTextInfo(layer,text,font,angle,width),positions=info.positions;if(halign=="center"){x-=info.width/2}else if(halign=="right"){x-=info.width}if(valign=="middle"){y-=info.height/2}else if(valign=="bottom"){y-=info.height}for(var i=0,position;position=positions[i];i++){if(position.x==x&&position.y==y){position.active=true;return}}position={active:true,rendered:false,element:positions.length?info.element.clone():info.element,x:x,y:y};positions.push(position);position.element.css({top:Math.round(y),left:Math.round(x),"text-align":halign})};Canvas.prototype.removeText=function(layer,x,y,text,font,angle){if(text==null){var layerCache=this._textCache[layer];if(layerCache!=null){for(var styleKey in layerCache){if(hasOwnProperty.call(layerCache,styleKey)){var styleCache=layerCache[styleKey];for(var key in styleCache){if(hasOwnProperty.call(styleCache,key)){var positions=styleCache[key].positions;for(var i=0,position;position=positions[i];i++){position.active=false}}}}}}}else{var positions=this.getTextInfo(layer,text,font,angle).positions;for(var i=0,position;position=positions[i];i++){if(position.x==x&&position.y==y){position.active=false}}}};function Plot(placeholder,data_,options_,plugins){var series=[],options={colors:["#edc240","#afd8f8","#cb4b4b","#4da74d","#9440ed"],legend:{show:true,noColumns:1,labelFormatter:null,labelBoxBorderColor:"#ccc",container:null,position:"ne",margin:5,backgroundColor:null,backgroundOpacity:.85,sorted:null},xaxis:{show:null,position:"bottom",mode:null,font:null,color:null,tickColor:null,transform:null,inverseTransform:null,min:null,max:null,autoscaleMargin:null,ticks:null,tickFormatter:null,labelWidth:null,labelHeight:null,reserveSpace:null,tickLength:null,alignTicksWithAxis:null,tickDecimals:null,tickSize:null,minTickSize:null},yaxis:{autoscaleMargin:.02,position:"left"},xaxes:[],yaxes:[],series:{points:{show:false,radius:3,lineWidth:2,fill:true,fillColor:"#ffffff",symbol:"circle"},lines:{lineWidth:2,fill:false,fillColor:null,steps:false},bars:{show:false,lineWidth:2,barWidth:1,fill:true,fillColor:null,align:"left",horizontal:false,zero:true},shadowSize:3,highlightColor:null},grid:{show:true,aboveData:false,color:"#545454",backgroundColor:null,borderColor:null,tickColor:null,margin:0,labelMargin:5,axisMargin:8,borderWidth:2,minBorderMargin:null,markings:null,markingsColor:"#f4f4f4",markingsLineWidth:2,clickable:false,hoverable:false,autoHighlight:true,mouseActiveRadius:10},interaction:{redrawOverlayInterval:1e3/60},hooks:{}},surface=null,overlay=null,eventHolder=null,ctx=null,octx=null,xaxes=[],yaxes=[],plotOffset={left:0,right:0,top:0,bottom:0},plotWidth=0,plotHeight=0,hooks={processOptions:[],processRawData:[],processDatapoints:[],processOffset:[],drawBackground:[],drawSeries:[],draw:[],bindEvents:[],drawOverlay:[],shutdown:[]},plot=this;plot.setData=setData;plot.setupGrid=setupGrid;plot.draw=draw;plot.getPlaceholder=function(){return placeholder};plot.getCanvas=function(){return surface.element};plot.getPlotOffset=function(){return plotOffset};plot.width=function(){return plotWidth};plot.height=function(){return plotHeight};plot.offset=function( (…)
    [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);
  /external/webrtc/tools/cpu/
cpu_mon.py 75 pyplot.plot(s.samples, label=s.Text(), linewidth=2)
  /cts/apps/CameraITS/tests/sensor_fusion/
test_sensor_fusion.py 118 # Plot the camera and gyro traces after applying the best shift.
172 pylab.plot(candidates, dists, 'r', label="data")
173 pylab.plot(xfit, yfit, 'b', label="fit")
174 pylab.plot([exact_best_shift+x for x in [-0.1,0,0.1]], [0,0.01,0], 'b')
183 """Save a plot of the camera vs. gyro rotational measurements.
189 # For the plot, scale the rotations to be in degrees.
194 pylab.plot(range(len(cam_rots)), cam_rots, 'r', label="camera")
195 pylab.plot(range(len(gyro_rots)), gyro_rots, 'b', label="gyro")
  /prebuilts/devtools/tools/lib/
jfreechart-swt-1.0.9.jar 
  /prebuilts/tools/common/m2/repository/jfree/jfreechart-swt/1.0.9/
jfreechart-swt-1.0.9.jar 
  /frameworks/base/core/java/android/gesture/
GestureUtils.java 159 plot(segmentStartX, segmentStartY, sample, bitmapSize);
168 plot(xpos, ypos, sample, bitmapSize); method
177 plot(xpos, ypos, sample, bitmapSize); method
188 plot(xpos, ypos, sample, bitmapSize); method
197 plot(xpos, ypos, sample, bitmapSize); method
209 private static void plot(float x, float y, float[] sample, int sampleSize) { method
  /cts/apps/CameraITS/tests/dng_noise_model/
dng_noise_model.py 166 plt_s.plot(means_e, vars_e, colors[b%len(colors)] + ',')
177 # Add the linear fit to the plot for this sensitivity.
178 plt_s.plot([0, max_signal_level], [O, O + S*max_signal_level], 'r-',
222 # Plot the noise model components with the values predicted by the
249 plt_s.plot([0, max_signal_level], [O, O + S*max_signal_level], 'b-',
255 # Re-save the plot with the global model.

Completed in 1133 milliseconds

1 2 3 45 6 7