/external/v8/test/mjsunit/regress/ |
H A D | regress-1980.js | 34 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 D | regress-1529.js | 31 Error.prepareStackTrace = function (error, stackTrace) {
|
H A D | 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) { 101 Error.prepareStackTrace = undefined; // Prevent recursion.
|
H A D | regress-function-constructor-receiver.js | 6 Error.prepareStackTrace = function (a,b) { return b; };
|
/external/llvm/bindings/ocaml/bitreader/ |
H A D | llvm_bitreader.ml | 10 exception Error of string Exception 12 let () = Callback.register_exception "Llvm_bitreader.Error" (Error "")
|
H A D | llvm_bitreader.mli | 15 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 D | llvm_irreader.ml | 11 exception Error of string Exception 13 let _ = Callback.register_exception "Llvm_irreader.Error" (Error "")
|
H A D | llvm_irreader.mli | 15 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 D | llvm_linker.ml | 10 exception Error of string Exception 12 let () = Callback.register_exception "Llvm_linker.Error" (Error "")
|
H A D | llvm_linker.mli | 15 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 D | error.py | 17 """Error object commonly used in linters.""" 23 class Error(object): class in inherits:object
|
/external/clang/test/CodeGenCXX/ |
H A D | throw-expression-cleanup.cpp | 7 struct Error { struct 8 Error(const X&) noexcept; 13 throw Error(X());
|
/external/v8/test/mjsunit/ |
H A D | stack-traces-custom-lazy.js | 39 Error.prepareStackTrace = function(e, frames) { 44 Error.prepareStackTrace = undefined; 47 testPrepareStackTrace(function() { throw new Error("foo"); });
|
H A D | 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(); 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 D | 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" + 32 Error.prototype.getFrames = function() { class
|
/external/valgrind/include/ |
H A D | pub_tool_errormgr.h | 37 /* 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 D | trycatch.cpp | 3 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 D | ubiviz | 18 def Error(message): function 58 Error('no input files')
|
/external/lldb/include/lldb/Core/ |
H A D | Error.h | 1 //===-- 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 D | FindBugs.cpp | 79 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 D | RegexTest.cpp | 87 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 D | ErrorManager.cs | 50 //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 D | xsDefs.cpp | 41 Error::Error (const char* message, const char* expr, const char* file, int line) function in class:xs::Error
|
/external/deqp/executor/ |
H A D | xeDefs.cpp | 41 Error::Error (const char* message, const char* expr, const char* file, int line) function in class:xe::Error
|
H A D | xeDefs.hpp | 34 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())
|