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

12345678910

/external/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.ml10 exception Error of string Exception
12 let () = Callback.register_exception "Llvm_bitreader.Error" (Error "")
H A Dllvm_bitreader.mli15 exception Error of string Exception
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/
H A Dllvm_irreader.ml11 exception Error of string Exception
13 let _ = Callback.register_exception "Llvm_irreader.Error" (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/llvm/bindings/ocaml/linker/
H A Dllvm_linker.ml10 exception Error of string Exception
12 let () = Callback.register_exception "Llvm_linker.Error" (Error "")
H A Dllvm_linker.mli15 exception Error of string Exception
17 (** [link_modules dst src mode] links [src] into [dst], raising [Error]
/external/chromium-trace/trace-viewer/tracing/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/clang/test/CodeGenCXX/
H A Dthrow-expression-cleanup.cpp7 struct Error { struct
8 Error(const X&) noexcept;
13 throw Error(X());
/external/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/valgrind/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) ( 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 );
63 void* VG_(get_error_extra) ( const Error* err );
/external/clang/test/CoverageMapping/
H A Dtrycatch.cpp3 class Error { class
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/
H A Dubiviz18 def Error(message): function
58 Error('no input files')
/external/lldb/include/lldb/Core/
H A DError.h1 //===-- Error.h -------------------------------------------------*- C++ -*-===//
28 /// @class Error Error.h "lldb/Core/Error.h"
33 /// of type Error::ValueType. This value should be large enough to hold
47 class Error class in namespace:lldb_private
67 Error ();
70 Error (ValueType err, lldb::ErrorType type = lldb::eErrorTypeGeneric);
73 Error (const char* err_str);
75 Error (cons
[all...]
/external/llvm/tools/bugpoint/
H A DFindBugs.cpp79 std::string Error; local
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()) {
101 errs() << Error;
[all...]
/external/llvm/unittests/Support/
H A DRegexTest.cpp87 std::string Error; local
92 EXPECT_EQ("a\\ber", Regex("[0-9]+").sub("\\\\", "a1234ber", &Error));
93 EXPECT_EQ("", Error);
94 EXPECT_EQ("a\nber", Regex("[0-9]+").sub("\\n", "a1234ber", &Error));
95 EXPECT_EQ("", Error);
96 EXPECT_EQ("a\tber", Regex("[0-9]+").sub("\\t", "a1234ber", &Error));
97 EXPECT_EQ("", Error);
98 EXPECT_EQ("ajber", Regex("[0-9]+").sub("\\j", "a1234ber", &Error));
99 EXPECT_EQ("", Error);
101 EXPECT_EQ("aber", Regex("[0-9]+").sub("\\", "a1234ber", &Error));
136 std::string Error; local
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
H A DErrorManager.cs50 //Error(MSG_INTERNAL_ERROR, msg);
51 Error(msg);
58 //Error(MSG_INTERNAL_ERROR, msg);
59 Error(msg);
84 public static void Error(/*int msgID,*/ object arg) method in class:Antlr.Runtime.Misc.ErrorManager
/external/deqp/execserver/
H A DxsDefs.cpp41 Error::Error (const char* message, const char* expr, const char* file, int line) function in class:xs::Error
/external/deqp/executor/
H A DxeDefs.cpp41 Error::Error (const char* message, const char* expr, const char* file, int line) function in class:xe::Error
H A DxeDefs.hpp34 class Error : public std::runtime_error class in namespace:xe
37 Error (const std::string& message) : std::runtime_error(message) {} function in class:xe::Error
38 Error (const char* message, const char* expr, const char* file, int line);
41 class ParseError : public Error
44 ParseError (const std::string& message) : Error(message) {}
49 #define XE_FAIL(MSG) throw xe::Error(MSG, "", __FILE__, __LINE__)
50 #define XE_CHECK(X) do { if ((!deGetFalse() && (X)) ? DE_FALSE : DE_TRUE) throw xe::Error(NULL, #X, __FILE__, __LINE__); } while(deGetFalse())
51 #define XE_CHECK_MSG(X, MSG) do { if ((!deGetFalse() && (X)) ? DE_FALSE : DE_TRUE) throw xe::Error(MSG, #X, __FILE__, __LINE__); } while(deGetFalse())

Completed in 370 milliseconds

12345678910