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

<<21222324252627282930>>

  /external/v8/test/webkit/fast/js/kde/
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...]
Object-expected.txt 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
29 PASS typeof Object() is 'object'
30 PASS var o = Object(); o.x = 11; o.x; is 11
31 PASS Object(1).valueOf() is 1
32 PASS Object(true).valueOf() is true
33 PASS Object('s').valueOf() is 's'
34 PASS typeof (new Object()) is 'object'
35 PASS (new Object(1)).valueOf() is 1
36 PASS (new Object(true)).valueOf() is true
37 PASS (new Object('s')).valueOf() is 's
    [all...]
  /external/v8/test/webkit/
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...]
function-call-aliased-expected.txt 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
29 PASS myObject.call() is [myObject, "myObject.call"]
30 PASS myFunction('arg1') is [this, "myFunction", "arg1"]
31 PASS myFunction.call(myObject, 'arg1') is [myObject, "myFunction", "arg1"]
32 PASS myFunction.call() is [this, "myFunction", undefined]
33 PASS myFunction.call(null) is [this, "myFunction", undefined]
34 PASS myFunction.call(undefined) is [this, "myFunction", undefined]
35 PASS myFunction.aliasedCall(myObject, 'arg1') is [myObject, "myFunction", "arg1"]
36 PASS myFunction.aliasedCall() is [this, "myFunction", undefined]
37 PASS myFunction.aliasedCall(null) is [this, "myFunction", undefined
    [all...]
  /external/v8/test/webkit/fast/js/
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...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
BridgeWindowSession.java 44 // pass for now.
52 // pass for now.
60 // pass for now.
68 // pass for now.
74 // pass for now.
79 // pass for now.
85 // pass for now.
94 // pass for now.
101 // pass for now.
107 // pass for now
    [all...]
BridgePowerManager.java 47 // pass for now.
54 // pass for now.
60 // pass for now.
65 // pass for now.
70 // pass for now.
75 // pass for now.
80 // pass for now.
85 // pass for now.
90 // pass for now.
95 // pass for now
    [all...]
  /external/v8/test/webkit/fast/regex/
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...]
ecma-regex-examples-expected.txt 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
29 PASS regex01.exec("abc") is ["a"]
30 PASS regex02.exec("abc") is ["abc", "a", "a", undefined, "bc", undefined, "bc"]
31 PASS regex03.exec("abcdefghi") is ["abcde"]
32 PASS regex04.exec("abcdefghi") is ["abc"]
33 PASS regex05.exec("aabaac") is ["aaba", "ba"]
34 PASS "aaaaaaaaaa,aaaaaaaaaaaaaaa".replace(regex06,"$1") is "aaaaa"
35 PASS regex07.exec("zaacbbbcac") is ["zaacbbbcac", "z", "ac", "a", undefined, "c"]
36 PASS regex08.exec("b") is ["", undefined]
37 PASS regex09.exec("baaaac") is ["b", ""
    [all...]
  /build/kati/testcase/
autovar_assign.mk 4 $(foreach x,FAIL PASS,$(eval x+=$(x)))
10 x=PASS
target_specific_var_ref.mk 4 foo: X:=PASS
9 Y:=PASS
  /external/autotest/client/common_lib/cros/graphite/
elasticsearch_mock.py 10 pass
15 pass
  /external/autotest/site_utils/rpm_control_system/
rpm_infrastructure_exception.py 10 pass
15 pass
  /external/chromium-trace/catapult/telemetry/telemetry/internal/browser/
browser_finder_exceptions.py 7 pass
11 pass
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cognito/sync/
exceptions.py 26 pass
30 pass
34 pass
38 pass
42 pass
46 pass
50 pass
54 pass
  /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
  /external/e2fsprogs/tests/f_dupsuper/
expect.1 3 Pass 1: Checking inodes, blocks, and sizes
6 Pass 1B: Rescanning for multiply-claimed blocks
8 Pass 1C: Scanning directories for inodes with multiply-claimed blocks
9 Pass 1D: Reconciling multiply-claimed blocks
17 Pass 2: Checking directory structure
18 Pass 3: Checking directory connectivity
19 Pass 4: Checking reference counts
20 Pass 5: Checking group summary information
  /external/libxml2/test/automata/
abba 14 # Pass
20 # Pass
  /external/mesa3d/src/mesa/x86-64/
calling_convention.txt 7 rcx used to pass 4th integer argument to functions
9 rdx used to pass 3rd argument to functions 2nd return register
15 rsi used to pass 2nd argument to functions
17 rdi used to pass 1st argument to functions
19 r8 used to pass 5th argument to functions
21 r9 used to pass 6th argument to functions
29 xmm0?1 used to pass and return floating point arguments
31 xmm2?7 used to pass floating point arguments
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/tests/
test_default.py 11 class TestPyDefault(TestDefault, PyTest): pass
12 class TestCDefault(TestDefault, CTest): pass
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/tests/
test_default.py 11 class TestPyDefault(TestDefault, PyTest): pass
12 class TestCDefault(TestDefault, CTest): pass

Completed in 1606 milliseconds

<<21222324252627282930>>