/external/libvpx/libvpx/ |
vpxstats.c | 19 int stats_open_file(stats_io_t *stats, const char *fpf, int pass) { 21 stats->pass = pass; 23 if (pass == 0) { 45 fatal("First-pass stats file must be seekable!"); 53 fatal("Failed to allocate first-pass stats buffer (%lu bytes)", 64 int stats_open_mem(stats_io_t *stats, int pass) { 66 stats->pass = pass; 68 if (!pass) { [all...] |
/external/llvm/test/CodeGen/Generic/ |
print-machineinstrs.ll | 1 ; RUN: llc < %s -O3 -debug-pass=Structure -print-machineinstrs=branch-folder -o /dev/null 2>&1 | FileCheck %s 2 ; RUN: llc < %s -O3 -debug-pass=Structure -print-machineinstrs -o /dev/null 2>&1 | FileCheck %s 3 ; RUN: llc < %s -O3 -debug-pass=Structure -print-machineinstrs= -o /dev/null 2>&1 | FileCheck %s
|
/external/llvm/utils/lit/tests/ |
googletest-format.py | 9 # CHECK: PASS: googletest-format :: DummySubDir/OneTest/FirstTest.subTestA 15 # CHECK: PASS: googletest-format :: DummySubDir/OneTest/ParameterizedTest/0.subTest 16 # CHECK: PASS: googletest-format :: DummySubDir/OneTest/ParameterizedTest/1.subTest
|
/external/v8/test/webkit/ |
Object-defineProperties-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS Object.defineProperties() threw exception TypeError: Object.defineProperties called on non-object. 30 PASS Object.defineProperties('a string') threw exception TypeError: Object.defineProperties called on non-object. 31 PASS Object.defineProperties({}, 'a string') threw exception TypeError: Property description must be an object: a. 32 PASS JSON.stringify(Object.defineProperties({},{property:{value:'foo', enumerable:true}, property2:{value:'foo', enumerable:true}})) is '{"property":"foo","property2":"foo"}' 33 PASS JSON.stringify(Object.defineProperties({},{property:{value:'foo'}, property2:{value:'foo', enumerable:true}})) is '{"property2":"foo"}' 34 PASS JSON.stringify(Object.defineProperties({property:'foo'},{property:{value:'foo', enumerable:true}, property2:{value:'foo', enumerable:true}})) is '{"property":"foo","property2":"foo"}' 35 PASS JSON.stringify(Object.defineProperties({property:'foo'},{property:{value:'foo', enumerable:false}, property2:{value:'foo', enumerable:true}})) is '{"property2":"foo"}' 36 PASS JSON.stringify(Object.defineProperties({property:'foo'},{property:{value:'foo'}, property2:{value:'foo', enumerable:true}})) is '{"property":"foo","property2":"foo"}' 37 PASS Object.defineProperties(emptyObject, {foo:{value: true}, bar:{get:function(){}, writable:true}}) t (…) [all...] |
arguments-bad-index-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS indexArguments(1, "a") is "a" 30 PASS indexArguments("1 ", "a") is undefined 31 PASS indexArguments(0xDEADBEEF) is undefined 32 PASS indexArguments(0xFFFFFFFF) is undefined 33 PASS successfullyParsed is true
|
codegen-assign-nontemporary-as-rexp-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS assign_as_rexp_1() is 'PASS' 30 PASS assign_as_rexp_2() is 'PASS' 31 PASS successfullyParsed is true
|
cyclic-prototypes-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS o1.__proto__ = o3; threw exception Error: Cyclic __proto__ value. 30 PASS ({}).hasOwnProperty.call(o1, '__proto__') is false 31 PASS ({}).hasOwnProperty.call(o1, '__proto__') is true 32 PASS Object.getPrototypeOf(o1) is null 33 PASS successfullyParsed is true
|
dfg-inline-constant-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS bar(6, 0) is 10 30 PASS bar(6, 1) is 15 31 PASS bar(6, false) is 10 32 PASS bar(6, true) is 15 33 PASS successfullyParsed is true
|
dfg-uint32-to-number-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS result is 124500 30 PASS foo({f:2147483648}, {f:32}) is 2147483648 31 PASS foo({f:2147483648}, {f:31}) is 1 32 PASS foo({f:2147483648}, {f:30}) is 2 33 PASS successfullyParsed is true
|
do-while-semicolon-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS ueuf1 is uf1 30 PASS ueuf2 is uf2 31 PASS ueuf3 is uf3 32 PASS ueuf4 is uf4 33 PASS successfullyParsed is true
|
function-constructor-single-line-comment-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS (new Function('return true//'))() is true 30 PASS (new Function('return true;//'))() is true 31 PASS (new Function('a', 'return a//'))(true) is true 32 PASS (new Function('a', 'return a;//'))(true) is true 33 PASS successfullyParsed is true
|
global-resolve-through-eval.js | 26 var pass = false; variable 28 var accessGlobal = (function() { return eval("var pass=true; (function(){ return pass; })"); })(); 29 var accessLocal = (function() { var pass = false; return (function() { return eval("var pass=true; (function(){ return pass; })"); })(); })();
|
/external/v8/test/webkit/fast/js/ |
date-toisostring-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS Date.toISOString.call({}) threw exception TypeError: Cannot read property 'call' of undefined. 30 PASS Date.toISOString.call(0) threw exception TypeError: Cannot read property 'call' of undefined. 31 PASS new Date(-400).toISOString() is '1969-12-31T23:59:59.600Z' 32 PASS new Date(0).toISOString() is '1970-01-01T00:00:00.000Z' 33 PASS new Date('1 January 1500 UTC').toISOString() is '1500-01-01T00:00:00.000Z' 34 PASS new Date('1 January 2000 UTC').toISOString() is '2000-01-01T00:00:00.000Z' 35 PASS new Date('1 January 4000 UTC').toISOString() is '4000-01-01T00:00:00.000Z' 36 PASS new Date('1 January 100000 UTC').toISOString() is '+100000-01-01T00:00:00.000Z' 38 PASS new Date('10 March 2000 UTC').toISOString() is '2000-03-10T00:00:00.000Z [all...] |
object-prototype-toLocaleString-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS o.toLocaleString() is o.toString() 30 PASS o.toLocaleString() is "Dynamic toLocaleString()" 31 PASS Object.prototype.toLocaleString.call('Hello, world!') is "Hello, world!" 32 PASS Object.prototype.toLocaleString.call('Hello, world!') is "stringPrototypeToString" 33 PASS successfullyParsed is true
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/ |
vpxstats.c | 19 int stats_open_file(stats_io_t *stats, const char *fpf, int pass) { 21 stats->pass = pass; 23 if (pass == 0) { 45 fatal("First-pass stats file must be seekable!"); 53 fatal("Failed to allocate first-pass stats buffer (%lu bytes)", 64 int stats_open_mem(stats_io_t *stats, int pass) { 66 stats->pass = pass; 68 if (!pass) { [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
inspect_fodder.py | 50 pass 53 pass 56 pass
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
inspect_fodder.py | 50 pass 53 pass 56 pass
|
/external/v8/test/mozilla/ |
mozilla.status | 51 'ecma_3/Number/15.7.4.3-02': [PASS, FAIL], 52 'ecma_3/Date/15.9.5.5-02': [PASS, FAIL], 57 # we pass 'mjsunit' and 'webkit' with TurboFan. 58 'js1_4/Functions/function-001': [PASS, NO_VARIANTS], 59 'js1_5/Regress/regress-396684': [PASS, NO_VARIANTS], 60 'js1_5/Regress/regress-80981': [PASS, NO_VARIANTS], 63 'js1_5/Regress/regress-398085-01': [PASS, NO_VARIANTS], 89 'js1_5/GC/regress-203278-2': [PASS, ['mode == debug', TIMEOUT, NO_VARIANTS, FAIL]], 122 # These tests time out in debug mode but pass in product mode 123 'js1_5/Regress/regress-360969-03': [PASS, ['mode == debug', TIMEOUT, NO_VARIANTS]] [all...] |
/external/e2fsprogs/tests/f_illitable/ |
expect.1 | 14 Pass 1: Checking inodes, blocks, and sizes 17 Pass 1: Checking inodes, blocks, and sizes 20 Pass 2: Checking directory structure 21 Pass 3: Checking directory connectivity 26 Pass 4: Checking reference counts 27 Pass 5: Checking group summary information
|
/external/e2fsprogs/tests/f_misstable/ |
expect.1 | 7 Pass 1: Checking inodes, blocks, and sizes 10 Pass 1: Checking inodes, blocks, and sizes 11 Pass 2: Checking directory structure 20 Pass 3: Checking directory connectivity 21 Pass 4: Checking reference counts 24 Pass 5: Checking group summary information
|
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/ |
AbstractClassFilterTransformer.java | 21 private ClassTransformer pass; field in class:AbstractClassFilterTransformer 26 pass.setTarget(target); 29 protected AbstractClassFilterTransformer(ClassTransformer pass) { 30 this.pass = pass; 41 target = accept(version, access, name, signature, superName, interfaces) ? pass : cv;
|
/external/v8/test/webkit/fast/js/kde/ |
Prototype-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS s.area() is 9 30 PASS b.name is 'a book' 31 PASS b.author is 'Fred' 32 PASS delete Boolean.prototype is false 33 PASS successfullyParsed is true
|
cast-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS Boolean(1) === true is true 30 PASS var s = String; s(1) === '1' is true 31 PASS n = Number; n(true) === 1 is true 32 PASS String(Array('a', 'b' )) is 'a,b' 33 PASS successfullyParsed is true
|
scope-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS f(2) is 22 30 PASS OBJECT.toString() is 'hello' 31 PASS s is 'hello' 32 PASS g is 'foo' 33 PASS successfullyParsed is true
|
/external/v8/test/webkit/fast/regex/ |
constructor-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS re === RegExp(re) is true 30 PASS re !== new RegExp(re) is true 31 PASS re === RegExp(re,'i') threw exception TypeError: Cannot supply flags when constructing one RegExp from another. 32 PASS re !== new RegExp(re,'i') threw exception TypeError: Cannot supply flags when constructing one RegExp from another. 33 PASS successfullyParsed is true
|