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

1 23 4

  /external/chromium_org/third_party/openssl/openssl/apps/
apps.c 20 * This can be in the form of a textual message at program startup or
35 * The word 'cryptographic' can be left out if the rouines from the library
657 BIO_printf(err, "Can't read environment variable %s\n", arg + 4);
666 BIO_printf(err, "Can't open file %s\n", arg + 5);
683 BIO_printf(err, "Can't access file descriptor %s\n", arg + 3);
686 /* Can't do BIO_gets on an fd BIO so add a buffering BIO */
693 BIO_printf(err, "Can't open BIO for stdin\n");
    [all...]
  /external/libvpx/libvpx/vp9/common/arm/neon/
vp9_mb_lpf_neon.asm 5 ; that can be found in the LICENSE file in the root of the source
6 ; tree. An additional intellectual property rights grant can be found
443 ; TODO(fgalligan): Can I decrease the cycles shifting to consective d's
  /external/openssl/apps/
apps.c 20 * This can be in the form of a textual message at program startup or
35 * The word 'cryptographic' can be left out if the rouines from the library
657 BIO_printf(err, "Can't read environment variable %s\n", arg + 4);
666 BIO_printf(err, "Can't open file %s\n", arg + 5);
683 BIO_printf(err, "Can't access file descriptor %s\n", arg + 3);
686 /* Can't do BIO_gets on an fd BIO so add a buffering BIO */
693 BIO_printf(err, "Can't open BIO for stdin\n");
    [all...]
  /external/tremolo/Tremolo/
mdctLARM.s 201 @ Can save a cycle here, at the cost of 1bit errors in rounding
240 @ Can save a cycle here, at the cost of 1bit errors in rounding
  /external/icu4c/data/
makedata.mak 26 !ERROR Can't find ICUMAKE (ICU Data Make dir, should point to icu\source\data\ )!
159 # This variable can be overridden to "-m static" by the project settings,
    [all...]
  /external/openssh/
sftp.c 800 error("Can't ls: \"%s\" not found", path);
1029 * escaping. NB. string can grow here.
1098 * glob(3) wildcards. NB. string can grow
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
dygraph-combined.js 1 DygraphLayout=function(b,a){this.dygraph_=b;this.options={};Dygraph.update(this.options,a?a:{});this.datasets=new Array();this.annotations=new Array()};DygraphLayout.prototype.attr_=function(a){return this.dygraph_.attr_(a)};DygraphLayout.prototype.addDataset=function(a,b){this.datasets[a]=b};DygraphLayout.prototype.setAnnotations=function(d){var e=this.attr_("xValueParser");for(var c=0;c<d.length;c++){var b={};if(!d[c].xval&&!d[c].x){this.dygraph_.error("Annotations must have an 'x' property");return}if(d[c].icon&&!(d[c].hasOwnProperty("width")&&d[c].hasOwnProperty("height"))){this.dygraph_.error("Must set width and height when setting annotation.icon property");return}Dygraph.update(b,d[c]);if(!b.xval){b.xval=e(b.x)}this.annotations.push(b)}};DygraphLayout.prototype.evaluate=function(){this._evaluateLimits();this._evaluateLineCharts();this._evaluateLineTicks();this._evaluateAnnotations()};DygraphLayout.prototype._evaluateLimits=function(){this.minxval=this.maxxval=null;if(this.options.dateWindow){this.minxval=this.options.dateWindow[0];this.maxxval=this.options.dateWindow[1]}else{for(var c in this.datasets){if(!this.datasets.hasOwnProperty(c)){continue}var d=this.datasets[c];var b=d[0][0];if(!this.minxval||b<this.minxval){this.minxval=b}var a=d[d.length-1][0];if(!this.maxxval||a>this.maxxval){this.maxxval=a}}}this.xrange=this.maxxval-this.minxval;this.xscale=(this.xrange!=0?1/this.xrange:1);this.minyval=this.options.yAxis[0];this.maxyval=this.options.yAxis[1];this.yrange=this.maxyval-this.minyval;this.yscale=(this.yrange!=0?1/this.yrange:1)};DygraphLayout.prototype._evaluateLineCharts=function(){this.points=new Array();for(var e in this.datasets){if(!this.datasets.hasOwnProperty(e)){continue}var d=this.datasets[e];for(var b=0;b<d.length;b++){var c=d[b];var a={x:((parseFloat(c[0])-this.minxval)*this.xscale),y:1-((parseFloat(c[1])-this.minyval)*this.yscale),xval:parseFloat(c[0]),yval:parseFloat(c[1]),name:e};if(a.y<=0){a.y=0}if(a.y>=1){a.y=1}this.points.push(a)}}};DygraphLayout.prototype._evaluateLineTicks=function(){this.xticks=new Array();for(var c=0;c<this.options.xTicks.length;c++){var b=this.options.xTicks[c];var a=b.label;var d=this.xscale*(b.v-this.minxval);if((d>=0)&&(d<=1)){this.xticks.push([d,a])}}this.yticks=new Array();for(var c=0;c<this.options.yTicks.length;c++){var b=this.options.yTicks[c];var a=b.label;var d=1-(this.yscale*(b.v-this.minyval));if((d>=0)&&(d<=1)){this.yticks.push([d,a])}}};DygraphLayout.prototype.evaluateWithError=function(){this.evaluate();if(!this.options.errorBars){return}var d=0;for(var g in this.datasets){if(!this.datasets.hasOwnProperty(g)){continue}var c=0;var f=this.datasets[g];for(var c=0;c<f.length;c++,d++){var e=f[c];var a=parseFloat(e[0]);var b=parseFloat(e[1]);if(a==this.points[d].xval&&b==this.points[d].yval){this.points[d].errorMinus=parseFloat(e[2]);this.points[d].errorPlus=parseFloat(e[3])}}}};DygraphLayout.prototype._evaluateAnnotations=function(){var f={};for(var d=0;d<this.annotations.length;d++){var b=this.annotations[d];f[b.xval+","+b.series]=b}this.annotated_points=[];for(var d=0;d<this.points.length;d++){var e=this.points[d];var c=e.xval+","+e.name;if(c in f){e.annotation=f[c];this.annotated_points.push(e)}}};DygraphLayout.prototype.removeAllDatasets=function(){delete this.datasets;this.datasets=new Array()};DygraphLayout.prototype.updateOptions=function(a){Dygraph.update(this.options,a?a:{})};DygraphCanvasRenderer=function(c,b,d,a){this.dygraph_=c;this.options={strokeWidth:0.5,drawXAxis:true,drawYAxis:true,axisLineColor:"black",axisLineWidth:0.5,axisTickSize:3,axisLabelColor:"black",axisLabelFont:"Arial",axisLabelFontSize:9,axisLabelWidth:50,drawYGrid:true,drawXGrid:true,gridLineColor:"rgb(128,128,128)",fillAlpha:0.15,underlayCallback:null};Dygraph.update(this.options,a);this.layout=d;this.element=b;this.container=this.element.parentNode;this.height=this.element.height;this.width=this.element.width;if(!this.isIE&&!(DygraphCanvasRenderer.isSupported(this.element))){throw"Canvas is not supported."}this.xlabels=new Array();this.ylabels=new Array();this.annotations=new Array();this.area={x:this.options.yAxisLabelWidth+2*this.options.axisTickSize,y:0};this.area.w=this.width-this.area.x-this.options.rightGap;this.area.h=this.height-this.options.axisLabelFontSize-2*this.options.axisTickSize;this.container.style.position="relative";this.container.style.width=this.width+"px"};DygraphCanvasRenderer.prototype.clear=function(){if(this.isIE){try{if(this.clearDelay){this.clearDelay.cancel();this.clearDelay=null}var b=this.element.getContext("2d")}catch(d){this.clearDelay=MochiKit.Async.wait(this.IEDelay);this.clearDelay.addCallback(bind(this.clear,this));return}}var b=this.element.getContext("2d");b.clearRect(0,0,this.width,this.height);for(var a=0;a<this.xlabels.length;a++){var c=this.xlabels[a];c.parentNode.removeChild(c)}for(var a=0;a<this.ylabels.length;a++){var c=this.ylabels[a];c.parentNode.removeChild(c)}for(var a=0;a<this.annotations.length;a++){var c=this.annotations[a];c.parentNode.removeChild(c)}this.xlabels=new Array();this.ylabels=new Array();this.annotations=new Array()};DygraphCanvasRenderer.isSupported=function(g){var b=null;try{if(typeof(g)=="undefined"||g==null){b=document.createElement("canvas")}else{b=g}var c=b.getContext("2d")}catch(d){var f=navigator.appVersion.match(/MSIE (\d\.\d)/);var a=(navigator.userAgent.toLowerCase().indexOf("opera")!=-1);if((!f)||(f[1]<6)||(a)){return false}return true}return true};DygraphCanvasRenderer.prototype.render=function(){var b=this.element.getContext("2d");if(this.options.underlayCallback){this.options.underlayCallback(b,this.area,this.layout,this.dygraph_)}if(this.options.drawYGrid){var d=this.layout.yticks;b.save();b.strokeStyle=this.options.gridLineColor;b.lineWidth=this.options.axisLineWidth;for(var c=0;c<d.length;c++){var a=this.area.x;var e=this.area.y+d[c][0]*this.area.h;b.beginPath();b.moveTo(a,e);b.lineTo(a+this.area.w,e);b.closePath();b.stroke()}}if(this.options.drawXGrid){var d=this.layout.xticks;b.save();b.strokeStyle=this.options.gridLineColor;b.lineWidth=this.options.axisLineWidth;for(var c=0;c<d.length;c++){var a=this.area.x+d[c][0]*this.area.w;var e=this.area.y+this.area.h;b.beginPath();b.moveTo(a,e);b.lineTo(a,this.area.y);b.closePath();b.stroke()}}this._renderLineChart();this._renderAxis();this._renderAnnotations()};DygraphCanvasRenderer.prototype._renderAxis=function(){if(!this.options.drawXAxis&&!this.options.drawYAxis){return}var b=this.element.getContext("2d");var g={position:"absolute",fontSize:this.options.axisLabelFontSize+"px",zIndex:10,color:this.options.axisLabelColor,width:this.options.axisLabelWidth+"px",overflow:"hidden"};var d=function(o){var q=document.createElement("div");for(var p in g){if(g.hasOwnProperty(p)){q.style[p]=g[p]}}q.appendChild(document.createTextNode(o));return q};b.save();b.strokeStyle=this.options.axisLineColor;b.lineWidth=this.options.axisLineWidth;if(this.options.drawYAxis){if(this.layout.yticks&&this.layout.yticks.length>0){for(var e=0;e<this.layout.yticks.length;e++){var f=this.layout.yticks[e];if(typeof(f)=="function"){return}var l=this.area.x;var j=this.area.y+f[0]*this.area.h;b.beginPath();b.moveTo(l,j);b.lineTo(l-this.options.axisTickSize,j);b.closePath();b.stroke();var k=d(f[1]);var h=(j-this.options.axisLabelFontSize/2);if(h<0){h=0}if(h+this.options.axisLabelFontSize+3>this.height){k.style.bottom="0px"}else{k.style.top=h+"px"}k.style.left="0px";k.style.textAlign="right";k.style.width=this.options.yAxisLabelWidth+"px";this.container.appendChild(k);this.ylabels.push(k)}var m=this.ylabels[0];var n=this.options.axisLabelFontSize;var a=parseInt(m.style.top)+n;if(a>this.height-n){m.style.top=(parseInt(m.style.top)-n/2)+"px"}}b.beginPath();b.moveTo(this.area.x,this.area.y);b.lineTo(this.area.x,this.area.y+this.area.h);b.closePath();b.stroke()}if(this.options.drawXAxis){if(this.layout.xticks){for(var e=0;e<this.layout.xticks.length;e++){var f=this.layout.xticks[e];if(typeof(dataset)=="function"){return}var l=this.area.x+f[0]*this.area.w;var j=this.area.y+this.area.h;b.beginPath();b.moveTo(l,j);b.lineTo(l,j+this.options.axisTickSize);b.closePath();b.stroke();var k=d(f[1]);k.style.textAlign="center";k.style.bottom="0px";var c=(l-this.options.axisLabelWidth/2);if(c+this.options.axisLabelWidth>this.width){c=this.width-this.options.xAxisLabelWidth;k.style.textAlign="right"}if(c<0){c=0;k.style.textAlign="left"}k.style.left=c+"px";k.style.width=this.options.xAxisLabelWidth+"px";this.container.appendChild(k);this.xlabels.push(k)}}b.beginPath();b.moveTo(this.area.x,this.area.y+this.area.h);b.lineTo(this.area.x+this.area.w,this.area.y+this.area.h);b.closePath();b.stroke()}b.restore()};DygraphCanvasRenderer.prototype._renderAnnotations=function(){var h={position:"absolute",fontSize:this.options.axisLabelFontSize+"px",zIndex:10,overflow:"hidden"};var j=function(q,r,s,a){return function(t){var p=s.annotation;if(p.hasOwnProperty(q)){p[q](p,s,a.dygraph_,t)}else{if(a.dygraph_.attr_(r)){a.dygraph_.attr_(r)(p,s,a.dygraph_,t)}}}};var m=this.layout.annotated_points;for(var g=0;g<m.length;g++){var e=m[g];if(e.canvasx<this.area.x||e.canvasx>this.area.x+this.area.w){continue}var k=e.annotation;var l=6;if(k.hasOwnProperty("tickHeight")){l=k.tickHeight}var c=document.createElement("div");for(var b in h){if(h.hasOwnProperty(b)){c.style[b]=h[b]}}if(!k.hasOwnProperty("icon")){c.className="dygraphDefaultAnnotation"}if(k.hasOwnProperty("cssClass")){c.className+=" "+k.cssClass}var d=k.hasOwnProperty("width")?k.width:16;var n=k.hasOwnProperty("height")?k.height:16;if(k.hasOwnProperty("icon")){var f=document.createElement("img");f.src=k.icon;f.width=d;f.height=n;c.appendChild(f)}else{if(e.annotation.hasOwnProperty("shortText")){c.appendChild(document.createTextNode(e.annotation.shortText))}}c.style.left=(e.canvasx-d/2)+"px";if(k.attachAtBottom){c.style.top=(this.area.h-n-l)+"px"}else{c.style.top=(e.canvasy-n-l)+"px"}c.style.width=d+"px";c.style.height=n+"px";c.title=e.annotation.text;c.style.color=this.colors[e.name];c.style.borderColor=this.colors[e.name];k.div=c;Dygraph.addEvent(c,"click",j("clickHandler","annotationClickHandler",e,this));Dygraph.addEvent(c,"mouseover",j("mouseOverHandler","annotationMouseOverHandler",e,this));Dygraph.addEvent(c,"mouseout",j("mouseOutHandler","annotationMouseOutHandler",e,this));Dygraph.addEvent(c,"dblclick",j("dblClickHandler","annotationDblClickHandler",e,this));this.container.appendChild(c);this.annotations.push(c);var o=this.element.getContext("2d");o.strokeStyle=this.colors[e.name];o.beginPath();if(!k.attachAtBottom){o.moveTo(e.canvasx,e.canvasy);o.lineTo(e.canvasx,e.canvasy-2-l)}else{o.moveTo(e.canvasx,this.area.h);o.lineTo(e.canvasx,this.area.h-2-l)}o.closePath();o.stroke()}};DygraphCanvasRenderer.prototype._renderLineChart=function(){var c=this.element.getContext("2d");var f=this.options.colorScheme.length;var o=this.options.colorScheme;var z=this.options.fillAlpha;var E=this.layout.options.errorBars;var t=this.layout.options.fillGraph;var d=this.layout.options.stackedGraph;var l=this.layout.options.stepPlot;var G=[];for(var H in this.layout.datasets){if(this.layout.datasets.hasOwnProperty(H)){G.push(H)}}var A=G.length;this.colors={};for(var C=0;C<A;C++){this.colors[G[C]]=o[C%f]}for(var C=0;C<this.layout.points.length;C++){var v=this.layout.points[C];v.canvasx=this.area.w*v.x+this.area.x;v.canvasy=this.area.h*v.y+this.area.y}var p=function(j){return j&&!isNaN(j)};var u=c;if(E){if(t){this.dygraph_.warn("Can't use fillGraph option with error bars")}for(var C=0;C<A;C++){var k=G[C];var x=this.colors[k];u.sa (…)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
SDL_fbvideo.c 5 This library is free software; you can redistribute it and/or
110 /* You can generate these timings from your XF86Config file using
175 #error Can not determine system page size.
181 /* Small wrapper for mmap() so we can play nicely with no-mmu hosts
621 can take advantage of any supported hardware acceleration.
    [all...]
  /build/core/
main.mk 31 # it can be "", whereas TOP must be "." which causes
47 $(warning * Android can only be built by versions 3.81 and 3.82.)
129 # build system can't deal with them.
223 # You can only enable it by adding "incrementaljavac" to your make command line.
381 # additional storage requirements for ".odex" files can cause /system
441 # Typical build; include any Android.mk files we can find.
450 # the PRODUCT_* values so that later we can verify they are not modified.
485 # Can't use first-makefiles-under here because
496 # Now with all Android.mks loaded we can do post cleaning steps.
536 # This can only happen now, after we've read in all module makefiles
    [all...]
  /external/chromium_org/v8/src/
string.js 204 // This has the same size as the lastMatchInfo array, and can be used for
206 // needle is a string rather than a regexp. In this case we can't update
455 // this case we can simplify quite a bit and end up with something faster.
539 // Can't use matchInfo any more from here, since the function could
messages.js 147 object_not_extensible: ["Can't add property ", "%0", ", object is not extensible"],
170 strict_function: ["In strict mode code, functions can only be declared at top level or immediately within another function." ],
237 // To determine whether we can safely stringify an object using ErrorToString
299 // Script objects can only be created by the VM.
    [all...]
  /external/clang/include/clang/AST/
Type.h 132 /// This object can be modified without requiring retains or
325 // Fast qualifiers are those that can be allocated directly
406 /// qualifiers can be safely used as an object with these qualifiers.
411 // ObjC GC qualifiers can match, be added, or be removed, but can't be
696 // Don't promise in the API that anything besides 'const' can be
    [all...]
  /external/v8/src/
string.js 210 // This has the same size as the lastMatchInfo array, and can be used for
212 // needle is a string rather than a regexp. In this case we can't update
343 // digit capture references, we can only enter here when a
507 // Can't use matchInfo any more from here, since the function could
841 // machine. Maybe we can find another way of doing this?
messages.js 65 // instanceof $Error" because user code can replace
124 // Script objects can only be created by the VM.
216 "object_not_extensible", ["Can't add property ", "%0", ", object is not extensible"],
239 "strict_function", ["In strict mode code, functions can only be declared at top level or immediately within another function." ],
759 // can't rely on 'this' being the same as 'obj'.
    [all...]
  /external/chromium_org/third_party/libxml/src/
runtest.c     [all...]
  /external/chromium_org/tools/symsrc/
pefile.py 610 The list can be indented with the optional argument 'indent'.
619 The line can be indented with the optional argument 'indent'.
628 The text can be indented with the optional argument 'indent'.
    [all...]
  /external/chromium/chrome/browser/resources/bookmark_manager/js/
main.js 2 // Use of this source code is governed by a BSD-style license that can be
155 // We listen to hashchange so that we can update the currently shown folder when
353 // Now we can select a tree item.
404 * This is a first pass wether we can drop the dragged items.
449 * Whether we can drop the dragged items above the drop target.
455 * @return {boolean} Whether we can drop the dragged items above the drop
468 // We can only drop between items in the tree if we have any folders.
495 * Whether we can drop the dragged items below the drop target.
501 * @return {boolean} Whether we can drop the dragged items below the drop
512 // We can only drop between items in the tree if we have any folders
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/js/
directory_model.js 2 // Use of this source code is governed by a BSD-style license that can be
    [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Tree.pas 83 /// Return a nil node (an empty but non-null node) that can hold
96 /// <para>You must specify the input stream so that the erroneous text can
120 /// can decide it is ok to move children to t via t.children = child.children;
181 /// For identifying trees. How to identify nodes so we can say "add node
241 /// <summary>Node constructors can set the type of a node </summary>
246 /// <summary>Node constructors can set the text of a node </summary>
256 /// store information that can lead you to the token, you can create
325 /// Can't replace whatever points to the parent externally. Do nothing.
364 /// If the stream does not buffer all the nodes then it can stil
    [all...]
  /ndk/build/core/
definitions.mk 170 # $1: start (tenth) index. Can be 0
    [all...]
  /external/grub/docs/
texinfo.tex 12 % This texinfo.tex file is free software; you can redistribute it and/or
32 % reports; you can get the latest version from:
40 % complete document in each bug report with which we can reproduce the
45 % manual foo.texi, however, you can get away with this:
56 % extent. You can get the existing language-specific files from the
74 % For @tex, we can use \tabalign.
207 % \vadjust can only be used in horizontal mode.
492 % whether the environment name matches. The \checkenv macro can also be
522 \errmessage{This command can appear only \inenvironment\temp,
556 % and you can use @w{...} around a quote to suppress ligatures
    [all...]
  /external/chromium_org/chrome/browser/resources/ntp_android/
ntp_android.js 2 // Use of this source code is governed by a BSD-style license that can be
198 * Whether incognito mode is enabled. (It can be blocked e.g. with a policy.)
355 * The minimum amount of time that 'Loading...' can be displayed. This is to
735 // Use a container so that the fold it self can be zoomed without
815 // quickly tapping, which can happen if the start and stop events are
    [all...]
  /external/chromium_org/third_party/sqlite/src/tool/
lemon.c 172 Boolean lambda; /* True if NT and can generate an empty string */
275 ** static variables. Fields in the following structure can be thought
605 ** an empty offset in the aAction[] table in which we can add the
684 ** The first set is the set of all terminal symbols which can begin
746 ** can be computed later.
866 ** state is any state which can be reached by a shift action.
884 if( cfp->dot>=cfp->rp->nrhs ) continue; /* Can't shift this config */
893 if( bcfp->dot>=bcfp->rp->nrhs ) continue; /* Can't shift this one */
    [all...]
  /external/chromium_org/v8/tools/profviz/
gnuplot-4.6.3-emscripten.js 31 // whose changes to gnuplot's source files can be found below [4] in
149 // We can do very little here...
485 // Note: LLVM optimizations can inline and remove functions, after which you will not be
486 // able to call them. Closure can also do so. To avoid that, add your function to
494 // @param argTypes An array of the types of arguments for the function (if there are no arguments, this can be ommitted). Types are as in returnType,
547 // returns a function you can call repeatedly in a normal way. For example:
610 // allocate(): This is for internal use. You can use it yourself as well, but the interface
698 var MAX_CHUNK = 1024; // split up into chunks, because .apply on a huge string can overflow the stack
847 if (value >= half && (bits <= 32 || value > half)) { // for huge values, we can hit the precision limit and always get true here. so don't do that
865 // Note that you can add dependencies in preRun, even thoug
    [all...]
  /external/bison/build-aux/
texinfo.tex 12 % This texinfo.tex file is free software: you can redistribute it and/or
30 % reports; you can get the latest version from:
38 % complete document in each bug report with which we can reproduce the
43 % manual foo.texi, however, you can get away with this:
54 % extent. You can get the existing language-specific files from the
71 % For @tex, we can use \tabalign.
275 % one after. I won't pretend I can describe this better than DEK...
524 % whether the environment name matches. The \checkenv macro can also be
554 \errmessage{This command can appear only \inenvironment\temp,
639 % Another complication is that the group might be very large. This can
    [all...]

Completed in 1865 milliseconds

1 23 4