Searched refs:ary (Results 1 - 17 of 17) sorted by relevance

/external/chromium-trace/trace-viewer/src/base/
H A Dsorted_array_utils.js17 * be prearranged such that ary.map(mapFn) would also be sorted in
20 * @param {Array} ary An array of arbitrary objects.
22 * from an element in ary.
24 * @return {Number} Offset o into ary where all ary[i] for i <= o
25 * are < loVal, or ary.length if loVal is greater than all elements in
28 function findLowIndexInSortedArray(ary, mapFn, loVal) {
29 if (ary.length == 0)
33 var high = ary.length - 1;
38 comparison = mapFn(ary[
[all...]
H A Drect.js32 Rect.FromArray = function(ary) {
33 if (ary.length != 4)
34 throw new Error('ary.length must be 4');
36 rect.x = ary[0];
37 rect.y = ary[1];
38 rect.width = ary[2];
39 rect.height = ary[3];
/external/chromium_org/chrome/renderer/resources/extensions/
H A Dnotifications_test_util.js44 push: function (ary, val) {
45 ary.push(val);
/external/clang/test/Parser/
H A Dtypeof.c13 void ary[7] fff; // expected-error{{array has incomplete element type 'void'}} expected-error{{expected ';' at end of declaration}}
14 typeof(void ary[7]) anIntError; // expected-error{{expected ')'}} expected-note {{to match this '('}} expected-error {{variable has incomplete type 'typeof(void)' (aka 'void')}}
H A Dbuiltin_classify_type.c11 static int ary[__builtin_classify_type(a)]; local
/external/clang/test/Sema/
H A Dincomplete-decl.c15 int ary[]; // expected-warning {{tentative array definition assumed to have one element}} variable
19 int ary[]; // expected-error{{definition of variable with array type needs an explicit size or an initializer}} local
H A Darray-init.c9 static int ary[] = { x, y, z }; // expected-error{{initializer element is not a compile-time constant}} variable
/external/chromium_org/ui/file_manager/file_manager/foreground/js/metadata/
H A Dmetadata_dispatcher.js109 var ary = Array.apply(null, arguments);
110 this.postMessage('error', ary);
120 var ary = Array.apply(null, arguments);
121 this.postMessage('log', ary);
/external/clang/test/CXX/expr/expr.const/
H A Dp5-0x.cpp18 int ary[a]; // expected-error {{size of array has non-integer type 'const std_example::A'}} member in namespace:std_example
/external/chromium_org/ui/file_manager/file_manager/common/js/
H A Dutil.js22 var ary = Array.apply(null, arguments);
23 console.log(msg + ': ' + ary.join(', '));
38 var ary = Array.apply(null, arguments);
39 throw new Error(msg + ': ' + ary.join(', '));
/external/opencv/
H A Dcvjni.cpp425 jobjectArray ary = env->NewObjectArray(rects->total, jcls, 0); local
426 if (ary == 0) {
448 env->SetObjectArrayElement(ary, i, jrect);
452 return ary;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
H A Dsp_tex_sample.c2127 const float arx = fabsf(rx), ary = fabsf(ry), arz = fabsf(rz); local
2129 if (arx >= ary && arx >= arz) {
2139 else if (ary >= arx && ary >= arz) {
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_tex_sample.c2127 const float arx = fabsf(rx), ary = fabsf(ry), arz = fabsf(rz); local
2129 if (arx >= ary && arx >= arz) {
2139 else if (ary >= arx && ary >= arz) {
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
H A Ds_texfilter.c2357 const GLfloat arx = FABSF(rx), ary = FABSF(ry), arz = FABSF(rz); local
2361 if (arx >= ary && arx >= arz) {
2375 else if (ary >= arx && ary >= arz) {
2380 ma = ary;
2386 ma = ary;
/external/mesa3d/src/mesa/swrast/
H A Ds_texfilter.c2357 const GLfloat arx = FABSF(rx), ary = FABSF(ry), arz = FABSF(rz); local
2361 if (arx >= ary && arx >= arz) {
2375 else if (ary >= arx && ary >= arz) {
2380 ma = ary;
2386 ma = ary;
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/lib/
H A Ddojo-1.6.1.js7421 _place: function(/*Array*/ary, /*DOMNode*/refNode, /*String*/position, /*Boolean*/useClone){
7426 // optionally parsing widgets, if ary._runParse is true.
7436 var length = ary.length;
7438 var node = (useClone ? this._cloneNode(ary[i]) : ary[i]);
7443 if(ary._runParse && dojo.parser && dojo.parser.parse){
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 2459 milliseconds