/external/chromium-trace/trace-viewer/src/ |
D | sorted_array_utils.js | 27 function findLowIndexInSortedArray(ary, mapFn, loVal) { argument 28 if (ary.length == 0) 32 var high = ary.length - 1; 37 comparison = mapFn(ary[i]) - loVal; 74 function findLowIndexInSortedIntervals(ary, mapLoFn, mapWidthFn, loVal) { argument 75 var first = findLowIndexInSortedArray(ary, mapLoFn, loVal); 77 if (loVal >= mapLoFn(ary[0]) && 78 loVal < mapLoFn(ary[0] + mapWidthFn(ary[0]))) { 83 } else if (first <= ary.length && 84 loVal >= mapLoFn(ary[first - 1]) && [all …]
|
/external/chromium/chrome/browser/resources/gpu_internals/ |
D | sorted_array_utils.js | 27 function findLowIndexInSortedArray(ary, mapFn, loVal) { argument 28 if (ary.length == 0) 32 var high = ary.length - 1; 37 comparison = mapFn(ary[i]) - loVal; 74 function findLowIndexInSortedIntervals(ary, mapLoFn, mapWidthFn, loVal) { argument 75 var first = findLowIndexInSortedArray(ary, mapLoFn, loVal); 77 if (loVal >= mapLoFn(ary[0]) && 78 loVal < mapLoFn(ary[0] + mapWidthFn(ary[0]))) { 83 } else if (first <= ary.length && 84 loVal >= mapLoFn(ary[first - 1]) && [all …]
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Unicode/ |
D | uc-004.js | 34 var ary = ["\u001Cfoo", "\u001Dfoo", "\u001Efoo", "\u001Ffoo"]; 36 for (var i in ary) 38 reportCompare (0, ary[Number(i)].search(/^\Sfoo$/), 41 reportCompare (-1, ary[Number(i)].search(/^\sfoo$/),
|
/external/chromium/chrome/browser/resources/shared/js/cr/ |
D | command_line.js | 57 CommandLine.prototype.parseOptions_ = function(ary) { argument 58 this.executable = ary.shift(); 62 for (var i = 0; i < ary.length; i++) { 63 var arg = ary[i];
|
/external/chromium/chrome/browser/resources/file_manager/js/ |
D | util.js | 17 var ary = Array.apply(null, arguments); 18 console.log(msg + ': ' + ary.join(', ')); 32 var ary = Array.apply(null, arguments); 33 throw new Error(msg + ': ' + ary.join(', '));
|
D | file_manager.js | 515 var ary = this.dialogDom_.querySelectorAll('[visibleif]'); 516 for (var i = 0; i < ary.length; i++) { 517 var expr = ary[i].getAttribute('visibleif'); 519 ary[i].style.display = 'none'; 755 var ary = this.defaultPath_.match(/^(.*?)(?:\/([^\/]+))?$/); 759 if (!ary) { 761 ary = []; 767 defaultFolder = ary[1] || '/'; 768 defaultTarget = ary[2] || ''; 773 defaultFolder = ary[1] || '/'; [all …]
|
D | exif_reader.js | 163 var ary = Array.apply(null, arguments); 164 postMessage({verb: 'log', arguments: ary});
|
/external/clang/test/Parser/ |
D | typeof.c | 13 …void ary[7] fff; // expected-error{{array has incomplete element type 'void'}} expected-error{{exp… in test() local 14 …typeof(void ary[7]) anIntError; // expected-error{{expected ')'}} expected-note {{to match this '(… in test()
|
D | builtin_classify_type.c | 11 static int ary[__builtin_classify_type(a)]; in main() local
|
/external/clang/test/Sema/ |
D | incomplete-decl.c | 15 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 … in func() local
|
D | array-init.c | 9 static int ary[] = { x, y, z }; // expected-error{{initializer element is not a compile-time consta… variable
|
/external/clang/test/CXX/expr/expr.const/ |
D | p5-0x.cpp | 18 int ary[a]; // expected-error {{size of array has non-integer type 'const std_example::A'}} variable
|
/external/opencv/ |
D | cvjni.cpp | 425 jobjectArray ary = env->NewObjectArray(rects->total, jcls, 0); in seqRectsToAndroidRects() local 426 if (ary == 0) { in seqRectsToAndroidRects() 448 env->SetObjectArrayElement(ary, i, jrect); in seqRectsToAndroidRects() 452 return ary; in seqRectsToAndroidRects()
|
/external/chromium/testing/gmock/include/gmock/ |
D | gmock-generated-actions.h.pump | 51 // InvokeHelper<F> knows how to unpack an N-tuple and invoke an N-ary 94 // to invoke an n-ary callable, where R is its return type. If an 123 $var arity = [[$if i==2 [[binary]] $elif i==3 [[ternary]] $else [[$i-ary]]]] 150 // type of an n-ary function whose i-th (1-based) argument type is the 761 // (0-based) argument, which must be a k-ary callable, of the mock
|
/external/dropbear/libtommath/ |
D | tommath.out | 108 \BOOKMARK [1][-]{section.7.2}{k-ary Exponentiation}{chapter.7}
|
/external/icu4c/data/unidata/ |
D | ppucd.txt | 9635 # N-ary operators 9834 # N-ary operators 11867 # N-ary operators
|
/external/bison/ |
D | ChangeLog-2012 | 20869 family can be simplified to 0-ary.
|