/toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/ |
hash1a.d | 4 #pass
|
mips16-pic-2.ad | 6 #pass
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-plugin/ |
lto-14a.c | 10 printf ("PASS\n");
|
lto-15a.c | 5 printf ("PASS\n");
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-scripts/ |
expr2.d | 7 #pass
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-size/ |
size-10.rd | 3 #pass
|
size-7.rd | 3 #pass
|
size-8.rd | 3 #pass
|
size-9.rd | 3 #pass
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_codeop.py | 65 compile("pass", "<input>", 'single', 68 compile("pass", "<input>", 'single', 80 av("def x():\n pass\n") 81 av("if 1:\n pass\n") 83 av("\n\nif 1: pass\n") 84 av("\n\nif 1: pass\n\n") 86 av("def x():\n\n pass\n") 87 av("def x():\n pass\n \n") 88 av("def x():\n pass\n \n") 90 av("pass\n" [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_codeop.py | 65 compile("pass", "<input>", 'single', 68 compile("pass", "<input>", 'single', 80 av("def x():\n pass\n") 81 av("if 1:\n pass\n") 83 av("\n\nif 1: pass\n") 84 av("\n\nif 1: pass\n\n") 86 av("def x():\n\n pass\n") 87 av("def x():\n pass\n \n") 88 av("def x():\n pass\n \n") 90 av("pass\n" [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_codeop.py | 65 compile("pass", "<input>", 'single', 68 compile("pass", "<input>", 'single', 80 av("def x():\n pass\n") 81 av("if 1:\n pass\n") 83 av("\n\nif 1: pass\n") 84 av("\n\nif 1: pass\n\n") 86 av("def x():\n\n pass\n") 87 av("def x():\n pass\n \n") 88 av("def x():\n pass\n \n") 90 av("pass\n" [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_codeop.py | 65 compile("pass", "<input>", 'single', 68 compile("pass", "<input>", 'single', 80 av("def x():\n pass\n") 81 av("if 1:\n pass\n") 83 av("\n\nif 1: pass\n") 84 av("\n\nif 1: pass\n\n") 86 av("def x():\n\n pass\n") 87 av("def x():\n pass\n \n") 88 av("def x():\n pass\n \n") 90 av("pass\n" [all...] |
/external/v8/test/webkit/fast/js/kde/ |
parse-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS function test() { return;}; lab: 1 is 1 30 PASS function test() { while(0) break; } lab: 1 is 1 31 PASS function test() { while(0) continue; } lab: 1 is 1 32 PASS function test() { return lab;} lab: 1 is 1 33 PASS function test() { while(0) break lab; } lab: 1 threw exception SyntaxError: Undefined label 'lab'. 34 PASS function test() { while(0) continue lab; } lab: 1 threw exception SyntaxError: Undefined label 'lab'. 35 PASS function test() { return } lab: 1 is 1 36 PASS function test() { while(0) break } lab: 1 is 1 37 PASS function test() { while(0) continue } lab: 1 is [all...] |
assignments-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS var i = 1; i is 1 30 PASS j = k = 2 is 2 31 PASS var i; i is undefined. 32 PASS var i = 1; i <<= 2 is 4 33 PASS var i = 8; i >>= 1 is 4 34 PASS var i = 1; i >>= 2 is 0 35 PASS var i = -8; i >>= 24 is -1 36 PASS var i = 8; i >>>= 2 is 2 37 PASS var i = -8; i >>>= 24 is 25 [all...] |
/external/v8/test/webkit/fast/js/ |
regexp-bol-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS s.match(/^notHere/) is null 30 PASS s.match(/^abc/) is ["abc"] 31 PASS s.match(/(^|X)abc/) is ["abc",""] 32 PASS s.match(/^longer|123/) is ["123"] 33 PASS s.match(/(^abc|c)123/) is ["abc123","abc"] 34 PASS s.match(/(c|^abc)123/) is ["abc123","abc"] 35 PASS s.match(/(^ab|abc)123/) is ["abc123","abc"] 36 PASS s.match(/(bc|^abc)([0-9]*)a/) is ["bc789a","bc","789"] 37 PASS /(?:(Y)X)|(X)/.exec("abc") is nul [all...] |
array-functions-non-arrays-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS properties(['b', 'a']) is '0:b, 1:a, length:2(DontDelete, DontEnum)' 30 PASS properties({ length:2, 0:'b', 1:'a' }) is '0:b, 1:a, length:2' 31 PASS properties(new OneItemConstructor) is '0:a(FromPrototype), length:1(FromPrototype)' 32 PASS properties(new TwoItemConstructor) is '0:b(FromPrototype), 1:a(FromPrototype), length:2(FromPrototype)' 33 PASS Array.prototype.toString.call({}) is "[object Object]" 34 PASS Array.prototype.toString.call(new Date) is "[object Date]" 35 PASS Array.prototype.toString.call({sort: function() { return 'sort' }}) is "[object Object]" 36 PASS Array.prototype.toString.call({join: function() { return 'join' }}) is "join" 37 PASS Array.prototype.toString.call({__proto__: Array.prototype, 0: 'a', 1: 'b', 2: 'c', length: 3}) is (…) [all...] |
/external/v8/test/webkit/fast/regex/ |
repeat-match-waldemar-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS /(?:a*?){2,}/.exec("aa") is ["aa"] 30 PASS /(?:a*?){2,}/.exec("a") is ["a"] 31 PASS /(?:a*?){2,}/.exec("") is [""] 32 PASS /(?:a*?)/.exec("aa") is [""] 33 PASS /(?:a*?)/.exec("a") is [""] 34 PASS /(?:a*?)/.exec("") is [""] 35 PASS /(?:a*?)(?:a*?)(?:a*?)/.exec("aa") is [""] 36 PASS /(?:a*?)(?:a*?)(?:a*?)/.exec("a") is [""] 37 PASS /(?:a*?)(?:a*?)(?:a*?)/.exec("") is ["" [all...] |
toString-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS RegExp('/').source is "\\/" 30 PASS RegExp('').source is "(?:)" 32 PASS RegExp('/').toString() is "/\\//" 33 PASS RegExp('').toString() is "/(?:)/" 34 PASS RegExp.prototype.toString() is "/(?:)/" 35 PASS testForwardSlash("^/$", "/"); is true 36 PASS testForwardSlash("^/$", "/"); is true 37 PASS testForwardSlash("^\/$", "/"); is true 38 PASS testForwardSlash("^\\/$", "\/"); is tru [all...] |
/external/v8/test/webkit/ |
function-toString-object-literals-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS compileAndSerialize('a = { 1: null }') is 'a = { 1: null }' 30 PASS compileAndSerialize('a = { 0: null }') is 'a = { 0: null }' 31 PASS compileAndSerialize('a = { 1.0: null }') is 'a = { 1.0: null }' 32 PASS compileAndSerialize('a = { "1.0": null }') is 'a = { "1.0": null }' 33 PASS compileAndSerialize('a = { 1e-500: null }') is 'a = { 1e-500: null }' 34 PASS compileAndSerialize('a = { 1e-300: null }') is 'a = { 1e-300: null }' 35 PASS compileAndSerialize('a = { 1e300: null }') is 'a = { 1e300: null }' 36 PASS compileAndSerialize('a = { 1e500: null }') is 'a = { 1e500: null }' 37 PASS compileAndSerialize('a = { NaN: null }') is 'a = { NaN: null } [all...] |
date-parse-comments-test-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS Date.parse("Dec ((27) 26 (24)) 25 1995 1:30 PM UTC") == 819898200000 is true 30 PASS Date.parse("DEC ((27) 26 (24)) 25 1995 1:30 PM UTC") == 819898200000 is true 31 PASS Date.parse("dec ((27) 26 (24)) 25 1995 1:30 pm utc") == 819898200000 is true 32 PASS Date.parse("Dec 25 1995 1:30 PM UTC (") == 819898200000 is true 33 PASS Date.parse("DEC 25 1995 1:30 PM UTC (") == 819898200000 is true 34 PASS Date.parse("dec 25 1995 1:30 pm utc (") == 819898200000 is true 35 PASS Date.parse("Dec 25 1995 1:30 (PM)) UTC") is NaN 36 PASS Date.parse("DEC 25 1995 1:30 (PM)) UTC") is NaN 37 PASS Date.parse("dec 25 1995 1:30 (pm)) utc") is Na [all...] |
object-literal-syntax-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS ({a:1, get a(){}}), true is true 30 PASS ({a:1, set a(v){}}), true is true 31 PASS ({get a(){}, a:1}), true is true 32 PASS ({set a(v){}, a:1}), true is true 33 PASS ({get a(){}, get a(){}}), true is true 34 PASS ({set a(v){}, set a(v){}}), true is true 35 PASS ({set a(v){}, get a(){}, set a(v){}}), true is true 36 PASS (function(){({a:1, get a(){}})}), true is true 37 PASS (function(){({a:1, set a(v){}})}), true is tru [all...] |
array-reduceRight-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS [0,1,2,3].reduceRight(function(a,b){ return a + b; }) is 6 30 PASS [1,2,3].reduceRight(function(a,b){ return a + b; }) is 6 31 PASS [0,1,2,3].reduceRight(function(a,b){ return a + b; }, 4) is 10 32 PASS [1,2,3].reduceRight(function(a,b){ return a + b; }, 4) is 10 33 PASS toObject([0,1,2,3]).reduceRight(function(a,b){ return a + b; }) is 6 34 PASS toObject([1,2,3]).reduceRight(function(a,b){ return a + b; }) is 6 35 PASS toObject([0,1,2,3]).reduceRight(function(a,b){ return a + b; }, 4) is 10 36 PASS toObject([1,2,3]).reduceRight(function(a,b){ return a + b; }, 4) is 10 37 PASS toUnorderedObject([0,1,2,3]).reduceRight(function(a,b){ return a + b; }) is [all...] |
apply-varargs-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS caller(0) is undefined 30 PASS caller(1) is undefined 31 PASS caller(2) is undefined 32 PASS caller(3) is undefined 33 PASS caller(4) is undefined 34 PASS caller(5) is undefined 35 PASS caller(6) is undefined 36 PASS caller(7) is undefined 37 PASS caller(8) is undefine [all...] |
/external/llvm/include/llvm/CodeGen/ |
Passes.h | 18 #include "llvm/Pass.h" 35 // The old pass manager infrastructure is hidden in a legacy namespace now. 41 /// Discriminated union of Pass ID types. 45 /// pass is overriden, it isn't unnecessarily instantiated. It is also unsafe to 46 /// refer to a Pass pointer after adding it to a pass manager, which deletes 47 /// redundant pass instances. 51 /// force all target passes to implement the pass registry boilerplate, allow 58 Pass *P; 64 IdentifyingPassPtr(Pass *InstancePtr) : P(InstancePtr), IsInstance(true) { [all...] |