Searched defs:Error (Results 1 - 25 of 397) sorted by relevance

1234567891011>>

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1980.js34 Error.prototype.toString.call(invalid_this[i]);
37 assertEquals("Error.prototype.toString called on non-object", e.message);
33 Error.prototype.toString.call(invalid_this[i]); class
H A Dregress-1529.js31 Error.prepareStackTrace = function (error, stackTrace) {
H A Dregress-2564.js28 var o = [ function f0() { throw new Error(); },
33 Error.prepareStackTrace = function(error, frames) {
34 Error.prepareStackTrace = undefined; // Prevent recursion.
59 var o = [ function f0() { throw new Error(); },
64 Error.prepareStackTrace = function(error, frames) {
65 Error.prepareStackTrace = undefined; // Prevent recursion.
95 var o = [ function f0() { "use strict"; throw new Error(); },
100 Error.prepareStackTrace = function(error, frames) {
101 Error.prepareStackTrace = undefined; // Prevent recursion.
H A Dregress-function-constructor-receiver.js6 Error.prepareStackTrace = function (a,b) { return b; };
/external/llvm/bindings/ocaml/bitreader/
H A Dllvm_bitreader.ml11 exception Error of string Exception
14 let _ = register_exns (Error "")
H A Dllvm_bitreader.mli15 exception Error of string Exception
19 raises [Error msg] otherwise, where [msg] is a description of the error
26 raises [Error msg] otherwise, where [msg] is a description of the error
/external/llvm/bindings/ocaml/irreader/
H A Dllvm_irreader.ml11 exception Error of string Exception
14 let _ = register_exns (Error "")
H A Dllvm_irreader.mli15 exception Error of string Exception
19 raises [Error msg] otherwise, where [msg] is a description of the error
/external/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/goog/debug/
H A Derror.js16 * @fileoverview Provides a base class for custom Error objects such that the
19 * You should never need to throw goog.debug.Error(msg) directly, Error(msg) is
24 goog.provide('goog.debug.Error');
32 * @extends {Error}
34 goog.debug.Error = function(opt_msg) {
37 if (Error.captureStackTrace) {
38 Error.captureStackTrace(this, goog.debug.Error);
40 var stack = new Error()
[all...]
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
H A Derror.py17 """Error object commonly used in linters."""
23 class Error(object): class in inherits:object
/external/chromium_org/mojo/public/tools/bindings/pylib/mojom/
H A Derror.py5 class Error(Exception): class in inherits:Exception
21 s = "%s:%d: Error: %s" % (self.filename, self.lineno, self.message)
23 s = "%s: Error: %s" % (self.filename, self.message)
/external/chromium_org/native_client_sdk/src/tools/lib/
H A Delf.py10 class Error(Exception): class in inherits:Exception
11 '''Local Error class for this file.'''
37 raise Error("error parsing elf header: %s" % path)
42 raise Error('Not a valid NaCl executable: %s' % path)
51 raise Error('Unknown machine type: %s' % e_machine)
/external/chromium_org/remoting/webapp/
H A Derror.js13 remoting.Error = {
/external/chromium_org/third_party/closure_linter/closure_linter/common/
H A Derror.py17 """Error object commonly used in linters."""
23 class Error(object): class in inherits:object
/external/chromium_org/v8/test/mjsunit/
H A Dstack-traces-custom-lazy.js39 Error.prepareStackTrace = function(e, frames) {
44 Error.prepareStackTrace = undefined;
47 testPrepareStackTrace(function() { throw new Error("foo"); });
H A Derror-constructors.js30 // Check that message and name are not enumerable on Error objects.
31 var desc = Object.getOwnPropertyDescriptor(Error.prototype, 'name');
33 desc = Object.getOwnPropertyDescriptor(Error.prototype, 'message');
36 var e = new Error("foobar");
42 var e = new Error();
90 MyError.prototype = new Error;
91 var errors = [Error, RangeError, EvalError, URIError, MyError];
100 Error.prototype.toString = Object.prototype.toString;
101 assertEquals("[object Error]", Error
97 Error.prototype.toString = Object.prototype.toString; class
[all...]
H A Deval-stack-trace.js28 // Return the stack frames of an Error object.
30 Error.prepareStackTrace = function(error, frames) {
34 Error.prototype.getFrames = function() {
82 " throw new Error(3); \n" + // Line 2
187 " throw new Error(3); \n" +
32 Error.prototype.getFrames = function() { class
/external/clang/test/CodeGenCXX/
H A Dthrow-expression-cleanup.cpp7 struct Error { struct
8 Error(const X&) noexcept;
13 throw Error(X());
/external/llvm/bindings/ocaml/linker/
H A Dllvm_linker.mli15 exception Error of string Exception
24 (** [link_modules dst src mode] links [src] into [dst], raising [Error]
/external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/command/
H A Dsources.py6 from sdk_update_common import Error namespace
12 raise Error('Not adding %s, unable to load URL.\n %s' % (url, e))
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
H A Dmock_node.h15 typedef nacl_io::Error Error; typedef in class:MockNode
22 MOCK_METHOD1(Init, Error(int));
24 MOCK_METHOD0(FSync, Error());
25 MOCK_METHOD1(FTruncate, Error(off_t));
26 MOCK_METHOD4(GetDents, Error(size_t, struct dirent*, size_t, int*));
27 MOCK_METHOD1(GetStat, Error(struct stat*));
28 MOCK_METHOD2(Ioctl, Error(int, va_list));
29 MOCK_METHOD4(Read, Error(const HandleAttr&, void*, size_t, int*));
30 MOCK_METHOD4(Write, Error(cons
[all...]
/external/llvm/bindings/ocaml/executionengine/
H A Dllvm_executionengine.ml11 exception Error of string Exception
57 let _ = register_exns (Error "")
H A Dllvm_executionengine.mli15 exception Error of string Exception
90 interpreter. Raises [Error msg] if an error occurrs. The execution engine
96 module [m] if successful. Raises [Error msg] if an error occurrs. The
104 level [optlevel]. Raises [Error msg] if an error occurrs. The execution
118 [Error msg] if an error occurs. *)
/external/qemu/include/qapi/
H A Derror.h2 * QEMU Error Objects
23 typedef struct Error Error; typedef in typeref:struct:Error
30 void error_set(Error **err, ErrorClass err_class, const char *fmt, ...) GCC_FMT_ATTR(3, 4);
37 void error_set_errno(Error **err, int os_error, ErrorClass err_class, const char *fmt, ...) GCC_FMT_ATTR(4, 5);
45 void error_set_win32(Error **err, int win32_err, ErrorClass err_class, const char *fmt, ...) GCC_FMT_ATTR(4, 5);
63 void error_setg_file_open(Error **errp, int os_errno, const char *filename);
69 bool error_is_set(Error **err);
74 ErrorClass error_get_class(const Error *err);
79 Error *error_cop
[all...]
/external/valgrind/main/include/
H A Dpub_tool_errormgr.h37 /* Error records contain enough info to generate an error report. The idea
47 /* The tool-relevant parts of an Error are:
55 Error; typedef in typeref:struct:_Error
59 ExeContext* VG_(get_error_where) ( Error* err );
60 ErrorKind VG_(get_error_kind) ( Error* err );
61 Addr VG_(get_error_address) ( Error* err );
62 const HChar* VG_(get_error_string) ( Error* err );
63 void* VG_(get_error_extra) ( Error* err );

Completed in 7316 milliseconds

1234567891011>>