| /external/llvm/examples/Kaleidoscope/Chapter3/ |
| toy.cpp | 179 /// Error* - These are little helper functions for error handling. 180 ExprAST *Error(const char *Str) { fprintf(stderr, "Error: %s\n", Str);return 0;} 181 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; } 182 FunctionAST *ErrorF(const char *Str) { Error(Str); return 0; } 209 return Error("Expected ')' or ',' in argument list"); 234 return Error("expected ')'"); 245 default: return Error("unknown token when expecting an expression"); 354 Value *ErrorV(const char *Str) { Error(Str); return 0; [all...] |
| /external/llvm/examples/Kaleidoscope/Chapter4/ |
| toy.cpp | 186 /// Error* - These are little helper functions for error handling. 187 ExprAST *Error(const char *Str) { fprintf(stderr, "Error: %s\n", Str);return 0;} 188 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; } 189 FunctionAST *ErrorF(const char *Str) { Error(Str); return 0; } 216 return Error("Expected ')' or ',' in argument list"); 241 return Error("expected ')'"); 252 default: return Error("unknown token when expecting an expression"); 362 Value *ErrorV(const char *Str) { Error(Str); return 0; [all...] |
| /external/llvm/include/llvm/MC/MCParser/ |
| MCAsmLexer.h | 26 Eof, Error, 122 /// The location and description of the current error 166 /// getErrLoc - Get the current error location 171 /// getErr - Get the current error string
|
| /external/llvm/lib/TableGen/ |
| TGLexer.h | 32 Eof, Error,
|
| /external/llvm/tools/bugpoint/ |
| ToolRunner.cpp | 83 /// Returns the remote program exit code or reports a remote client error if it 117 // The error message is in the output file, let's print it out from there. 142 // Rerun the compiler, capturing any error messages to print them. 148 errs() << "Error making unique filename: " << EC.message() << "\n"; 155 // Print out the error messages generated by GCC if possible... 186 std::string *Error, 199 std::string *Error, 232 Timeout, MemoryLimit, Error); 246 /// directory. An empty string is returned on error; note that this function 299 std::string *Error, [all...] |
| /external/llvm/tools/llvm-objdump/ |
| MachODump.cpp | 61 std::string Error; 62 const Target *TheTarget = TargetRegistry::lookupTarget(TripleName, Error); 66 errs() << "llvm-objdump: error: unable to get target for '" << TripleName 237 errs() << "error: couldn't initialize disassembler for target "
|
| /external/opencv/cvaux/src/ |
| _cvfacedetection.h | 278 double Error;
|
| /external/openfst/src/include/fst/extensions/far/ |
| far.h | 93 // Creates a new (empty) FST archive; returns NULL on error. 102 virtual bool Error() const = 0; 120 // Opens an existing FST archive in a single file; returns NULL on error. 124 // Opens an existing FST archive in multiple files; returns NULL on error. 150 virtual bool Error() const = 0; 186 bool Error() const { return writer_->Error(); } 216 bool Error() const { return writer_->Error(); } 255 bool Error() const { return error_; [all...] |
| /external/openfst/src/include/fst/extensions/pdt/ |
| paren.h | 169 bool const Error() { return error_; }
|
| /external/openfst/src/include/fst/ |
| label-reachable.h | 266 if (accumulator_->Error()) error_ = true; 293 if (accumulator_->Error()) error_ = true; 401 bool Error() const { return error_ || accumulator_->Error(); } 469 if (state_reachable.Error()) {
|
| rmepsilon.h | 92 // Return true if an error has occured. 93 bool Error() const { return sd_state_.Error(); } 164 if (sd_state_.Error()) 315 if(rmeps_state.Error()) 466 // Set error if found; return FST impl properties. 469 (fst_->Properties(kError, false) || rmeps_state_.Error()))
|
| /external/protobuf/python/ |
| mox.py | 69 class Error(AssertionError): 75 class ExpectedMethodCallsError(Error): 93 Error.__init__(self) 102 class UnexpectedMethodCallError(Error): 121 Error.__init__(self) 130 class UnknownMethodCallError(Error): 142 Error.__init__(self) 821 # Check raw types if there was a type error. This is helpful for [all...] |
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
| aifc.py | 76 getmark(id) -- get mark with the specified id (raises an error 140 __all__ = ["Error","open","openfp"] 142 class Error(Exception): 150 except struct.error: 156 except struct.error: 162 except struct.error: 168 except struct.error: 300 raise Error, 'file does not start with FORM id' 307 raise Error, 'not an AIFF or AIFF-C file' 329 raise Error, 'COMM chunk and/or SSND chunk missing [all...] |
| mhlib.py | 11 mh.error(format, ...) # print error message -- can be overridden 27 f.error(format, ...) # same as mh.error(format, ...) 87 __all__ = ["MH","Error","Folder","Message"] 91 class Error(Exception): 111 if not os.path.isdir(path): raise Error, 'MH() path not found' 118 def error(self, msg, *args): member in class:MH 119 """Routine to print an error. May be overridden by a derived class.""" 120 sys.stderr.write('MH error: %s\n' % (msg % args) 256 def error(self, *args): member in class:Folder [all...] |
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/ |
| findertools.py | 32 Error = 'findertools.Error' 147 raise Error, aetools.decodeerror(args) 160 raise Error, aetools.decodeerror(args) 182 raise Error, aetools.decodeerror(args) 201 raise Error, aetools.decodeerror(_arg) 256 raise Error, aetools.decodeerror(args) 277 raise Error, aetools.decodeerror(args) 292 raise Error, aetools.decodeerror(args) 314 raise Error, aetools.decodeerror(args [all...] |
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
| aifc.py | 76 getmark(id) -- get mark with the specified id (raises an error 140 __all__ = ["Error","open","openfp"] 142 class Error(Exception): 150 except struct.error: 156 except struct.error: 162 except struct.error: 168 except struct.error: 300 raise Error, 'file does not start with FORM id' 307 raise Error, 'not an AIFF or AIFF-C file' 329 raise Error, 'COMM chunk and/or SSND chunk missing [all...] |
| mhlib.py | 11 mh.error(format, ...) # print error message -- can be overridden 27 f.error(format, ...) # same as mh.error(format, ...) 87 __all__ = ["MH","Error","Folder","Message"] 91 class Error(Exception): 111 if not os.path.isdir(path): raise Error, 'MH() path not found' 118 def error(self, msg, *args): member in class:MH 119 """Routine to print an error. May be overridden by a derived class.""" 120 sys.stderr.write('MH error: %s\n' % (msg % args) 256 def error(self, *args): member in class:Folder [all...] |
| /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/ |
| DebugGrammarParser.cs | [all...] |
| ProfileGrammarParser.cs | [all...] |
| /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/ |
| TestCertUtils.java | 54 throw new Error("statics only"); 735 throw new Error(); 802 throw new Error(
|
| /external/chromium_org/chrome/browser/extensions/updater/ |
| extension_updater.cc | 50 typedef extensions::ExtensionDownloaderDelegate::Error Error; 562 Error error,
|
| /external/chromium_org/components/json_schema/ |
| json_schema_validator.cc | 73 std::string* error) { 111 *error = "Invalid value for type attribute"; 120 *error = "Invalid value for type attribute"; 126 *error = "Invalid value for type attribute"; 136 if (!IsValidSchema(dictionary_value, options, error)) { 137 DCHECK(!error->empty()); 143 *error = base::StringPrintf( 148 if (!IsValidSchema(dictionary_value, options, error)) { 149 DCHECK(!error->empty()); 154 *error = "Invalid value for items attribute" [all...] |
| /external/chromium_org/native_client_sdk/src/libraries/ppapi_simple/ |
| ps_instance.cc | 81 // The error code will be available to javascript via 111 Error("No main defined.\n"); 264 Error("Invalid value for PS_TTY_ROWS: %s", tty_rows); 269 Error("Invalid value for PS_TTY_COLS: %s", tty_cols); 275 Error("PS_TTY_ROWS and PS_TTY_COLS must be set together"); 283 Error("Failed to open /dev/tty.\n"); 338 void PSInstance::Error(const char *fmt, ...) { 422 Error("unexpected input key: %s", key_string.c_str()); 428 Error("error opening file: %s (%s)", filename, strerror(errno)) [all...] |
| /external/chromium_org/net/tools/flip_server/ |
| spdy_interface.cc | 83 LOG(ERROR) << "SpdySM: Could not create server connection"; 254 LOG(ERROR) << "SpdySM: Could not convert spdy into http."; 282 // TODO(willchan): if there is an error parsing headers, we 315 bool SpdySM::Error() const { 321 DCHECK(Error()); 365 // error creating new stream.
|
| /external/chromium_org/remoting/android/java/src/org/chromium/chromoting/jni/ |
| JniInterface.java | 78 public enum Error { 93 Error(int value, int message) { 106 public static Error fromValue(int value) { 115 * @param error The error code, if state is STATE_FAILED. 117 void onConnectionState(State state, Error error); 201 ConnectionListener.Error.OK); 229 ConnectionListener.Error error = ConnectionListener.Error.fromValue(errorCode) local [all...] |