HomeSort by relevance Sort by last modified time
    Searched defs:Error (Results 1 - 25 of 500) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/v8/test/mjsunit/regress/
regress-1980.js 34 Error.prototype.toString.call(invalid_this[i]);
37 assertEquals("Error.prototype.toString called on non-object", e.message);
regress-1529.js 31 Error.prepareStackTrace = function (error, stackTrace) {
regress-2564.js 28 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)
    [all...]
regress-function-constructor-receiver.js 6 Error.prepareStackTrace = function (a,b) { return b; };
  /external/llvm/bindings/ocaml/bitreader/
llvm_bitreader.ml 11 exception Error of string
14 let _ = register_exns (Error "")
llvm_bitreader.mli 15 exception Error of string
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/
llvm_irreader.ml 11 exception Error of string
14 let _ = register_exns (Error "")
llvm_irreader.mli 15 exception Error of string
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/
error.js 16 * @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');
29 * Base class for custom error objects.
30 * @param {*=} opt_msg The message associated with the error.
32 * @extends {Error}
34 goog.debug.Error = function(opt_msg) {
37 if (Error.captureStackTrace) {
38 Error.captureStackTrace(this, goog.debug.Error)
    [all...]
  /cts/apps/CameraITS/pymodules/its/
error.py 17 class Error(Exception):
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
error.py 17 """Error object commonly used in linters."""
23 class Error(object):
24 """Object representing a style error."""
27 """Initialize the error object.
30 code: The numeric error code.
31 message: The error message string.
32 token: The tokens.Token where the error occurred.
33 position: The position of the error within the token.
51 """Compare two error objects, by source code order.
54 a: First error object
    [all...]
  /external/chromium_org/mojo/public/tools/bindings/pylib/mojom/
error.py 5 class Error(Exception):
9 """|filename| is the (primary) file which caused the error, |message| is the
10 error message, |lineno| is the 1-based line number (or |None| if not
12 to the final error message."""
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/
elf.py 10 class Error(Exception):
11 '''Local Error class for this file.'''
36 except struct.error:
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/
error.js 11 * @enum {string} All error messages from messages.json
13 remoting.Error = {
17 // not normally cause the error text to be shown to the user, so the
  /external/chromium_org/third_party/angle/src/libGLESv2/
Error.cpp 7 // Error.cpp: Implements the gl::Error class which encapsulates an OpenGL error
8 // and optional error message.
10 #include "libGLESv2/Error.h"
19 Error::Error(GLenum errorCode)
25 Error::Error(GLenum errorCode, const char *msg, ...)
35 Error::Error(const Error &other
    [all...]
  /external/chromium_org/third_party/closure_linter/closure_linter/common/
error.py 17 """Error object commonly used in linters."""
23 class Error(object):
24 """Object representing a style error."""
27 """Initialize the error object.
30 code: The numeric error code.
31 message: The error message string.
32 token: The tokens.Token where the error occurred.
33 position: The position of the error within the token.
51 """Compare two error objects, by source code order.
54 a: First error object
    [all...]
  /external/chromium_org/v8/test/mjsunit/
stack-traces-custom-lazy.js 29 var error = undefined;
34 error = e;
38 // function right before calling error.stack should be fine.
39 Error.prepareStackTrace = function(e, frames) {
43 assertEquals("bar", error.stack);
44 Error.prepareStackTrace = undefined;
47 testPrepareStackTrace(function() { throw new Error("foo"); });
error-constructors.js 30 // 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();
51 // Check that error construction does not call setters for the
52 // properties on error objects in prototypes.
70 // through a getter can leak error objects from different
90 MyError.prototype = new Error;
91 var errors = [Error, RangeError, EvalError, URIError, MyError]
    [all...]
  /external/clang/test/CodeGenCXX/
throw-expression-cleanup.cpp 7 struct Error {
8 Error(const X&) noexcept;
13 throw Error(X());
  /external/llvm/bindings/ocaml/linker/
llvm_linker.mli 15 exception Error of string
24 (** [link_modules dst src mode] links [src] into [dst], raising [Error]
  /external/chromium_org/extensions/browser/value_store/
value_store.cc 9 // Implementation of Error.
11 ValueStore::Error::Error(ErrorCode code,
16 ValueStore::Error::~Error() {}
25 ValueStore::ReadResultType::ReadResultType(scoped_ptr<Error> error)
26 : error_(error.Pass()) {
40 ValueStore::WriteResultType::WriteResultType(scoped_ptr<Error> error)
    [all...]
  /external/deqp/framework/opengl/
gluDefs.cpp 35 Error::Error (int error, const char* message, const char* expr, const char* file, int line)
37 , m_error (error)
41 Error::Error (int error, const std::string& message)
43 , m_error (error)
47 Error::~Error (void) throw(
    [all...]
  /external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/command/
sources.py 6 from sdk_update_common import Error
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/
mock_node.h 15 typedef nacl_io::Error Error;
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(const HandleAttr&, const void*, size_t, int*))
    [all...]
  /external/chromium_org/third_party/android_crazy_linker/src/src/
crazy_linker_error.h 10 // A class used to hold a fixed-size buffer to hold error messages
14 // Error error;
15 // error = "Unimplemented feature";
16 // error->Set("Unimplemented feature");
17 // error->Format("Feature %s is not implemented", feature_name);
18 // error->Append(strerror(errno));
19 // error->AppendFormat("Error: %s", strerror(errno));
21 class Error {
    [all...]

Completed in 494 milliseconds

1 2 3 4 5 6 7 8 91011>>