/external/v8/test/webkit/ |
D | array-every-expected.txt | 24 This test checks the behavior of the every() method on Array objects. 30 PASS [12, 5, 8, 130, 44].every(isBigEnough) is false 31 PASS [12, 54, 18, 130, 44].every(isBigEnough) is true 34 PASS [12, 5, 10, 130, 44].every(isBigEnough, predicate) is false 35 PASS [12, 54, 18, 130, 44].every(isBigEnough, predicate) is true 40 PASS [12, 5, 8, 130, 44].every(isBigEnoughAndPop) is false 41 PASS [12, 54, 18, 130, 44].every(isBigEnoughAndPop) is true 44 PASS [12, 5, 8, 130, 44].every(isBigEnoughAndChange) is false 45 PASS [12, 54, 18, 130, 44].every(isBigEnoughAndChange) is false 48 PASS [12, 5, 8, 130, 44].every(isBigEnoughAndPush) is false [all …]
|
D | array-enumerators-functions-expected.txt | 29 …astIndex=-1;copyArray(simpleArray).every(forwarders[f], returnFalse, 0) is count=0;lastIndex=-1;Ar… 30 …lastIndex=-1;copyArray(emptyArray).every(forwarders[f], returnFalse, 0) is count=0;lastIndex=-1;Ar… 31 …ndex=-1;copyArray(largeEmptyArray).every(forwarders[f], returnFalse, 0) is count=0;lastIndex=-1;Ar… 32 …dex=-1;copyArray(largeSparseArray).every(forwarders[f], returnFalse, 0) is count=0;lastIndex=-1;Ar… 33 …lastIndex=-1;copyArray(simpleArray).every(forwarders[f], returnTrue, 0) is count=0;lastIndex=-1;Ar… 34 …;lastIndex=-1;copyArray(emptyArray).every(forwarders[f], returnTrue, 0) is count=0;lastIndex=-1;Ar… 35 …Index=-1;copyArray(largeEmptyArray).every(forwarders[f], returnTrue, 0) is count=0;lastIndex=-1;Ar… 36 …ndex=-1;copyArray(largeSparseArray).every(forwarders[f], returnTrue, 0) is count=0;lastIndex=-1;Ar… 37 …lastIndex=-1;copyArray(simpleArray).every(forwarders[f], returnElem, 0) is count=0;lastIndex=-1;Ar… 38 …;lastIndex=-1;copyArray(emptyArray).every(forwarders[f], returnElem, 0) is count=0;lastIndex=-1;Ar… [all …]
|
D | array-holes-expected.txt | 46 PASS a = []; [0, , 2, 3].every(addToArrayReturnTrue); showHoles(a) is '[0, 2, 3]' 47 PASS a = []; [0, undefined, 2, 3].every(addToArrayReturnTrue); showHoles(a) is '[0, undefined, 2, 3… 70 PASS a = []; [0, , 2, 3].every(addToArrayReturnTrue); showHoles(a) is '[0, peekaboo, 2, 3]' 71 PASS a = []; [0, undefined, 2, 3].every(addToArrayReturnTrue); showHoles(a) is '[0, undefined, 2, 3…
|
/external/v8/test/mjsunit/regress/ |
D | regress-1436.js | 46 [2, 3].every(non_strict); 47 [2, 3].every(non_strict, undefined); 48 [2, 3].every(non_strict, null); 49 [2, 3].every(strict); 50 [2, 3].every(strict, undefined); 51 [2, 3].every(strict_null, null);
|
D | regress-1447.js | 29 [0].every(function(){ Object.seal(Array.prototype.every); }); 34 [0].every(function(){ Object.seal(Array.prototype.every); });
|
D | regress-2273.js | 65 [2].every(CheckStringReceiver, "foo"); 75 [2].every(CheckCoersion, "foo"); 88 [2].every(CheckStringReceiver, "foo"); 98 [2].every(CheckCoersion, "foo");
|
D | regress-95920.js | 33 [0].every(function(){ Object.seal((new Int8Array(42))); }); 40 [0].every(function(){ Object.freeze((new Int8Array(42))); }); 47 [0].every(function(){ Object.preventExtensions((new Int8Array(42))); });
|
D | regress-100702.js | 43 arr.every("".isThatMe, str);
|
/external/v8/test/mjsunit/ |
D | array-iteration.js | 121 assertFalse(a.every(function(n) { return n == 0 })); 123 assertTrue(a.every(function(n) { return n == 0 })); 124 assertTrue([].every(function(n) { return n == 0})); 129 assertFalse(a.every(function(n) { return this.value == n; }, o)); 131 assertTrue(a.every(function(n) { return this.value == n; }, o)); 135 assertFalse(a.every(function(n, index, array) { array[index] = n + 1; return n == 1;})); 141 assertTrue(a.every(function(n, index, array) { array.push(n + 1); return n == 1;})); 149 assertTrue(a.every(function(n) { count++; return n == 2; }));
|
/external/iptables/extensions/ |
D | libxt_statistic.c | 41 .flags = XTOPT_INVERT | XTOPT_PUT, XTOPT_POINTER(s, u.nth.every), 72 --info->u.nth.every; in statistic_parse() 93 if (info->u.nth.packet > info->u.nth.every) in statistic_check() 97 info->u.nth.count = info->u.nth.every - info->u.nth.packet; in statistic_check() 113 info->u.nth.every + 1); in print_match()
|
D | libxt_statistic.man | 19 [\fB!\fP] \fB\-\-every\fP \fIn\fP 20 Match one packet every nth packet. It works only with the
|
D | libxt_hashlimit.man | 20 every time the limit specified above is not reached, up to this number; the 58 "1000 packets per second for every host in 192.168.0.0/16" => 62 "100 packets per second for every service of 192.168.1.1" => 66 "10000 packets per minute for every /28 subnet (groups of 8 addresses)
|
/external/jmonkeyengine/engine/src/tools/jme3tools/optimize/ |
D | pvsnotes | 3 for (every nodeX in pvsNodes): 4 for (every nodeY in pvsNodes): 9 draw every node except nodeX & nodeY
|
/external/llvm/bindings/ocaml/bitwriter/ |
D | llvm_bitwriter.mli | 22 [m] to the channel [c]. If [unbuffered] is [true], after every write the fd 35 to the channel [c]. If [unbuffered] is [true], after every write the fd
|
/external/fio/tools/plot/ |
D | fio2gnuplot.manpage | 40 every individual file. 45 every individual file. 51 every individual file. 57 every individual file.
|
/external/linux-tools-perf/src/tools/perf/Documentation/ |
D | perf-script-perl.txt | 27 the event types in the trace file; it simply prints every available 91 to every event as arguments but are available as library functions. 107 The above provides the basics needed to directly access every field of 108 every event in a trace, which covers 90% of what you need to know to 129 Aside from the event handler functions discussed above, every script 196 $context variable passed into every event handler as the second
|
D | perf-script-python.txt | 74 every time a system call occurs in the system. Our script will do 79 - we could enable every event under the tracing/events/syscalls 102 The options basically say to collect data for every syscall event 163 path append which every perf script script should include. 171 every event in the 'perf record' output. The handler functions take 178 generated for every script. The first, trace_unhandled(), is called 179 every time the script finds an event in the perf.data file that 208 Of course, for this script, we're not interested in printing every 236 store that information; every time the sys_enter() handler is called, 425 the event types in the trace file; it simply prints every available [all …]
|
/external/llvm/lib/Target/ |
D | LLVMBuild.txt | 51 ; with every built target, which makes it easy for tools to include every
|
/external/clang/include/clang/StaticAnalyzer/Core/ |
D | Analyses.def | 40 ANALYSIS_PURGE(PurgeStmt, "statement", "Purge symbols, bindings, and constraints before every stat… 41 ANALYSIS_PURGE(PurgeBlock, "block", "Purge symbols, bindings, and constraints before every basic bl…
|
/external/valgrind/docs/internals/ |
D | tracking-fn-entry-exit.txt | 24 of every BB anyway, so I use this helper to do the tracking. This of course 30 I have a shadow call stack for every thread. For signal handlers of a thread, 38 * At the start of every BB, jump to a helper function. 92 avoid calls to helpers at every BB. 114 > - have a shadow call stack for every thread 145 Yes. Currently I do this at every BB boundary, but perhaps it should be 146 checked at every %esp change. Then, OTOH, it would look strange to attribute
|
/external/deqp/doc/testspecs/GLES31/ |
D | functional.program_interface_query.txt | 25 + Basic queries for every property of every program interface 26 + Basic tests for resource list contents for every program interface
|
D | functional.shaders.multisample_interpolation.txt | 39 + Rendering to every supported render buffer sample count / format 40 + Rendering to every supported multisample texture sample count / format 55 function with at every sample position and average the result. static cases use
|
/external/libpcap/packaging/ |
D | pcap.spec.in | 19 security monitoring and network debugging. Since almost every system 35 security monitoring and network debugging. Since almost every system
|
/external/kernel-headers/original/uapi/linux/netfilter/ |
D | xt_statistic.h | 28 __u32 every; member
|
/external/iptables/include/linux/netfilter/ |
D | xt_statistic.h | 28 __u32 every; member
|