/external/valgrind/none/tests/x86/ |
faultstatus.stderr.exp | 2 Test 1: PASS 3 Test 2: PASS 4 Test 3: PASS 5 Test 4: PASS
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_opcodes.py | 13 except NameError: pass 14 except ZeroDivisionError: pass 15 except TypeError: pass 16 try: pass 17 except: pass 18 try: pass 19 finally: pass 26 class AClass: pass 27 class BClass(AClass): pass 28 class CClass: pass [all...] |
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_opcodes.py | 13 except NameError: pass 14 except ZeroDivisionError: pass 15 except TypeError: pass 16 try: pass 17 except: pass 18 try: pass 19 finally: pass 26 class AClass: pass 27 class BClass(AClass): pass 28 class CClass: pass [all...] |
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...] |
object_prototype_tostring-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS _array.toString() is "[object Array]" 30 PASS _string.toString() is "[object String]" 31 PASS _boolean.toString() is "[object Boolean]" 32 PASS _number.toString() is "[object Number]" 33 PASS _object.toString() is "[object Object]" 34 PASS _date.toString() is "[object Date]" 35 PASS _regexp.toString() is "[object RegExp]" 36 PASS _error.toString() is "[object Error]" 37 PASS _function.toString() is "[object Function] [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...] |
regexp-no-extensions-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS /\x{41}/.exec("yA1") is null 30 PASS /[\x{41}]/.exec("yA1").toString() is "1" 31 PASS /\x1g/.exec("x1g").toString() is "x1g" 32 PASS /[\x1g]/.exec("x").toString() is "x" 33 PASS /[\x1g]/.exec("1").toString() is "1" 34 PASS /\2147483648/.exec(String.fromCharCode(140) + "7483648").toString() is String.fromCharCode(140) + "7483648" 35 PASS /\4294967296/.exec("\"94967296").toString() is "\"94967296" 37 PASS "\nAbc\n".replace(/(\n)[^\n]+$/, "$1") is "\nAbc\n" 38 PASS /x$/.exec("x\n") is nul [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...] |
lastIndex-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS delete /x/.lastIndex is false 30 PASS 'use strict'; delete /x/.lastIndex threw exception TypeError: Cannot delete property 'lastIndex' of [object RegExp]. 31 PASS 'lastIndex' in /x/ is true 32 PASS for (property in /x/) if (property === 'lastIndex') throw false; true is true 33 PASS var re = /x/; re.lastIndex = re; re.lastIndex === re is true 34 PASS Object.defineProperty(/x/, {get:function(){}}) threw exception TypeError: Property description must be an object: undefined. 35 PASS Object.defineProperty(/x/, 'lastIndex', {enumerable:true}); true threw exception TypeError: Cannot redefine property: lastIndex. 36 PASS Object.defineProperty(/x/, 'lastIndex', {enumerable:false}); true is true 37 PASS Object.defineProperty(/x/, 'lastIndex', {configurable:true}); true threw exception TypeError: Cann (…) [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...] |
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...] |
tostring-exception-in-property-access-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS PASS: Exception caught -- Exception thrown by toString 30 PASS target[""] is 'Did not assign to property when setter subscript threw' 31 PASS PASS: Exception caught -- Exception thrown by toString 32 PASS target[""] is 'Did not delete property when subscript threw' 33 PASS PASS: Exception caught -- Exception thrown by toString 34 PASS localTest is 'Did not assign to result when subscript threw. [all...] |
array-enumerators-functions-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS count=0;lastIndex=-1;copyArray(simpleArray).every(forwarders[f], returnFalse, 0) is count=0;lastIndex=-1;Array.prototype.every.call(toObject(simpleArray), forwarders[f], returnFalse, 0) 30 PASS count=0;lastIndex=-1;copyArray(emptyArray).every(forwarders[f], returnFalse, 0) is count=0;lastIndex=-1;Array.prototype.every.call(toObject(emptyArray), forwarders[f], returnFalse, 0) 31 PASS count=0;lastIndex=-1;copyArray(largeEmptyArray).every(forwarders[f], returnFalse, 0) is count=0;lastIndex=-1;Array.prototype.every.call(toObject(largeEmptyArray), forwarders[f], returnFalse, 0) 32 PASS count=0;lastIndex=-1;copyArray(largeSparseArray).every(forwarders[f], returnFalse, 0) is count=0;lastIndex=-1;Array.prototype.every.call(toObject(largeSparseArray), forwarders[f], returnFalse, 0) 33 PASS count=0;lastIndex=-1;copyArray(simpleArray).every(forwarders[f], returnTrue, 0) is count=0;lastIndex=-1;Array.prototype.every.call(toObject(simpleArray), forwarders[f], returnTrue, 0) 34 PASS count=0;lastIndex=-1;copyArray(emptyArray).every(forwarders[f], returnTrue, 0) is count=0;lastIndex=-1;Array.prototype.every.call(toObject(emptyArray), forwarders[f], returnTrue, 0) 35 PASS count=0;lastIndex=-1;copyArray(largeEmptyArray).every(forwarders[f], returnTrue, 0) is count=0;lastIndex=-1;Array.prototype.every.call(toObject(largeEmptyArray), forwarders[f], returnTrue, 0) 36 PASS count=0;lastIndex=-1;copyArray(largeSparseArray).every(forwarders[f], returnTrue, 0) is count=0;lastIndex=-1;Array.prototype.every.call(toObject(largeSparseArray), forwarders[f], returnTrue, 0) 37 PASS count=0;lastIndex=-1;copyArray(simpleArray).every(forwarders[f], returnElem, 0) is count=0;lastInd (…) [all...] |
array-reduce-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS [0,1,2,3].reduce(function(a,b){ return a + b; }) is 6 30 PASS [1,2,3].reduce(function(a,b){ return a + b; }) is 6 31 PASS [0,1,2,3].reduce(function(a,b){ return a + b; }, 4) is 10 32 PASS [1,2,3].reduce(function(a,b){ return a + b; }, 4) is 10 33 PASS toObject([0,1,2,3]).reduce(function(a,b){ return a + b; }) is 6 34 PASS toObject([1,2,3]).reduce(function(a,b){ return a + b; }) is 6 35 PASS toObject([0,1,2,3]).reduce(function(a,b){ return a + b; }, 4) is 10 36 PASS toObject([1,2,3]).reduce(function(a,b){ return a + b; }, 4) is 10 37 PASS toUnorderedObject([0,1,2,3]).reduce(function(a,b){ return a + b; }) is [all...] |
date-constructor-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS isNaN(new Date("")) is true 30 PASS new Date(1111).getTime() is 1111 31 PASS new Date(object).getTime() is 1111 32 PASS new Date(new Date(1111)).getTime() is 1111 33 PASS new Date(new Date(1111).toString()).getTime() is 1000 34 PASS new Date(1111, 1).getTime() - timeZoneOffset is -27104803200000 35 PASS new Date(1111, 1, 1).getTime() - timeZoneOffset is -27104803200000 36 PASS new Date(1111, 1, 1, 1).getTime() - timeZoneOffset is -27104799600000 37 PASS new Date(1111, 1, 1, 1, 1).getTime() - timeZoneOffset is -2710479954000 [all...] |
/external/llvm/include/llvm/ |
PassAnalysisSupport.h | 1 //===- llvm/PassAnalysisSupport.h - Analysis Pass Support code --*- C++ -*-===// 11 // This file is automatically #included by Pass.h, so: 15 // Instead, #include Pass.h 24 #include "llvm/Pass.h" 30 // AnalysisUsage - Represent the analysis usage information of a pass. This 31 // tracks analyses that the pass REQUIRES (must be available when the pass 33 // pass), and analyses that the pass PRESERVES (the pass does not invalidate th [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...] |
/external/compiler-rt/test/asan/TestCases/ |
asan_and_llvm_coverage_test.cc | 8 printf("PASS\n"); 9 // CHECK: PASS
|
/external/e2fsprogs/tests/f_dup_resize/ |
expect.1 | 3 Pass 1: Checking inodes, blocks, and sizes 6 Pass 1B: Rescanning for multiply-claimed blocks 9 Pass 1C: Scanning directories for inodes with multiply-claimed blocks 10 Pass 1D: Reconciling multiply-claimed blocks 18 Pass 2: Checking directory structure 19 Pass 3: Checking directory connectivity 20 Pass 4: Checking reference counts 21 Pass 5: Checking group summary information
|