Lines Matching refs:assertThrows

73       assertThrows(doGet, RangeError);
88 assertThrows(doSet, RangeError);
400 assertThrows(function() { f(); }, TypeError);
402 assertThrows(function() { f.call({}, 0, 0); }, TypeError);
403 assertThrows(function() { f.call(a); }, TypeError);
405 assertThrows(function() { f.call(a, 1); }, TypeError);
433 assertThrows(function() { a.getUint8(); }, TypeError);
434 assertThrows(function() { a.getInt8(); }, TypeError);
435 assertThrows(function() { a.getUint16(); }, TypeError);
436 assertThrows(function() { a.getInt16(); }, TypeError);
437 assertThrows(function() { a.getUint32(); }, TypeError);
438 assertThrows(function() { a.getInt32(); }, TypeError);
439 assertThrows(function() { a.getFloat32(); }, TypeError);
440 assertThrows(function() { a.getFloat64(); }, TypeError);
442 assertThrows(function() { a.setUint8(); }, TypeError);
443 assertThrows(function() { a.setInt8(); }, TypeError);
444 assertThrows(function() { a.setUint16(); }, TypeError);
445 assertThrows(function() { a.setInt16(); }, TypeError);
446 assertThrows(function() { a.setUint32(); }, TypeError);
447 assertThrows(function() { a.setInt32(); }, TypeError);
448 assertThrows(function() { a.setFloat32(); }, TypeError);
449 assertThrows(function() { a.setFloat64(); }, TypeError);
451 assertThrows(function() { a.setUint8(1) }, TypeError);
452 assertThrows(function() { a.setInt8(1) }, TypeError);
453 assertThrows(function() { a.setUint16(1) }, TypeError);
454 assertThrows(function() { a.setInt16(1) }, TypeError);
455 assertThrows(function() { a.setUint32(1) }, TypeError);
456 assertThrows(function() { a.setInt32(1) }, TypeError);
457 assertThrows(function() { a.setFloat32(1) }, TypeError);
458 assertThrows(function() { a.setFloat64(1) }, TypeError);