/external/v8/test/webkit/ |
JSON-stringify-replacer-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS JSON.stringify(object, returnUndefined) is undefined. 30 PASS JSON.stringify(array, returnUndefined) is undefined. 31 PASS JSON.stringify(object, returnObjectFor1) is '{"0":0,"1":{},"2":2}' 32 PASS JSON.stringify(array, returnObjectFor1) is '[0,{},2,null]' 33 PASS JSON.stringify(object, returnArrayFor1) is '{"0":0,"1":[],"2":2}' 34 PASS JSON.stringify(array, returnArrayFor1) is '[0,[],2,null]' 35 PASS JSON.stringify(object, returnUndefinedFor1) is '{"0":0,"2":2}' 36 PASS JSON.stringify(array, returnUndefinedFor1) is '[0,null,2,null]' 37 PASS JSON.stringify(object, returnFunctionFor1) is '{"0":0,"2":2} [all...] |
instance-of-immediates-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS (1 instanceof 1) threw exception TypeError: Expecting a function in instanceof check, but got 1. 30 PASS ({} instanceof 1) threw exception TypeError: Expecting a function in instanceof check, but got 1. 31 PASS (obj instanceof 1) threw exception TypeError: Expecting a function in instanceof check, but got 1. 32 PASS (1 instanceof {}) threw exception TypeError: Expecting a function in instanceof check, but got #<Object>. 33 PASS ({} instanceof {}) threw exception TypeError: Expecting a function in instanceof check, but got #<Object>. 34 PASS (obj instanceof {}) threw exception TypeError: Expecting a function in instanceof check, but got #<Object>. 35 PASS (1 instanceof Constructor) is false 36 PASS ({} instanceof Constructor) is false 37 PASS (obj instanceof Constructor) is tru [all...] |
codegen-peephole-locals-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS if_less_test() is true 30 PASS if_else_less_test() is true 31 PASS conditional_less_test() is true 32 PASS logical_and_less_test() is true 33 PASS logical_or_less_test() is true 34 PASS do_while_less_test() is true 35 PASS while_less_test() is true 36 PASS for_less_test() is true 37 PASS successfullyParsed is tru [all...] |
dictionary-prototype-caching-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS protoTest(o) is 'PASS' 30 PASS protoTest(o) is undefined. 31 PASS protoKeys is [1,2,3] 32 PASS protoKeys is [1,2,3] 33 PASS testFunction(subclass1) is true 34 PASS testFunction(subclass2) is true 35 PASS testFunction(subclass2) is true 36 PASS successfullyParsed is tru [all...] |
propertyIsEnumerable-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS a.propertyIsEnumerable('length') is false 30 PASS a.propertyIsEnumerable ('foo') is true 31 PASS a.propertyIsEnumerable ('non-existant') is false 32 PASS global.propertyIsEnumerable ('aVarDecl') is true 33 PASS global.propertyIsEnumerable ('aFunctionDecl') is true 34 PASS global.propertyIsEnumerable ('Math') is false 35 PASS global.propertyIsEnumerable ('NaN') is false 36 PASS global.propertyIsEnumerable ('undefined') is false 37 PASS successfullyParsed is tru [all...] |
js-continue-break-restrictions-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS L:{true;break L;false} is true 30 PASS if (0) { L:{ break; } } threw exception SyntaxError: Illegal break statement. 31 PASS if (0) { L:{ continue L; } } threw exception SyntaxError: Undefined label 'L'. 32 PASS if (0) { L:{ continue; } } threw exception SyntaxError: Illegal continue statement. 33 PASS if (0) { switch (1) { case 1: continue; } } threw exception SyntaxError: Illegal continue statement. 34 PASS A:L:{true;break L;false} is true 35 PASS if (0) { A:L:{ break; } } threw exception SyntaxError: Illegal break statement. 36 PASS if (0) { A:L:{ continue L; } } threw exception SyntaxError: Undefined label 'L'. 37 PASS if (0) { A:L:{ continue; } } threw exception SyntaxError: Illegal continue statement [all...] |
Object-keys-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS Object.keys({}) is [] 30 PASS Object.keys({a:null}) is ['a'] 31 PASS Object.keys({a:null, b:null}) is ['a', 'b'] 32 PASS Object.keys({b:null, a:null}) is ['b', 'a'] 33 PASS Object.keys([]) is [] 34 PASS Object.keys([null]) is ['0'] 35 PASS Object.keys([null,null]) is ['0','1'] 36 PASS Object.keys([null,null,,,,null]) is ['0','1','5'] 37 PASS Object.keys({__proto__:{a:null}}) is [ [all...] |
dfg-intrinsic-osr-exit-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS foo([Math.abs], {f:5}) is 5 30 PASS foo([Math.abs], {f:5.5}) is 5.5 31 PASS foo([Math.abs], {f:5.5}) is 5.5 32 PASS foo([Math.abs], {f:5.5}) is 5.5 33 PASS foo([Math.abs], {f:5.5}) is 5.5 34 PASS foo([Math.abs], {f:5.5}) is 5.5 35 PASS foo([Math.abs], {f:5.5}) is 5.5 36 PASS foo([Math.abs], {f:5.5}) is 5.5 37 PASS foo([Math.abs], {f:5.5}) is 5. [all...] |
eval-throw-return-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS eval("1;") is 1 30 PASS eval("1; try { 2; throwFunc(); } catch (e){3;} finally {}") is 3 31 PASS eval("1; try { 2; throwFunc(); } catch (e){3;} finally {4;}") is 3 32 PASS eval("function blah() { 1; }\n blah();") is undefined 33 PASS eval("var x = 1;") is undefined 34 PASS eval("if (true) { 1; } else { 2; }") is 1 35 PASS eval("if (false) { 1; } else { 2; }") is 2 36 PASS eval("try{1; if (true) { 2; throw \"\"; } else { 2; }} catch(e){}") is undefined 37 PASS eval("1; var i = 0; do { ++i; 2; } while(i!=1);") is [all...] |
regexp-extended-characters-match-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS (new RegExp("[?-?]")).exec("a") is null 30 PASS (new RegExp("[?]")).exec("a") is null 31 PASS (new RegExp("?")).exec("a") is null 32 PASS (new RegExp("[a]")).exec("a").toString() is "a" 33 PASS (new RegExp("[?-?a]")).exec("a").toString() is "a" 34 PASS (new RegExp("[?a]")).exec("a").toString() is "a" 35 PASS (new RegExp("a")).exec("a").toString() is "a" 36 PASS (new RegExp("[a-?]")).exec("a").toString() is "a" 37 PASS (new RegExp("[?]")).exec("?").toString() is "? [all...] |
Object-create-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS Object.create() threw exception TypeError: Object prototype may only be an Object or null: undefined. 30 PASS Object.create('a string') threw exception TypeError: Object prototype may only be an Object or null: a string. 31 PASS Object.create({}, 'a string') threw exception TypeError: Property description must be an object: a. 32 PASS Object.create(null, 'a string') threw exception TypeError: Property description must be an object: a. 33 PASS JSON.stringify(Object.create(null,{property:{value:'foo', enumerable:true}, property2:{value:'foo', enumerable:true}})) is '{"property":"foo","property2":"foo"}' 34 PASS JSON.stringify(Object.create({},{property:{value:'foo', enumerable:true}, property2:{value:'foo', enumerable:true}})) is '{"property":"foo","property2":"foo"}' 35 PASS JSON.stringify(Object.create({},{property:{value:'foo'}, property2:{value:'foo', enumerable:true}})) is '{"property2":"foo"}' 36 PASS JSON.stringify(Object.create(null,{property:{value:'foo'}, property2:{value:'foo', enumerable:true}})) is '{"property2":"foo"}' 37 PASS Object.getPrototypeOf(Object.create(Array.prototype)) is Array.prototyp [all...] |
delete-getters-setters-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS b1.property threw exception TypeError: Cannot read property 'property' of undefined. 30 PASS a2.property threw exception TypeError: Cannot read property 'property' of undefined. 31 PASS b3.property threw exception TypeError: Cannot read property 'property' of undefined. 32 PASS a4.property threw exception TypeError: Cannot read property 'property' of undefined. 33 PASS b5.property threw exception TypeError: Cannot read property 'property' of undefined. 34 PASS a6.property threw exception TypeError: Cannot read property 'property' of undefined. 35 PASS b7.property threw exception TypeError: Cannot read property 'property' of undefined. 36 PASS a8.property threw exception TypeError: Cannot read property 'property' of undefined. 37 PASS o1.b.property threw exception TypeError: Cannot read property 'property' of undefined [all...] |
/external/llvm/include/llvm/IR/ |
LegacyPassManagers.h | 1 //===- LegacyPassManagers.h - Legacy Pass Infrastructure --------*- C++ -*-===// 10 // This file declares the LLVM Pass Manager infrastructure. 22 #include "llvm/Pass.h" 28 // The Pass Manager Infrastructure manages passes. It's responsibilities are: 30 // o Manage optimization pass execution order 31 // o Make required Analysis information available before pass P is run 33 // o If Analysis information is dirtied by a pass then regenerate Analysis 34 // information before it is consumed by another pass. 36 // Pass Manager Infrastructure uses multiple pass managers. They ar [all...] |
/external/v8/test/webkit/fast/js/kde/ |
Boolean-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS Boolean() is false 30 PASS Boolean(true) is true 31 PASS Boolean(false) is false 32 PASS (new Boolean(true)).valueOf() is true 33 PASS (new Boolean(false)).valueOf() is false 34 PASS (new Boolean(Boolean(true))).valueOf() is true 35 PASS true.valueOf() === true is true 36 PASS false.toString() === 'false' is true 37 PASS successfullyParsed is tru [all...] |
literals-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS x is 1 30 PASS 0x0 is 0 31 PASS 0xF is 15 32 PASS 0xFF is 255 33 PASS 01 is 1 34 PASS 010 is 8 35 PASS 09 is 9 36 PASS 019 is 19 37 PASS successfullyParsed is tru [all...] |
/external/llvm/test/Feature/ |
optnone-opt.ll | 37 ; OPT-O0-NOT: Skipping pass 40 ; OPT-O1-DAG: Skipping pass 'Aggressive Dead Code Elimination' 41 ; OPT-O1-DAG: Skipping pass 'Combine redundant instructions' 42 ; OPT-O1-DAG: Skipping pass 'Dead Store Elimination' 43 ; OPT-O1-DAG: Skipping pass 'Early CSE' 44 ; OPT-O1-DAG: Skipping pass 'Jump Threading' 45 ; OPT-O1-DAG: Skipping pass 'MemCpy Optimization' 46 ; OPT-O1-DAG: Skipping pass 'Reassociate expressions' 47 ; OPT-O1-DAG: Skipping pass 'Simplify the CFG' 48 ; OPT-O1-DAG: Skipping pass 'Sparse Conditional Constant Propagation [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_netrc.py | 48 machine host.domain.com login log password #pass account acct 49 """, '#pass') 53 machine host.domain.com login log password pass# account acct 54 """, 'pass#') 61 def _test_comment(self, nrc, passwd='pass'): 64 self.assertEqual(nrc.hosts['bar.domain.com'], ('foo', None, 'pass')) 69 machine foo.domain.com login bar password pass 70 machine bar.domain.com login foo password pass 76 machine foo.domain.com login bar password pass 77 machine bar.domain.com login foo password pass [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_netrc.py | 48 machine host.domain.com login log password #pass account acct 49 """, '#pass') 53 machine host.domain.com login log password pass# account acct 54 """, 'pass#') 61 def _test_comment(self, nrc, passwd='pass'): 64 self.assertEqual(nrc.hosts['bar.domain.com'], ('foo', None, 'pass')) 69 machine foo.domain.com login bar password pass 70 machine bar.domain.com login foo password pass 76 machine foo.domain.com login bar password pass 77 machine bar.domain.com login foo password pass [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_netrc.py | 48 machine host.domain.com login log password #pass account acct 49 """, '#pass') 53 machine host.domain.com login log password pass# account acct 54 """, 'pass#') 61 def _test_comment(self, nrc, passwd='pass'): 64 self.assertEqual(nrc.hosts['bar.domain.com'], ('foo', None, 'pass')) 69 machine foo.domain.com login bar password pass 70 machine bar.domain.com login foo password pass 76 machine foo.domain.com login bar password pass 77 machine bar.domain.com login foo password pass [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_netrc.py | 48 machine host.domain.com login log password #pass account acct 49 """, '#pass') 53 machine host.domain.com login log password pass# account acct 54 """, 'pass#') 61 def _test_comment(self, nrc, passwd='pass'): 64 self.assertEqual(nrc.hosts['bar.domain.com'], ('foo', None, 'pass')) 69 machine foo.domain.com login bar password pass 70 machine bar.domain.com login foo password pass 76 machine foo.domain.com login bar password pass 77 machine bar.domain.com login foo password pass [all...] |
/external/llvm/lib/Transforms/IPO/ |
BarrierNoopPass.cpp | 1 //===- BarrierNoopPass.cpp - A barrier pass for the pass manager ----------===// 12 // This pass is a nonce pass intended to allow manipulation of the implicitly 13 // nesting pass manager. For example, it can be used to cause a CGSCC pass 16 // FIXME: This is a huge HACK. This should be removed when the pass manager's 21 #include "llvm/Pass.h" 26 /// \brief A nonce module pass used to place a barrier in a pass manager [all...] |
/external/v8/test/webkit/fast/js/ |
modify-non-references-expected.txt | 24 PASS function f() { g()++; } f.toString() is 'function f() { g()++; }' 25 PASS function f() { g()--; } f.toString() is 'function f() { g()--; }' 26 PASS function f() { ++g(); } f.toString() is 'function f() { ++g(); }' 27 PASS function f() { --g(); } f.toString() is 'function f() { --g(); }' 28 PASS function f() { g() = 1; } f.toString() is 'function f() { g() = 1; }' 29 PASS function f() { g() += 1; } f.toString() is 'function f() { g() += 1; }' 30 PASS Number()++ threw exception ReferenceError: Invalid left-hand side expression in postfix operation. 31 PASS Number()-- threw exception ReferenceError: Invalid left-hand side expression in postfix operation. 32 PASS ++Number() threw exception ReferenceError: Invalid left-hand side expression in prefix operation. 33 PASS --Number() threw exception ReferenceError: Invalid left-hand side expression in prefix operation [all...] |
/external/v8/test/webkit/fast/regex/ |
invalid-range-in-class-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS /[a-c]+/.exec("-acbd"); is ["acb"] 30 PASS /[a\-c]+/.exec("-acbd") is ["-ac"] 31 PASS /[c-a]+/.exec("-acbd"); threw exception SyntaxError: Invalid regular expression: /[c-a]+/: Range out of order in character class. 32 PASS /[\d-x]+/.exec("1-3xy"); is ["1-3x"] 33 PASS /[x-\d]+/.exec("1-3xy"); is ["1-3x"] 34 PASS /[\d-\d]+/.exec("1-3xy"); is ["1-3"] 35 PASS /[\d-a-z]+/.exec("az1-3y"); is ["az1-3"] 36 PASS /[\d\-x]+/.exec("1-3xy"); is ["1-3x"] 37 PASS /[x\-\d]+/.exec("1-3xy"); is ["1-3x" [all...] |
/external/llvm/lib/IR/ |
LegacyPassManager.cpp | 1 //===- LegacyPassManager.cpp - LLVM Pass Infrastructure Implementation ----===// 10 // This file implements the legacy LLVM Pass Manager infrastructure. 34 // See PassManagers.h for Pass Manager infrastructure overview. 37 // Pass debugging information. Often it is useful to find out what pass is 39 // debugging on, a command line option (--debug-pass) is enabled that causes the 40 // pass name to be printed before it executes. 51 PassDebugging("debug-pass", cl::Hidden, 55 clEnumVal(Arguments , "print pass arguments to pass to 'opt'") [all...] |
/dalvik/dx/tests/127-merge-stress/com/android/dx/merge/ |
MergeTest.java | 11 * This test tries to merge given dex files at random, a first pass at 2 by 2, followed by 12 * a second pass doing multi-way merges. 21 for (int pass = 0; pass < 2; pass++) { 23 // On the first pass only do 2-way merges, then do from 3 to 10 way merges 25 int numDex = pass == 0 ? 2 : random.nextInt(8) + 3;
|