HomeSort by relevance Sort by last modified time
    Searched full:datasets (Results 1 - 25 of 117) sorted by null

1 2 3 4 5

  /external/chromium_org/content/browser/resources/gpu/
browser_bridge_tests.js 188 var dataSets = [
320 for (var i = 0; i < dataSets.length; ++i) {
322 optionEl.textContent = dataSets[i].name;
323 optionEl.dataSet = dataSets[i];
327 browserBridge.applySimulatedData_(dataSets[selectEl.selectedIndex]);
331 browserBridge.applySimulatedData_(dataSets[selectEl.selectedIndex]);
344 browserBridge.applySimulatedData_(dataSets[0]);
  /frameworks/base/core/java/android/app/backup/
IRestoreObserver.aidl 28 * Supply a list of the restore datasets available from the current transport. This
33 * describing all of the available datasets that are candidates for restoring to
34 * the current device. If no applicable datasets exist, {@code result} will be
RestoreObserver.java 30 * Supply a list of the restore datasets available from the current transport. This
35 * describing all of the available datasets that are candidates for restoring to
36 * the current device. If no applicable datasets exist, {@code result} will be
  /external/chromium_org/third_party/icu/source/test/perf/perldriver/
Dataset.pm 69 # Divide two Datasets and return a new one, maintaining the
87 # subtracts two Datasets and return a new one, maintaining the
100 # adds two Datasets and return a new one, maintaining the
  /external/icu/icu4c/source/test/perf/perldriver/
Dataset.pm 69 # Divide two Datasets and return a new one, maintaining the
87 # subtracts two Datasets and return a new one, maintaining the
100 # adds two Datasets and return a new one, maintaining the
  /external/chromium_org/third_party/sqlite/src/test/
e_select2.test 52 # This command joins the two datasets and returns the resulting dataset. If
55 # datasets from the specified tables. The [te_join] command is passed the
56 # datasets directly.
65 # cartesian product of the two datasets. The script has 4 arguments appended
102 # These two procs are used to extract datasets from the database, either
350 # left and right-hand datasets.
  /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 (…)
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
genk-timing.py 211 dataSets = [(5000, 3, 50, 0.50), (5000, 10, 100, 0.10), (5000, 10, 5, 0.10), (5000, 10, 1, 0.0),
216 for (numFuncs, elementsPerFunc, funcsBetweenExec, callWeighting) in dataSets:
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
genk-timing.py 211 dataSets = [(5000, 3, 50, 0.50), (5000, 10, 100, 0.10), (5000, 10, 5, 0.10), (5000, 10, 1, 0.0),
216 for (numFuncs, elementsPerFunc, funcsBetweenExec, callWeighting) in dataSets:
  /frameworks/base/core/java/com/android/server/backup/
SystemBackupAgent.java 46 // taken to support the legacy backed-up datasets.
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
compat-queue.h 49 * for applications with large datasets and few or no removals or for
60 * Singly-linked tail queues are ideal for applications with large datasets
  /external/ipsec-tools/src/include-glibc/sys/
queue.h 54 * for applications with large datasets and few or no removals or for
65 * Singly-linked tail queues are ideal for applications with large datasets
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
genk-timing.py 216 dataSets = [(5000, 3, 50, 0.50), (5000, 10, 100, 0.10), (5000, 10, 5, 0.10), (5000, 10, 1, 0.0),
221 for (numFuncs, elementsPerFunc, funcsBetweenExec, callWeighting) in dataSets:
  /external/owasp/sanitizer/tools/findbugs/doc/
demo.html 133 datasets are about a quarter of the sizes of the full datasets.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
locale.h 149 datasets. Unlike for the CATEGORY parameter for `setlocale' the
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
locale.h 149 datasets. Unlike for the CATEGORY parameter for `setlocale' the
  /external/qemu/distrib/sdl-1.2.15/src/stdlib/
SDL_qsort.c 125 * on large datasets for locality-of-reference reasons,
139 * to construct datasets where the algorithm takes
143 * it's easy to construct datasets where median-of-3
  /packages/experimental/procstatlog/
procstatreport.py 135 def WriteChartData(titles, datasets, filename):
140 for set_num, data in enumerate(datasets):
145 num_cols = len(datasets)
  /external/tinyxml/docs/
tutorial0.html 34 Two example XML datasets/files will be used. The first looks like this:<p>
  /prebuilts/tools/common/jfreechart/
README.txt 281 - removed distinction between "primary" and "secondary" datasets,
377 - added support for multiple secondary axes, datasets and
401 datasets in a JTable;
497 - added support for secondary axes, datasets and renderers;
    [all...]
  /prebuilts/tools/common/m2/repository/jfree/jcommon/1.0.12/
README.txt 281 - removed distinction between "primary" and "secondary" datasets,
377 - added support for multiple secondary axes, datasets and
401 datasets in a JTable;
497 - added support for secondary axes, datasets and renderers;
    [all...]
  /prebuilts/tools/common/m2/repository/jfree/jfreechart/1.0.9/
README.txt 281 - removed distinction between "primary" and "secondary" datasets,
377 - added support for multiple secondary axes, datasets and
401 datasets in a JTable;
497 - added support for secondary axes, datasets and renderers;
    [all...]
  /prebuilts/tools/common/m2/repository/jfree/jfreechart-swt/1.0.9/
README.txt 281 - removed distinction between "primary" and "secondary" datasets,
377 - added support for multiple secondary axes, datasets and
401 datasets in a JTable;
497 - added support for secondary axes, datasets and renderers;
    [all...]
  /external/chromium_org/third_party/usrsctp/usrsctplib/
user_queue.h 48 * for applications with large datasets and few or no removals or for
59 * Singly-linked tail queues are ideal for applications with large datasets
  /external/chromium_org/third_party/libevent/compat/sys/
queue.h 50 * for applications with large datasets and few or no removals or for

Completed in 861 milliseconds

1 2 3 4 5