Searched defs:valueOf (Results 1 - 25 of 103) sorted by last modified time

12345

/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/oned/ ...
/external/vogar/lib/
H A Dcaliper.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/caliper/ com/google/caliper/util/ ...
H A Dgson-1.7.1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gson/ com/google/gson/annotations/ ...
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/annotations/ ...
H A Djsr305.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/annotation/ javax/annotation/Tainted.class Tainted. ...
H A Dkxml-libcore-20110123.jarorg/kxml2/ org/kxml2/kdom/ org/kxml2/kdom/Element.class Element.java package org.kxml2. ...
H A Dmockito-all-1.8.5.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/hamcrest/ org/hamcrest/core/ org/hamcrest/internal/ org/ ...
/external/v8/test/mjsunit/
H A Darray-splice.js207 spliced = array.splice({valueOf: function() { return 1; }},
222 bad_start = { valueOf: function() { array.push(2*i); return -1; } };
223 bad_count = { valueOf: function() { array.push(2*i + 1); return 1; } };
H A Dconst.js53 const o = { valueOf: function() { valueOfCount++; return 42; } };
H A Ddouble-equals.js51 this.valueOf = function () { return this.value; };
55 // valueOf isn't a function.
58 this.valueOf = null;
195 // and valueOf second.
198 dnow.valueOf = function () { return "42"; };
217 valueOf: null,
H A Djson.js55 valueOf: function() { return Infinity; },
60 valueOf: "not callable",
67 valueOf: "not callable",
73 valueOf: "not callable",
399 num37.valueOf = function() { return 37; };
402 numFoo.valueOf = "not callable";
406 numTrue.valueOf = function() { return true; }
413 str37.valueOf = function() { return 37; };
454 valueOf: function() { return true; } };
H A Dmath-min-max.js65 o.valueOf = function() { return 1; };
98 o.valueOf = function() { return 3; };
173 v9.valueOf = function() { return 6; }
H A Dnegate.js43 var x = { valueOf: function() { return 2; } };
44 var y = { valueOf: function() { return 3; } };
51 var v = { valueOf: function() { z+=2; return z; } };
52 var w = { valueOf: function() { z+=3; return z; } };
H A Dobject-toprimitive.js29 // Does it [[Get]] and [[Call]] the object's toString and valueOf properties
33 valueOf: function() { return "37"; } };
55 get valueOf() { trace.push("gvo");
H A Dparse-int-float.js104 var throwingRadix = { valueOf: function() { state = "throwingRadix"; throw null; } };
/external/v8/test/mjsunit/compiler/
H A Dassignment-deopt.js149 var g3 = { valueOf: function() { o.y = "bar"; return 42; }};
166 var g4 = { valueOf: function() { o.y = "bar"; return 42; }};
H A Dcompare.js76 // Test non-primitive values and watch for valueOf call order.
79 var x = { valueOf: function() { result += "x"; } };
80 var y = { valueOf: function() { result += "y"; } };
H A Drecursive-deopt.js44 var one = { valueOf: function() { return 1; } };
/external/v8/test/mjsunit/regress/
H A Dregress-1233.js29 // call toString or valueOf on members of the object.
36 delicate.valueOf = function(){ throw Error("valueOf"); };
H A Dregress-1327557.js28 var x = { valueOf: function() { throw "x"; } };
29 var y = { valueOf: function() { throw "y"; } };
H A Dregress-1365.js36 var valueOf = Object.prototype.valueOf;
39 function callGlobalValueOf() { valueOf(); }
40 function callGlobalHasOwnProperty() { valueOf(); }
42 assertEquals(Object.prototype, Object.prototype.valueOf());
46 %OptimizeFunctionOnNextCall(Object.prototype.valueOf);
47 Object.prototype.valueOf();
49 assertEquals(Object.prototype, Object.prototype.valueOf());
54 var valueOf = Object.prototype.valueOf;
[all...]
H A Dregress-1412.js46 Object.prototype.valueOf.apply(receiver, arguments);
H A Dregress-2438.js30 var side_effect_object = { valueOf: function() { return counter++; } };
H A Dregress-2443.js49 // Call on Number objects with custom valueOf method.
52 x_obj.valueOf = function() { assertUnreachable(); };
83 var f_obj = { valueOf: function() { f_flag = true; return 1000; } };
H A Dregress-2444.js42 obj.valueOf = function() {

Completed in 1176 milliseconds

12345