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

12345678

/external/v8/test/mjsunit/regress/
H A Dregress-1980.js34 Error.prototype.toString.call(invalid_this[i]);
33 Error.prototype.toString.call(invalid_this[i]); class
H A Dregress-1529.js31 Error.prepareStackTrace = function (error, stackTrace) {
/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/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/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/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
91 interpreter. Raises [Error msg] if an error occurrs. The execution engine
97 module [m] if successful. Raises [Error msg] if an error occurrs. The
105 level [optlevel]. Raises [Error msg] if an error occurrs. The execution
119 [Error msg] if an error occurs. *)
/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 Char* VG_(get_error_string) ( Error* err );
63 void* VG_(get_error_extra) ( Error* err );
/external/clang/utils/analyzer/
H A Dubiviz18 def Error(message): function
58 Error('no input files')
/external/llvm/tools/bugpoint/
H A DFindBugs.cpp78 std::string Error; local
79 compileProgram(Program, &Error);
80 if (!Error.empty()) {
82 outs() << Error;
92 bool Diff = diffProgram(Program, Filename, "", false, &Error);
93 if (Error.empty() && Diff) {
95 debugMiscompilation(&Error);
96 if (Error.empty())
99 if (!Error.empty()) {
100 errs() << Error;
[all...]
/external/llvm/unittests/Support/
H A DRegexTest.cpp66 std::string Error; local
71 EXPECT_EQ("a\\ber", Regex("[0-9]+").sub("\\\\", "a1234ber", &Error));
72 EXPECT_EQ(Error, "");
73 EXPECT_EQ("a\nber", Regex("[0-9]+").sub("\\n", "a1234ber", &Error));
74 EXPECT_EQ(Error, "");
75 EXPECT_EQ("a\tber", Regex("[0-9]+").sub("\\t", "a1234ber", &Error));
76 EXPECT_EQ(Error, "");
77 EXPECT_EQ("ajber", Regex("[0-9]+").sub("\\j", "a1234ber", &Error));
78 EXPECT_EQ(Error, "");
80 EXPECT_EQ("aber", Regex("[0-9]+").sub("\\", "a1234ber", &Error));
[all...]
/external/webkit/Source/JavaScriptCore/qt/api/
H A Dqscriptsyntaxcheckresult.h30 Error, enumerator in enum:QScriptSyntaxCheckResult::State
/external/v8/test/mjsunit/
H A Derror-constructors.js28 var e = new Error();
30 Error.prototype.toString = Object.prototype.toString;
31 assertEquals("[object Error]", Error.prototype.toString());
32 assertEquals(Object.prototype, Error.prototype.__proto__);
62 // Check that message and name are not enumerable on Error objects.
63 var desc = Object.getOwnPropertyDescriptor(Error.prototype, 'name');
65 desc = Object.getOwnPropertyDescriptor(Error.prototype, 'message');
68 var e = new Error("foobar");
29 Error.prototype.toString = Object.prototype.toString; class
/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/chromium/net/base/
H A Dnet_errors.h13 // Error domain of the net module's error codes.
16 // Error values are negative.
17 enum Error { enum in namespace:net
39 // Map system error code to Error.
40 Error MapSystemError(int os_error);
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
H A Dcodegen.ml7 exception Error of string Exception
19 | Not_found -> raise (Error "unknown variable name"))
32 | _ -> raise (Error "invalid binary operator")
39 | None -> raise (Error "unknown function referenced")
45 raise (Error "incorrect # arguments passed");
63 raise (Error "redefinition of function");
67 raise (Error "redefinition of function with different # args");
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dcodegen.ml7 exception Error of string Exception
19 | Not_found -> raise (Error "unknown variable name"))
32 | _ -> raise (Error "invalid binary operator")
39 | None -> raise (Error "unknown function referenced")
45 raise (Error "incorrect # arguments passed");
63 raise (Error "redefinition of function");
67 raise (Error "redefinition of function with different # args");
/external/llvm/lib/Support/
H A DPluginLoader.cpp28 std::string Error; local
29 if (sys::DynamicLibrary::LoadLibraryPermanently(Filename.c_str(), &Error)) {
30 errs() << "Error opening '" << Filename << "': " << Error local
/external/llvm/lib/TableGen/
H A DMain.cpp24 #include "llvm/TableGen/Error.h"
78 std::string Error;
79 tool_output_file Out(OutputFilename.c_str(), Error);
80 if (!Error.empty()) {
82 << ":" << Error << "\n"; local
90 tool_output_file DepOut(DependFilename.c_str(), Error);
91 if (!Error.empty()) {
93 << ":" << Error << "\n"; local
114 } catch (const TGError &Error) {
115 PrintError(Error);
[all...]
/external/skia/src/utils/
H A DSkBase64.h17 enum Error { enum in struct:SkBase64
24 Error decode(const char* src, size_t length);
37 Error decode(const void* srcPtr, size_t length, bool writeDestination);
/external/webkit/Source/WebKit/chromium/public/
H A DWebTextCheckingResult.h40 enum Error { enum in struct:WebKit::WebTextCheckingResult
45 explicit WebTextCheckingResult(Error e = ErrorSpelling, int p = 0, int l = 0)
52 Error error;
/external/v8/test/es5conform/
H A Dharness-adapt.js40 Error.prototype.__defineGetter__('description', function () {
36 Error.prototype.__defineGetter__('description', function () { class
/external/chromium/chrome/browser/notifications/
H A Dnotification_object_proxy.cc25 void NotificationObjectProxy::Error() { function in class:NotificationObjectProxy
/external/chromium-trace/trace-viewer/third_party/python_gflags/
H A Dgflags_validators.py41 class Error(Exception): class in inherits:Exception
77 Error: if constraint is not satisfied.
81 raise Error(self.message)
120 raise Error.
161 raise Error.

Completed in 496 milliseconds

12345678