HomeSort by relevance Sort by last modified time
    Searched refs:TypeError (Results 51 - 75 of 112) sorted by null

1 23 4 5

  /external/v8/test/mjsunit/
mirror-error.js 93 testErrorMirror(new TypeError('TypeError'));
object-toprimitive.js 83 assertThrows("Number(ot)", TypeError);
96 assertThrows("String(ot)", TypeError);
call-non-function-call.js 36 assertTrue(e instanceof TypeError);
unusual-constructor.js 32 assertInstanceof(e, TypeError);
instanceof.js 78 assertTrue(e instanceof TypeError);
arguments-apply.js 106 assertThrows(CallNonFunction, TypeError);
json.js 37 assertThrows(function () { n2.toJSON(); }, TypeError);
70 assertThrows("d4.toJSON()", TypeError); // ToPrimitive throws.
84 assertThrows("d7.toJSON()", TypeError);
263 assertThrows(function () { JSON.stringify(circular); }, TypeError);
object-define-properties.js 69 }, TypeError);
  /system/media/camera/docs/
metadata_helpers.py 78 raise TypeError("expected node to be a Section or InnerNamespace")
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
checkerbase.py 82 TypeError: If not overridden.
84 raise TypeError('Abstract method CheckToken not implemented')
94 TypeError: If not overridden.
96 raise TypeError('Abstract method Finalize not implemented')
  /external/v8/test/mjsunit/regress/
regress-1110164.js 44 assertTrue(e instanceof TypeError);
regress-1182832.js 36 assertTrue(e instanceof TypeError);
regress-1213575.js 37 assertTrue(e instanceof TypeError);
regress-1130.js 38 assertTrue(e instanceof TypeError);
regress-1217.js 50 assertThrows(function(){ proto.compile("something"); }, TypeError);
regress-crbug-3184.js 73 if (typeof fun != "function") throw new TypeError();
  /development/testrunner/
am_instrument_parser.py 102 except TypeError:
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Object/
regress-96284-001.js 83 obj1 = TypeError(cnTestString);
regress-96284-002.js 83 obj1 = TypeError(cnTestString);
  /external/v8/test/mjsunit/compiler/
pic.js 72 assertThrows("CallF(0)", TypeError);
  /external/webkit/Tools/Scripts/webkitpy/thirdparty/simplejson/
encoder.py 107 implementation (to raise ``TypeError``).
118 If skipkeys is False, then it is a TypeError to attempt
256 raise TypeError("key %r is not a string" % (key,))
318 (to raise a ``TypeError``).
326 except TypeError:
332 raise TypeError("%r is not JSON serializable" % (o,))
  /external/protobuf/python/
mox.py 439 TypeError if the underlying class does not support item assignment.
448 raise TypeError('object does not support item assignment')
470 TypeError if the underlying class is not subscriptable.
479 raise TypeError('unsubscriptable object')
496 raise TypeError('Not callable')
820 except TypeError:
858 except TypeError:
1034 except TypeError:
    [all...]
  /external/v8/src/
ic.cc 280 Failure* IC::TypeError(const char* type,
504 // of its properties; throw a TypeError in that case.
506 return TypeError("non_object_property_call", object, name);
533 : TypeError("undefined_method", object, name);
552 : TypeError("undefined_method", object, name);
580 return TypeError("property_not_function", object, name);
765 return TypeError("non_object_property_call", object, key);
798 return TypeError("property_not_function", object, key);
806 // of its properties; throw a TypeError in that case.
808 return TypeError("non_object_property_load", object, name)
    [all...]
  /external/webkit/Source/WebKit/qt/tests/qwebframe/
tst_qwebframe.cpp     [all...]
  /external/protobuf/python/google/protobuf/internal/
reflection_test.py 506 self.assertRaises(TypeError, setattr, proto, 'optional_int32', 1.1)
507 self.assertRaises(TypeError, setattr, proto, 'optional_int32', 'foo')
508 self.assertRaises(TypeError, setattr, proto, 'optional_string', 10)
509 self.assertRaises(TypeError, setattr, proto, 'optional_bytes', 10)
527 self.assertRaises(TypeError, proto.repeated_int32.append, 1.1)
528 self.assertRaises(TypeError, proto.repeated_int32.append, 'foo')
529 self.assertRaises(TypeError, proto.repeated_string, 10)
530 self.assertRaises(TypeError, proto.repeated_bytes, 10)
535 self.assertRaises(TypeError, proto.repeated_int32.__setitem__, 0, 'abc')
584 self.assertRaises(TypeError, proto.repeated_int32.__getitem__, 'foo'
    [all...]

Completed in 728 milliseconds

1 23 4 5