Searched refs:assertTrue (Results 26 - 50 of 1847) sorted by relevance

1234567891011>>

/external/v8/test/mjsunit/regress/
H A Dregress-734862.js33 assertTrue(catcher(null, 'foo') instanceof TypeError);
34 assertTrue(catcher(void 0, 'foo') instanceof TypeError);
35 assertTrue(catcher(null, 123) instanceof TypeError);
36 assertTrue(catcher(void 0, 123) instanceof TypeError);
H A Dregress-1182832.js36 assertTrue(e instanceof TypeError);
38 assertTrue(caught);
H A Dregress-874178.js29 assertTrue(Function.prototype.isPrototypeOf(foo));
32 assertTrue(foo.propertyIsEnumerable('bar'));
H A Dregress-900966.js28 assertTrue('abc'[10] === undefined);
43 assertTrue(2[11] === undefined);
47 assertTrue(true[12] === undefined);
H A Dregress-1083.js33 assertTrue(desc.enumerable);
34 assertTrue(desc.configurable);
37 assertTrue(desc.hasOwnProperty('value'));
38 assertTrue(desc.writable);
H A Dregress-1112.js35 assertTrue(this.hasOwnProperty("1"));
H A Dregress-1130.js38 assertTrue(e instanceof TypeError);
40 assertTrue(exception);
H A Dregress-1213575.js31 this.__defineSetter__('x', function(value) { assertTrue(value === 1); });
37 assertTrue(e instanceof TypeError);
H A Dregress-246.js30 assertTrue(/(?:text)/.test("text"));
H A Dregress-485.js42 assertTrue("[object builtins]" != builtin2(), "Direct call to toString");
43 assertTrue("[object builtins]" != builtin2.call(), "call() to toString");
44 assertTrue("[object builtins]" != builtin2.apply(), "call() to toString");
45 assertTrue("[object builtins]" != builtin2.call.call(builtin2),
H A Dregress-crbug-100859.js36 assertTrue(ex instanceof RangeError);
39 assertTrue(exception);
H A Dregress-smi-only-concat.js36 assertTrue(%HasFastElements(fast_array));
37 assertTrue(%HasFastElements(array))
H A Dregress-1110.js35 assertTrue(e instanceof SyntaxError);
36 assertTrue(/continue/.test(e.message));
H A Dregress-1150.js33 assertTrue(keys.indexOf("a") > 0);
H A Dregress-1201933.js40 assertTrue(caught);
H A Dregress-992733.js35 assertTrue(threw);
/external/v8/test/mjsunit/
H A Dtry-finally-nested.js39 assertTrue(false, "should not reach here");
41 assertTrue(executed, "finally block executed");
H A Darray-construct-transition.js34 assertTrue(%HasFastSmiOnlyElements(a));
36 assertTrue(%HasFastDoubleElements(b));
38 assertTrue(%HasFastElements(c));
H A Ddelete.js32 assertTrue(delete null);
33 assertTrue(delete 2);
34 assertTrue(delete 'foo');
35 assertTrue(delete Number(7));
36 assertTrue(delete new Number(8));
38 assertTrue(delete {}.x);
39 assertTrue(delete {}.y);
40 assertTrue(delete {}.toString);
44 assertTrue(delete x);
45 assertTrue(typeo
[all...]
H A Dhas-own-property.js29 assertTrue({x:12}.hasOwnProperty('x'));
33 assertTrue(''.hasOwnProperty('length'));
34 assertTrue(Object.prototype.hasOwnProperty.call('', 'length'));
H A Dtranscendentals.js34 assertTrue(Math.sin(x) != Math.sin(y));
36 assertTrue(Math.cos(x) != Math.cos(y));
38 assertTrue(Math.tan(x) != Math.tan(y));
40 assertTrue(Math.log(x) != Math.log(y));
42 assertTrue(Math.asin(x) != Math.asin(y));
44 assertTrue(Math.acos(x) != Math.acos(y));
46 assertTrue(Math.atan(x) != Math.atan(y));
48 assertTrue(Math.exp(x) != Math.exp(y));
H A Din.js35 assertTrue('toString' in o, "toString");
39 assertTrue('x' in o);
41 assertTrue('toString' in o, "toString");
45 assertTrue('x' in o);
46 assertTrue('y' in o);
47 assertTrue('toString' in o, "toString");
58 assertTrue('toString' in a, "toString");
61 assertTrue(0 in a);
63 assertTrue('0' in a);
65 assertTrue('toStrin
[all...]
H A Dglobal-const-var-conflicts.js34 try { eval("var a"); } catch (e) { caught++; assertTrue(e instanceof TypeError); }
35 assertTrue(typeof a == 'undefined');
36 try { eval("var a = 1"); } catch (e) { caught++; assertTrue(e instanceof TypeError); }
37 assertTrue(typeof a == 'undefined');
40 try { eval("var b"); } catch (e) { caught++; assertTrue(e instanceof TypeError); }
42 try { eval("var b = 1"); } catch (e) { caught++; assertTrue(e instanceof TypeError); }
46 try { eval("const c"); } catch (e) { caught++; assertTrue(e instanceof TypeError); }
47 assertTrue(typeof c == 'undefined');
48 try { eval("const c = 1"); } catch (e) { caught++; assertTrue(e instanceof TypeError); }
52 try { eval("const d"); } catch (e) { caught++; assertTrue(
[all...]
H A Dfor-in-special-cases.js53 assertTrue(for_in_null());
58 assertTrue(for_in_undefined());
77 assertTrue(-1 != elements.indexOf("0"));
78 assertTrue(-1 != elements.indexOf("1"));
79 assertTrue(-1 != elements.indexOf("2"));
80 assertTrue(-1 != elements.indexOf("3"));
103 assertTrue(-1 != elements.indexOf("0"));
104 assertTrue(-1 != elements.indexOf("1"));
105 assertTrue(-1 != elements.indexOf("2"));
106 assertTrue(
[all...]
H A Ddelete-in-with.js32 with (tmp) { assertTrue(delete x); }

Completed in 550 milliseconds

1234567891011>>