| /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 90 interpreter. Raises [Error msg] if an error occurrs. The execution engine 96 module [m] if successful. Raises [Error msg] if an error occurrs. The 104 level [optlevel]. Raises [Error msg] if an error occurrs. The execution 118 [Error msg] if an error occurs. *)
|
| /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/llvm/unittests/Support/ |
| SpecialCaseListTest.cpp | 20 SpecialCaseList *makeSpecialCaseList(StringRef List, std::string &Error) { 22 return SpecialCaseList::create(MB.get(), Error); 26 std::string Error; 27 SpecialCaseList *SCL = makeSpecialCaseList(List, Error); 29 assert(Error == ""); 104 std::string Error; 105 EXPECT_EQ(nullptr, makeSpecialCaseList("badline", Error)); 106 EXPECT_EQ("Malformed line 1: 'badline'", Error); 107 EXPECT_EQ(nullptr, makeSpecialCaseList("src:bad[a-", Error)); 109 Error); [all...] |
| RegexTest.cpp | 87 std::string Error; 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)); [all...] |
| /external/qemu/include/qapi/ |
| error.h | 2 * QEMU Error Objects 20 * A class representing internal errors within QEMU. An error has a ErrorClass 23 typedef struct Error Error; 26 * Set an indirect pointer to an error given a ErrorClass value and a 30 void error_set(Error **err, ErrorClass err_class, const char *fmt, ...) GCC_FMT_ATTR(3, 4); 33 * Set an indirect pointer to an error given a ErrorClass value and a 37 void error_set_errno(Error **err, int os_error, ErrorClass err_class, const char *fmt, ...) GCC_FMT_ATTR(4, 5); 41 * Set an indirect pointer to an error given a ErrorClass value and a 45 void error_set_win32(Error **err, int win32_err, ErrorClass err_class, const char *fmt, ...) GCC_FMT_ATTR(4, 5) [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 const HChar* 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...] |
| /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/chromium_org/v8/test/mjsunit/ |
| 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/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_org/native_client_sdk/src/libraries/nacl_io/ |
| error.h | 9 struct Error { 12 Error(int error) : error(error) {} 13 operator int() const { return error; } 15 int error; member in struct:nacl_io::Error
|
| /external/chromium_org/native_client_sdk/src/tools/ |
| genhttpfs.py | 20 class Error(Exception): 47 parser.error("One or more pathnames must be specified. See --help.") 54 raise Error('Could not find match for "%s".\n' % fileglob) 63 raise Error('Can not handle path "%s".\n' % filename) 70 raise Error('%s is not relative to CWD %s.\n' % filename, cwd) 83 except Error, e:
|
| /external/chromium_org/net/base/ |
| net_errors.h | 17 // Error domain of the net module's error codes. 20 // Error values are negative. 21 enum Error { 22 // No error. 29 // The value of the first certificate error code. 33 // Returns a textual representation of the error code for logging purposes. 34 NET_EXPORT std::string ErrorToString(int error); 37 NET_EXPORT std::string ErrorToShortString(int error); 39 // Returns true if |error| is a certificate error code [all...] |
| /external/chromium_org/tools/gyp/pylib/gyp/ |
| simple_copy.py | 10 class Error(Exception): 13 __all__ = ["Error", "deepcopy"] 23 raise Error('Unsupported type %s for deepcopy. Use copy.deepcopy ' +
|
| /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)
|
| /external/deqp/executor/ |
| xeDefs.cpp | 41 Error::Error (const char* message, const char* expr, const char* file, int line)
|
| xeDefs.hpp | 34 class Error : public std::runtime_error 37 Error (const std::string& message) : std::runtime_error(message) {} 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())
|
| /external/lldb/include/lldb/Core/ |
| Error.h | 1 //===-- Error.h -------------------------------------------------*- C++ -*-===// 28 /// @class Error Error.h "lldb/Core/Error.h" 29 /// @brief An error handling class. 31 /// This class is designed to be able to hold any error code that can be 33 /// of type Error::ValueType. This value should be large enough to hold 34 /// any and all errors that the class supports. Each error has an 36 /// can be added to support new error types, and architecture specific 38 /// registration mechanism where new error types can be registered a [all...] |
| /external/llvm/bindings/ocaml/linker/ |
| llvm_linker.ml | 10 exception Error of string 13 let _ = register_exns (Error "")
|
| /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
|
| /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;
|
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/ |
| bgenlocations.py | 13 Error = "bgenlocations.Error" 46 raise Error, "Please fix bgenlocations.py, BGENDIR does not exist: %s" % BGENDIR 48 raise Error, "Please fix bgenlocations.py, INCLUDEDIR does not exist: %s" % INCLUDEDIR 50 raise Error, "Please fix bgenlocations.py, TOOLBOXDIR does not exist: %s" % TOOLBOXDIR
|
| /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();
|