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

1 2 3 4 5

  /external/webkit/Tools/Scripts/webkitpy/tool/steps/
promptforbugortitle.py 42 except ValueError, TypeError:
  /external/v8/test/mjsunit/
strict-mode.js 487 assertThrows(function() { delete_property(object); }, TypeError);
489 assertThrows(function() { delete_element(object, "1"); }, TypeError);
490 assertThrows(function() { delete_element(object, 1); }, TypeError);
492 assertThrows(function() { delete_element(object, "7"); }, TypeError);
493 assertThrows(function() { delete_element(object, 7); }, TypeError);
495 assertThrows(function() { delete_element(object, "3.14"); }, TypeError);
496 assertThrows(function() { delete_element(object, 3.14); }, TypeError);
770 TypeError);
781 TypeError);
794 assertThrows(function() { strict(frozen); }, TypeError);
    [all...]
global-const-var-conflicts.js 34 try { eval("var a"); } catch (e) { caught++; assertTrue(e instanceof TypeError); }
36 try { eval("var a = 1"); } catch (e) { caught++; assertTrue(e instanceof TypeError); }
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); }
48 try { eval("const c = 1"); } catch (e) { caught++; assertTrue(e instanceof TypeError); }
52 try { eval("const d"); } catch (e) { caught++; assertTrue(e instanceof TypeError); }
54 try { eval("const d = 1"); } catch (e) { caught++; assertTrue(e instanceof TypeError); }
array-reduce.js 419 assertTrue(e instanceof TypeError,
420 "reduce callback not a function not throwing TypeError");
422 "reduce non function TypeError type");
431 assertTrue(e instanceof TypeError,
432 "reduceRight callback not a function not throwing TypeError");
434 "reduceRight non function TypeError type");
443 assertTrue(e instanceof TypeError,
444 "reduce no initial value not throwing TypeError");
446 "reduce no initial TypeError type");
455 assertTrue(e instanceof TypeError,
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/share/gdb/python/gdb/
types.py 54 TypeError: The type is not a struct or union.
60 raise TypeError("not a struct or union")
82 TypeError: The type is not an enum.
86 raise TypeError("not an enum type")
printing.py 91 TypeError: A problem with the type of the printer.
106 raise TypeError("printer missing attribute: name")
108 raise TypeError("printer missing attribute: enabled")
110 raise TypeError("printer missing attribute: __call__")
123 raise TypeError("printer name is not a string")
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/share/gdb/python/gdb/
types.py 54 TypeError: The type is not a struct or union.
60 raise TypeError("not a struct or union")
82 TypeError: The type is not an enum.
86 raise TypeError("not an enum type")
printing.py 91 TypeError: A problem with the type of the printer.
106 raise TypeError("printer missing attribute: name")
108 raise TypeError("printer missing attribute: enabled")
110 raise TypeError("printer missing attribute: __call__")
123 raise TypeError("printer name is not a string")
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/share/gdb/python/gdb/
types.py 54 TypeError: The type is not a struct or union.
60 raise TypeError("not a struct or union")
82 TypeError: The type is not an enum.
86 raise TypeError("not an enum type")
printing.py 91 TypeError: A problem with the type of the printer.
106 raise TypeError("printer missing attribute: name")
108 raise TypeError("printer missing attribute: enabled")
110 raise TypeError("printer missing attribute: __call__")
123 raise TypeError("printer name is not a string")
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/share/gdb/python/gdb/
types.py 54 TypeError: The type is not a struct or union.
60 raise TypeError("not a struct or union")
82 TypeError: The type is not an enum.
86 raise TypeError("not an enum type")
printing.py 91 TypeError: A problem with the type of the printer.
106 raise TypeError("printer missing attribute: name")
108 raise TypeError("printer missing attribute: enabled")
110 raise TypeError("printer missing attribute: __call__")
123 raise TypeError("printer name is not a string")
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Statements/
regress-121744.js 69 var TEST_PASSED = 'TypeError';
70 var TEST_FAILED = 'Generated an error, but NOT a TypeError!';
89 * OK, this should generate a TypeError
100 if (e instanceof TypeError)
113 * OK, this should generate a TypeError
124 if (e instanceof TypeError)
151 if(e instanceof TypeError)
176 if(e instanceof TypeError)
  /external/webkit/Tools/QueueStatusServer/handlers/
updatebase.py 39 except ValueError, TypeError:
  /external/protobuf/python/google/protobuf/internal/
wire_format_test.py 64 self.assertRaises(TypeError, wire_format.UnpackTag, None)
65 self.assertRaises(TypeError, wire_format.UnpackTag, 'abc')
66 self.assertRaises(TypeError, wire_format.UnpackTag, 0.0)
67 self.assertRaises(TypeError, wire_format.UnpackTag, object())
81 self.assertRaises(TypeError, Z, None)
82 self.assertRaises(TypeError, Z, 'abcd')
83 self.assertRaises(TypeError, Z, 0.0)
84 self.assertRaises(TypeError, Z, object())
98 self.assertRaises(TypeError, Z, None)
99 self.assertRaises(TypeError, Z, 'abcd'
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8XMLHttpRequestConstructor.cpp 48 return throwError("DOM object constructor cannot be called as a function.", V8Proxy::TypeError);
V8EventSourceConstructor.cpp 51 return throwError("DOM object constructor cannot be called as a function.", V8Proxy::TypeError);
  /external/linux-tools-perf/scripts/python/
sctop.py 53 except TypeError:
72 except TypeError:
  /external/v8/test/mjsunit/regress/
regress-734862.js 33 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);
regress-667061.js 33 assertTrue(o instanceof TypeError);
48 assertTrue(o instanceof TypeError);
68 assertTrue(o instanceof TypeError);
87 assertTrue(o instanceof TypeError);
  /external/skia/tools/tests/
bench_pictures_cfg_test.py 16 """ Raise a TypeError if obj is not a string. """
18 raise TypeError('%s is not a string!' % str(obj))
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Object/
8.6.2.6-001.js 38 * SUMMARY: Test for TypeError on invalid default string value of object
45 var summary = "Test for TypeError on invalid default string value of object";
46 var TEST_PASSED = 'TypeError';
47 var TEST_FAILED = 'Generated an error, but NOT a TypeError!';
61 * This should generate a TypeError. See ECMA reference
71 if (e instanceof TypeError)
  /external/webkit/Source/WebKit2/Shared/
APIObject.h 46 TypeError,
WebError.h 39 static const Type APIType = TypeError;
  /external/webkit/LayoutTests/fast/js/resources/
js-constructors-use-correct-global.js 4 var constructors = ["Object", "Function", "Array", "Number", "String", "Boolean", "RegExp", "Date", "Error", "RangeError", "ReferenceError", "SyntaxError", "TypeError", "URIError", "Image"];

Completed in 682 milliseconds

1 2 3 4 5