/external/v8/test/mjsunit/ |
D | to_number_order.js | 59 var year = { valueOf: function() { x += 1; return 2007; } }; method 60 var month = { valueOf: function() { x += 2; return 2; } }; method 61 var date = { valueOf: function() { x += 3; return 4; } }; method 62 var hours = { valueOf: function() { x += 4; return 13; } }; method 63 var minutes = { valueOf: function() { x += 5; return 50; } }; method 64 var seconds = { valueOf: function() { x += 6; return 0; } }; method 65 var ms = { valueOf: function() { x += 7; return 999; } }; method 134 var a = { valueOf: function() { x += "hest"; return 97; } }; method 135 var b = { valueOf: function() { x += "fisk"; return 98; } }; method
|
D | negate.js | 43 var x = { valueOf: function() { return 2; } }; method 44 var y = { valueOf: function() { return 3; } }; method 51 var v = { valueOf: function() { z+=2; return z; } }; method 52 var w = { valueOf: function() { z+=3; return z; } }; method
|
D | array-splice.js | 267 spliced = array.splice({valueOf: function() { return 1; }}, method 282 bad_start = { valueOf: function() { array.push(2*i); return -1; } }; method 283 bad_count = { valueOf: function() { array.push(2*i + 1); return 1; } }; method
|
D | string-charat.js | 33 var slowIndex1 = { valueOf: function() { return 1; } }; method 35 var slowIndexOutOfRange = { valueOf: function() { return -1; } }; method 102 valueOf: function() { return "should not be called"; } method 184 valueOf: badToString property
|
D | regress-ntl.js | 11 v_2 = {valueOf: function() { throw "gagh"; }}; method 31 v_4 = {valueOf: function() { throw "gagh"; }}; method
|
D | double-equals.js | 53 this.valueOf = function () { return this.value; }; method in Wrapper 200 dnow.valueOf = function () { return "42"; }; function 219 valueOf: null, property
|
D | math-abs.js | 90 assertEquals(42, Math.abs({valueOf: function() { return 42; } })); method 91 assertEquals(42, Math.abs({valueOf: function() { return -42; } })); method
|
/external/v8/test/webkit/ |
D | date-constructor.js | 31 object.valueOf = function() { return 1111; } function 77 var year = { valueOf: function() { testStr += 1; return 2007; } }; method 78 var month = { valueOf: function() { testStr += 2; return 2; } }; method 79 var date = { valueOf: function() { testStr += 3; return 4; } }; method 80 var hours = { valueOf: function() { testStr += 4; return 13; } }; method 81 var minutes = { valueOf: function() { testStr += 5; return 50; } }; method 82 var seconds = { valueOf: function() { testStr += 6; return 0; } }; method 83 var ms = { valueOf: function() { testStr += 7; return 999; } }; method
|
D | math.js | 78 var v = { valueOf: function() { testStr += "one"; return 1; } }; method 79 var w = { valueOf: function() { testStr += "two"; return 2; } }; method
|
/external/v8/test/mjsunit/regress/ |
D | regress-353004.js | 9 var array1 = new Uint8Array(buffer1, {valueOf : function() { method 19 var array2 = new Uint8Array(buffer2, 0, {valueOf : function() { method 27 var dataView1 = new DataView(buffer3, {valueOf : function() { method 36 var dataView2 = new DataView(buffer4, 0, {valueOf : function() { method 44 var buffer6 = buffer5.slice({valueOf : function() { method 52 var buffer8 = buffer7.slice(0, {valueOf : function() { method 60 var array10 = array9.subarray({valueOf : function() { method 69 var array12 = array11.subarray(0, {valueOf : function() { method
|
D | regress-1327557.js | 28 var x = { valueOf: function() { throw "x"; } }; method 29 var y = { valueOf: function() { throw "y"; } }; method
|
/external/jetty/src/java/org/eclipse/jetty/util/ |
D | TypeUtil.java | 135 java.lang.Boolean.class.getMethod("valueOf",s)); in class2Value.put() 137 java.lang.Byte.class.getMethod("valueOf",s)); in class2Value.put() 139 java.lang.Double.class.getMethod("valueOf",s)); in class2Value.put() 141 java.lang.Float.class.getMethod("valueOf",s)); in class2Value.put() 143 java.lang.Integer.class.getMethod("valueOf",s)); in class2Value.put() 145 java.lang.Long.class.getMethod("valueOf",s)); in class2Value.put() 147 java.lang.Short.class.getMethod("valueOf",s)); in class2Value.put() 150 java.lang.Boolean.class.getMethod("valueOf",s)); in class2Value.put() 152 java.lang.Byte.class.getMethod("valueOf",s)); in class2Value.put() 154 java.lang.Double.class.getMethod("valueOf",s)); in class2Value.put() [all …]
|
/external/v8/test/mjsunit/es6/ |
D | typedarray-set-length.js | 44 a.set({length: {valueOf: lengthValue}}); property 48 a.set({length: {valueOf: lengthFun}}); property 52 a.set({length: {valueOf: badNonIntegerLength}}); property
|
D | string-fromcodepoint.js | 37 valueOf: function() { throw Error(); } }); method 40 valueOf: function() { throw Error(); } }); method 44 valueOf: function() { ++tmp; return tmp; } method
|
D | math-trunc.js | 43 assertEquals(-1, Math.trunc({ valueOf: function() { return -1.1; } })); method 45 String(1/Math.trunc({ valueOf: function() { return "-0.1"; } }))); method
|
D | math-sign.js | 41 assertEquals(-1, Math.sign({ valueOf: function() { return -1.1; } })); method 42 assertEquals(-1, Math.sign({ valueOf: function() { return "-1.1"; } })); method
|
D | math-log2-log10.js | 34 assertTrue(isNaN(fun({ valueOf: function() { return -1; } }))); method 35 assertTrue(isNaN(fun({ valueOf: function() { return "abc"; } }))); method
|
/external/guava/guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/ |
D | UnsignedInteger.java | 76 public static UnsignedInteger valueOf(long value) { in valueOf() method in UnsignedInteger 88 public static UnsignedInteger valueOf(BigInteger value) { in valueOf() method in UnsignedInteger 102 public static UnsignedInteger valueOf(String string) { in valueOf() method in UnsignedInteger 113 public static UnsignedInteger valueOf(String string, int radix) { in valueOf() method in UnsignedInteger
|
/external/guava/guava/src/com/google/common/primitives/ |
D | UnsignedInteger.java | 77 public static UnsignedInteger valueOf(long value) { in valueOf() method in UnsignedInteger 89 public static UnsignedInteger valueOf(BigInteger value) { in valueOf() method in UnsignedInteger 103 public static UnsignedInteger valueOf(String string) { in valueOf() method in UnsignedInteger 114 public static UnsignedInteger valueOf(String string, int radix) { in valueOf() method in UnsignedInteger
|
D | UnsignedLong.java | 81 public static UnsignedLong valueOf(long value) { in valueOf() method in UnsignedLong 93 public static UnsignedLong valueOf(BigInteger value) { in valueOf() method in UnsignedLong 107 public static UnsignedLong valueOf(String string) { in valueOf() method in UnsignedLong 119 public static UnsignedLong valueOf(String string, int radix) { in valueOf() method in UnsignedLong
|
/external/v8/test/mjsunit/harmony/ |
D | to-name.js | 35 var b = { valueOf: function() { return 42 }}; method 41 valueOf: function() { return 123 } method
|
D | to-primitive.js | 71 var b = { valueOf: function() { return 42 }}; method 81 valueOf: function() { return 123 } method
|
D | to-number.js | 39 var b = { valueOf: function() { return 42 }}; method 45 valueOf: function() { return 123 } method
|
D | to-length.js | 54 var b = { valueOf: function() { return 42 }}; method 60 valueOf: function() { return 123 } method
|
D | to-string.js | 35 var b = { valueOf: function() { return 42 }}; method 41 valueOf: function() { return 123 } method
|