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

1 2 3 4 5 6 7 8

  /external/v8/test/mjsunit/regress/
regress-1980.js 34 Error.prototype.toString.call(invalid_this[i]);
regress-1529.js 31 Error.prepareStackTrace = function (error, stackTrace) {
  /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/executionengine/
llvm_executionengine.ml 11 exception Error of string
57 let _ = register_exns (Error "")
llvm_executionengine.mli 15 exception Error of string
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/llvm/tools/bugpoint/
FindBugs.cpp 30 /// recreate the failure. This returns true if a compiler error is found.
78 std::string Error;
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())
    [all...]
  /external/valgrind/main/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) ( 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 )
    [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...]
  /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/chromium/net/base/
net_errors.h 13 // Error domain of the net module's error codes.
16 // Error values are negative.
17 enum Error {
18 // No error.
25 // The value of the first certificate error code.
29 // Returns a textual representation of the error code for logging purposes.
30 const char* ErrorToString(int error);
32 // Returns true if |error| is a certificate error code
    [all...]
  /external/clang/utils/analyzer/
ubiviz 18 def Error(message):
58 Error('no input files')
  /external/llvm/lib/Support/
PluginLoader.cpp 28 std::string Error;
29 if (sys::DynamicLibrary::LoadLibraryPermanently(Filename.c_str(), &Error)) {
30 errs() << "Error opening '" << Filename << "': " << Error
  /external/llvm/lib/TableGen/
Main.cpp 24 #include "llvm/TableGen/Error.h"
75 std::string Error;
76 tool_output_file Out(OutputFilename.c_str(), Error);
77 if (!Error.empty()) {
78 errs() << argv0 << ": error opening " << OutputFilename
79 << ":" << Error << "\n";
87 tool_output_file DepOut(DependFilename.c_str(), Error);
88 if (!Error.empty()) {
89 errs() << argv0 << ": error opening " << DependFilename
90 << ":" << Error << "\n"
    [all...]
  /external/llvm/unittests/Support/
RegexTest.cpp 66 std::string Error;
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/
qscriptsyntaxcheckresult.h 30 Error,
  /frameworks/av/media/libeffects/lvm/lib/Bundle/src/
LVM_API_Specials.c 45 /* LVM_WRONGAUDIOTIME Failure due to audio time error */
143 LVM_ReturnStatus_en Error;
146 Error = LVM_SetControlParameters(hInstance,pParams);
148 return Error;
  /external/v8/test/mjsunit/
error-constructors.js 28 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__);
34 // Check that error construction does not call setters for the
35 // properties on error objects in prototypes.
51 // Check that the name property on error prototypes is read-only and
53 // name property with a getter can leaks error objects from different
55 // disallow changes to the name property on error objects
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/opc_throw/d/
T_opc_throw_8.java 21 public void run() throws Error {
22 throw new Error();
  /external/chromium/chrome/browser/notifications/
notification_object_proxy.cc 25 void NotificationObjectProxy::Error() {
  /external/clang/lib/FrontendTool/
ExecuteCompilerInvocation.cpp 150 std::string Error;
151 if (llvm::sys::DynamicLibrary::LoadLibraryPermanently(Path.c_str(), &Error))
153 << Path << Error;
  /external/clang/tools/libclang/
CIndexer.cpp 96 std::string Error;
106 if (P.makeUnique(false, &Error))
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
codegen.ml 7 exception Error of string
19 | Not_found -> raise (Error "unknown variable name"))
32 | _ -> raise (Error "invalid binary operator")
39 | None -> raise (Error "unknown function referenced")
43 (* If argument mismatch error. *)
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/
codegen.ml 7 exception Error of string
19 | Not_found -> raise (Error "unknown variable name"))
32 | _ -> raise (Error "invalid binary operator")
39 | None -> raise (Error "unknown function referenced")
43 (* If argument mismatch error. *)
45 raise (Error "incorrect # arguments passed");
63 raise (Error "redefinition of function");
67 raise (Error "redefinition of function with different # args");
  /external/llvm/lib/ExecutionEngine/
TargetSelect.cpp 70 std::string Error;
71 TheTarget = TargetRegistry::lookupTarget(TheTriple.getTriple(), Error);
74 *ErrorStr = Error;

Completed in 441 milliseconds

1 2 3 4 5 6 7 8