HomeSort by relevance Sort by last modified time
    Searched full:pass (Results 651 - 675 of 12602) sorted by null

<<21222324252627282930>>

  /external/llvm/test/CodeGen/ARM/
global-merge-addrspace.ll 2 ; Test the GlobalMerge pass. Check that the pass does not crash when using
  /external/v8/test/webkit/
array-constructor-host-call-expected.txt 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
29 PASS array instanceof Array is true
30 PASS array.length is 100
31 PASS array instanceof Array is true
32 PASS array.length is 100
33 PASS array instanceof Array is true
34 PASS array.length is 100
35 PASS successfullyParsed is true
bitops-type-tag-expected.txt 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
29 PASS aDouble>>27 is 0
30 PASS aDouble>>27|0 is 0
31 PASS aDouble>>0 is 100000000
32 PASS aDouble>>0|0 is 100000000
33 PASS aDouble|0 is 100000000
34 PASS (function(x){ return 2147483648>>>x; })(31) is 1
35 PASS successfullyParsed is true
eval-var-decl-expected.txt 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
29 PASS this.hasOwnProperty("foo") is true
30 PASS this.hasOwnProperty("bar") is true
31 PASS firstEvalResult is true
32 PASS secondEvalResult is false
33 PASS thirdEvalResult is true
34 PASS testEvalInCatch() is true
35 PASS successfullyParsed is true
has-own-property-expected.txt 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
29 PASS typeof {foo : 'yum'}.hasOwnProperty is "function"
30 PASS ({foo : 'yum'}).hasOwnProperty('foo') is true
31 PASS ''.hasOwnProperty('length') is true
32 PASS ({foo : 'yum'}).hasOwnProperty('bar') is false
33 PASS ({foo : 'yum'}).hasOwnProperty('toString') is false
34 PASS ''.hasOwnProperty('toString') is false
35 PASS successfullyParsed is true
string-property-iteration-expected.txt 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
29 PASS stringProperties.length is 5
30 PASS stringProperties[0] is "0"
31 PASS stringProperties[1] is "1"
32 PASS stringProperties[2] is "2"
33 PASS stringProperties[3] is "3"
34 PASS stringProperties[4] is "4"
35 PASS successfullyParsed is true
unmatching-argument-count-expected.txt 24 PASS eval("f()") is ""
25 PASS eval("f(1)") is "1"
26 PASS eval("f(1, 2)") is "1, 2"
27 PASS eval("f(1, 2, 3)") is "1, 2, 3"
28 PASS eval("f(1, 2, 3, 4)") is "1, 2, 3, 4"
29 PASS eval("f(1, 2, 3, 4, 5)") is "1, 2, 3, 4, 5"
30 PASS eval("f(1, 2, 3, 4, 5, 6)") is "1, 2, 3, 4, 5, 6"
31 PASS successfullyParsed is true
named-function-expression-expected.txt 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
30 PASS var x = (function(a,b){ return a + b; }); x(1,2) is 3
32 PASS var x = (function Named(a,b){ return a + b; }); x(2,3) is 5
34 PASS var z = 6; var x = eval('(function(a,b){ return a + b + z; })'); x(3,4) is 13
36 PASS var z = 10; var x = eval('(function Named(a,b){ return (!!Named) ? (a + b + z) : -999; })'); x(4,5) is 19
38 PASS (function Foo(){ return 1; }); try { Foo(); throw "FuncExpr was stored"; } catch(e) { if(typeof(e)=="string") throw e; } 1 is 1
40 PASS var ctr = 3; var x = (function Named(a,b){ if(--ctr) return 2 * Named(a,b); else return a + b; }); x(5,6) is 44
42 PASS var hadError = 0; try { eval("function(){ return 2; };"); } catch(e) { hadError = 1; }; hadError; is 1
46 PASS: (function closure() { return closure == arguments.callee && !this.closure; })() should be true and is.
47 PASS: (function closure() { closure = 1; return closure == arguments.callee && !this.closure; })() shou (…)
    [all...]
  /external/v8/test/webkit/fast/js/
date-preserve-milliseconds-expected.txt 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
29 PASS d.getMilliseconds() is 1
30 PASS d.getMilliseconds() is 1
31 PASS d.getMilliseconds() is 1
32 PASS d.getMilliseconds() is 1
33 PASS d.getMilliseconds() is 1
34 PASS d.getMilliseconds() is 1
35 PASS successfullyParsed is true
object-prototype-constructor-expected.txt 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
29 PASS f.constructor is Foo.Bar
30 PASS typeof f.constructor is "function"
31 PASS f2.constructor is Foo2.Bar
32 PASS typeof f2.constructor is "function"
33 PASS f3.constructor is Foo3.Bar
34 PASS typeof f3.constructor is "function"
35 PASS successfullyParsed is true
array-prototype-properties-expected.txt 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
29 PASS Array.prototype.toString.call(undefined) threw exception TypeError: Cannot convert undefined or null to object.
30 PASS Array.prototype.toLocaleString.call(undefined) threw exception TypeError: Cannot convert undefined or null to object.
31 PASS Array.prototype.concat.call(undefined, []) threw exception TypeError: Array.prototype.concat called on null or undefined.
32 PASS Array.prototype.join.call(undefined, []) threw exception TypeError: Array.prototype.join called on null or undefined.
33 PASS Array.prototype.pop.call(undefined) threw exception TypeError: Array.prototype.pop called on null or undefined.
34 PASS Array.prototype.push.call(undefined, {}) threw exception TypeError: Array.prototype.push called on null or undefined.
35 PASS Array.prototype.reverse.call(undefined) threw exception TypeError: Array.prototype.reverse called on null or undefined.
36 PASS Array.prototype.shift.call(undefined) threw exception TypeError: Array.prototype.shift called on null or undefined.
37 PASS Array.prototype.slice.call(undefined, 0, 1) threw exception TypeError: Array.prototype.slice calle (…)
    [all...]
  /external/v8/test/webkit/fast/js/kde/
Error-expected.txt 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
29 PASS Error('msg').message is 'msg'
30 PASS (new Error('msg')).message is 'msg'
31 PASS (new Error('msg')).name is 'Error'
32 PASS Object.prototype.toString.apply(Error()) is '[object Error]'
33 PASS Object.prototype.toString.apply(Error) is '[object Function]'
34 PASS Object.prototype.toString.apply(EvalError) is '[object Function]'
35 PASS successfullyParsed is true
arguments-scope-expected.txt 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
29 PASS test0
30 PASS test1
31 PASS test2
32 PASS test3
33 PASS test4.(1)
34 PASS test4.(2)
35 PASS successfullyParsed is true
conditional-expected.txt 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
29 PASS true ? 1 : 2 is 1
30 PASS false ? 1 : 2 is 2
31 PASS 'abc' ? 1 : 2 is 1
32 PASS null ? 1 : 2 is 2
33 PASS undefined ? 1 : 2 is 2
34 PASS /*var a=1;if (undefined) a = 2;*/ a is 1
35 PASS successfullyParsed is true
eval-expected.txt 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
29 PASS eval.length is 1
30 PASS eval('this') is this
31 PASS bx is 99
32 PASS cx is 99
33 PASS Skipping test for deprecated Object.prototype.eval()
34 PASS lotto() is 0
35 PASS successfullyParsed is true
iteration-expected.txt 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
29 PASS count is 10
30 PASS count is 5
31 PASS count is 10
32 PASS properties is 'a=11;b=22;'
33 PASS list is '[0]=100;[1]=101;'
34 PASS list is '123'
35 PASS successfullyParsed is true
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/tests/
test_pass2.py 17 class TestPyPass2(TestPass2, PyTest): pass
18 class TestCPass2(TestPass2, CTest): pass
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/tests/
test_pass2.py 17 class TestPyPass2(TestPass2, PyTest): pass
18 class TestCPass2(TestPass2, CTest): pass
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/drawing/
__init__.py 14 pass
19 pass
  /art/compiler/dex/
pass_driver_me.h 48 void DispatchPass(const Pass* pass) {
49 VLOG(compiler) << "Dispatching " << pass->GetName();
50 const PassME* me_pass = down_cast<const PassME*>(pass);
90 bool RunPass(const Pass* pass, bool time_split) OVERRIDE {
91 // Paranoid: c_unit and pass cannot be null, and the pass should have a name.
92 DCHECK(pass != nullptr);
93 DCHECK(pass->GetName() != nullptr && pass->GetName()[0] != 0)
    [all...]
  /external/e2fsprogs/tests/f_dup_de/
expect-nohtree.1 0 Pass 1: Checking inodes, blocks, and sizes
5 Pass 2: Checking directory structure
9 Pass 3: Checking directory connectivity
10 Pass 3A: Optimizing directories
26 Pass 4: Checking reference counts
27 Pass 5: Checking group summary information
expect.1 0 Pass 1: Checking inodes, blocks, and sizes
2 Pass 2: Checking directory structure
6 Pass 3: Checking directory connectivity
7 Pass 3A: Optimizing directories
23 Pass 4: Checking reference counts
24 Pass 5: Checking group summary information
  /external/e2fsprogs/tests/f_h_badroot/
expect.1 3 Pass 1: Checking inodes, blocks, and sizes
19 Pass 2: Checking directory structure
33 Pass 3: Checking directory connectivity
34 Pass 3A: Optimizing directories
35 Pass 4: Checking reference counts
36 Pass 5: Checking group summary information
  /external/e2fsprogs/tests/f_illitable_flexbg/
expect.1 7 Pass 1: Checking inodes, blocks, and sizes
13 Pass 1: Checking inodes, blocks, and sizes
14 Pass 2: Checking directory structure
15 Pass 3: Checking directory connectivity
16 Pass 4: Checking reference counts
17 Pass 5: Checking group summary information
  /external/valgrind/gdbserver_tests/
mcsignopass.stdinB.gdb 6 # instruct gdb to not pass (i.e. ignore) these signals.
9 # For SIGSEGV, we make it continue a few times, till we pass it.
11 handle SIGBUS pass print stop
12 handle SIGFPE pass print stop
20 # to be sure it is this signal which is re-signalled. Then will pass it.
32 handle SIGSEGV pass print nostop

Completed in 70 milliseconds

<<21222324252627282930>>