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

1 2 3 4 5 6 7 8 91011>>

  /external/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 10 exception Error of string
12 let () = Callback.register_exception "Llvm_bitreader.Error" (Error "")
llvm_bitreader.mli 15 exception Error of string
19 raises [Error msg] otherwise, where [msg] is a description of the error
25 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
13 let _ = Callback.register_exception "Llvm_irreader.Error" (Error "")
llvm_irreader.mli 15 exception Error of string
19 raises [Error msg] otherwise, where [msg] is a description of the error
  /external/llvm/bindings/ocaml/linker/
llvm_linker.ml 10 exception Error of string
12 let () = Callback.register_exception "Llvm_linker.Error" (Error "")
llvm_linker.mli 15 exception Error of string
17 (** [link_modules dst src mode] links [src] into [dst], raising [Error]
  /cts/apps/CameraITS/pymodules/its/
error.py 17 class Error(Exception):
  /external/chromium-trace/trace-viewer/tracing/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/clang/test/CodeGenCXX/
throw-expression-cleanup.cpp 7 struct Error {
8 Error(const X&) noexcept;
13 throw Error(X());
  /external/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...]
eval-stack-trace.js 28 // 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" +
  /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/llvm/tools/bugpoint/
FindBugs.cpp 31 /// recreate the failure. This returns true if a compiler error is found.
79 std::string Error;
80 compileProgram(Program, &Error);
81 if (!Error.empty()) {
83 outs() << Error;
93 bool Diff = diffProgram(Program, Filename, "", false, &Error);
94 if (Error.empty() && Diff) {
96 debugMiscompilation(&Error);
97 if (Error.empty())
100 if (!Error.empty())
    [all...]
  /external/valgrind/include/
pub_tool_errormgr.h 37 /* Error records contain enough info to generate an error report. The idea
39 of errors, and we don't want to spew out a fresh error message for each
47 /* The tool-relevant parts of an Error are:
48 kind: what kind of error; must be in the range (0..)
55 Error;
59 ExeContext* VG_(get_error_where) ( const Error* err );
60 ErrorKind VG_(get_error_kind) ( const Error* err );
61 Addr VG_(get_error_address) ( const Error* err );
62 const HChar* VG_(get_error_string) ( const Error* err )
    [all...]
  /libcore/luni/src/main/java/java/lang/
Error.java 22 * {@code Error} is the superclass of all classes that represent unrecoverable
30 public class Error extends Throwable {
35 * Constructs a new {@code Error} that includes the current stack trace.
37 public Error() {
41 * Constructs a new {@code Error} with the current stack trace and the
45 * the detail message for this error.
47 public Error(String detailMessage) {
52 * Constructs a new {@code Error} with the current stack trace, the
56 * the detail message for this error.
58 * the cause of this error
    [all...]
  /ndk/sources/android/crazy_linker/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...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
ErrorManager.cs 43 /// <summary>A minimal ANTLR3 error [message] manager with the ST bits</summary>
46 public static void InternalError(object error, Exception e)
49 string msg = "Exception " + e + "@" + location + ": " + error;
50 //Error(MSG_INTERNAL_ERROR, msg);
51 Error(msg);
54 public static void InternalError(object error)
57 string msg = location + ": " + error;
58 //Error(MSG_INTERNAL_ERROR, msg);
59 Error(msg);
84 public static void Error(/*int msgID,*/ object arg
    [all...]
  /external/clang/test/CoverageMapping/
trycatch.cpp 3 class Error {
15 throw Error(); // CHECK-NEXT: File 0, [[@LINE]]:5 -> [[@LINE]]:18 = #1
26 } catch(const Error &e) { // CHECK-NEXT: File 0, [[@LINE]]:27 -> [[@LINE+2]]:4 = #2
  /external/clang/utils/analyzer/
ubiviz 18 def Error(message):
58 Error('no input files')
  /external/deqp/execserver/
xsDefs.cpp 41 Error::Error (const char* message, const char* expr, const char* file, int line)

Completed in 571 milliseconds

1 2 3 4 5 6 7 8 91011>>