HomeSort by relevance Sort by last modified time
    Searched defs:Error (Results 376 - 400 of 500) sorted by null

<<11121314151617181920

  /external/chromium_org/sync/tools/testserver/
chromiumsync.py 96 # to the client. This would be specified by the url that triggers the error.
161 class Error(Exception):
162 """Error class for this module."""
165 class ProtobufDataTypeFieldNotUnique(Error):
169 class DataTypeIdNotRecognized(Error):
173 class MigrationDoneError(Error):
184 class StoreBirthdayError(Error):
188 class TransientError(Error):
189 """The client would be sent a transient error."""
192 class SyncInducedError(Error)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
UISourceCodeFrame.js 232 Error: "error",
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
session.h 61 // Used for errors that will send back a specific error message to the
67 // if unset, assume type is a parse error
77 // TODO: Use this error in Session::Initiate and
156 bool OnRemoteCandidates(const Candidates& candidates, std::string* error);
258 enum Error {
259 ERROR_NONE = 0, // no error
261 ERROR_RESPONSE = 2, // error during signaling
262 ERROR_NETWORK = 3, // network error, could not allocate network resources
264 ERROR_TRANSPORT = 5, // transport error of some kind
319 // Returns the last error in the session. See the enum above for details
321 Error error() const { return error_; } function in class:cricket::BaseSession
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
dd.h 70 * Core Mesa will call these functions after error checking has been done
71 * so that the drivers don't have to worry about error testing.
112 * Called whenever an error is generated.
113 * __struct gl_contextRec::ErrorValue contains the error value.
115 void (*Error)( struct gl_context *ctx );
    [all...]
  /external/chromium_org/third_party/skia/src/animator/
SkScript.h 22 enum Error {
80 Error getError() const { return fError; }
214 Error opError();
217 bool setError(Error , const char* pos);
244 Error fError;
  /external/chromium_org/ui/file_manager/file_manager/background/js/
file_operation_manager.js 25 catch(function(error) {
26 if (error.name === util.FileError.TYPE_MISMATCH_ERR) {
31 return Promise.reject(error);
48 * @param {function(FileOperationManager.Error)=} opt_errorCallback Callback run
49 * on error.
77 }, function(error) {
81 if (error.name === util.FileError.NOT_FOUND_ERR)
84 return Promise.reject(error);
88 var promise = resolvePath(relativePath, MAX_RETRY, 1).catch(function(error) {
90 if (error.name === util.FileError.PATH_EXISTS_ERR)
    [all...]
  /external/clang/lib/Frontend/
CompilerInstance.cpp 441 // No suitable PCH file could be found. Return an error.
572 std::string Error, OutputPathName, TempPathName;
573 llvm::raw_fd_ostream *OS = createOutputFile(OutputPath, Error, Binary,
582 << OutputPath << Error;
596 std::string &Error,
673 OSFile.c_str(), Error,
675 if (!Error.empty())
829 OS << NumErrors << " error" << (NumErrors == 1 ? "" : "s");
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 243 /// Error* - These are little helper functions for error handling.
244 ExprAST *Error(const char *Str) { fprintf(stderr, "Error: %s\n", Str);return 0;}
245 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; }
246 FunctionAST *ErrorF(const char *Str) { Error(Str); return 0; }
273 return Error("Expected ')' or ',' in argument list");
298 return Error("expected ')'");
312 return Error("expected then");
319 return Error("expected else")
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 261 /// Error* - These are little helper functions for error handling.
262 ExprAST *Error(const char *Str) { fprintf(stderr, "Error: %s\n", Str);return 0;}
263 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; }
264 FunctionAST *ErrorF(const char *Str) { Error(Str); return 0; }
291 return Error("Expected ')' or ',' in argument list");
316 return Error("expected ')'");
330 return Error("expected then");
337 return Error("expected else")
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 278 /// Error* - These are little helper functions for error handling.
279 ExprAST *Error(const char *Str) { fprintf(stderr, "Error: %s\n", Str);return 0;}
280 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; }
281 FunctionAST *ErrorF(const char *Str) { Error(Str); return 0; }
308 return Error("Expected ')' or ',' in argument list");
333 return Error("expected ')'");
347 return Error("expected then");
354 return Error("expected else")
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 263 /// Error* - These are little helper functions for error handling.
264 ExprAST *Error(const char *Str) { fprintf(stderr, "Error: %s\n", Str);return 0;}
265 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; }
266 FunctionAST *ErrorF(const char *Str) { Error(Str); return 0; }
293 return Error("Expected ')' or ',' in argument list");
318 return Error("expected ')'");
332 return Error("expected then");
339 return Error("expected else")
    [all...]
  /external/llvm/lib/Target/PowerPC/AsmParser/
PPCAsmParser.cpp 153 // value on success, or -1 on error.
225 bool Error(SMLoc L, const Twine &Msg) { return Parser.Error(L, Msg); }
937 return Error(IDLoc, "instruction use requires an option to be enabled");
939 return Error(IDLoc, "unrecognized instruction mnemonic");
944 return Error(IDLoc, "too few operands for instruction");
950 return Error(ErrorLoc, "invalid operand for instruction");
    [all...]
  /external/llvm/tools/llvm-ar/
llvm-ar.cpp 48 // fail - Show the error message and exit.
49 LLVM_ATTRIBUTE_NORETURN static void fail(Twine Error) {
50 outs() << ToolName << ": " << Error << ".\n";
137 // show_help - Show the error message, the help message and exit.
941 errs() << ToolName << ": error opening '" << ArchiveName
950 errs() << ToolName << ": error loading '" << ArchiveName
961 failIfError(EC, Twine("error loading '") + ArchiveName + "'");
  /external/llvm/utils/FileCheck/
FileCheck.cpp 13 // This program exits with an error status of 2 on error, exit status of 0 if
109 /// which prefix is being matched, SM provides the SourceMgr used for error
111 /// the pattern string was read. Returns true in case of an error, false
325 std::string Error;
326 if (!R.isValid(Error)) {
328 "invalid regex: " + Error);
398 // If the variable is undefined, return an error.
429 assert(I->second < MatchInfo.size() && "Internal paren error");
493 // Attempt to find the closest/best fuzzy match. Usually an error happen
    [all...]
  /external/mesa3d/src/mesa/main/
dd.h 70 * Core Mesa will call these functions after error checking has been done
71 * so that the drivers don't have to worry about error testing.
112 * Called whenever an error is generated.
113 * __struct gl_contextRec::ErrorValue contains the error value.
115 void (*Error)( struct gl_context *ctx );
    [all...]
  /external/openfst/src/include/fst/
compact-fst.h 101 // simply raised an error when called:
185 bool Error() const { return error_; }
373 LOG(ERROR) << "CompactFst::Read: Alignment failed: " << opts.source;
380 LOG(ERROR) << "CompactFst::Read: Read failed: " << opts.source;
393 LOG(ERROR) << "CompactFst::Read: Alignment failed: " << opts.source;
400 LOG(ERROR) << "CompactFst::Read: Read failed: " << opts.source;
414 LOG(ERROR) << "CompactFst::Write: Alignment failed: " << opts.source;
421 LOG(ERROR) << "CompactFst::Write: Alignment failed: " << opts.source;
429 LOG(ERROR) << "CompactFst::Write: Write failed: " << opts.source;
739 if (data_->Error())
    [all...]
  /external/skia/src/animator/
SkScript.h 22 enum Error {
80 Error getError() const { return fError; }
214 Error opError();
217 bool setError(Error , const char* pos);
244 Error fError;
  /external/sonivox/jet_tools/JetCreator/
midifile.py 122 # recurring error messages
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
authz.h 54 PDWORD Error;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
mailbox.py     [all...]
xmlrpclib.py 28 # 2001-08-20 fl Base xmlrpclib.Error on built-in Exception (from Paul Prescod)
41 # 2002-05-15 fl Added error constants (from Andrew Kuchling)
101 Error Base class for client errors
102 ProtocolError Indicates an HTTP protocol error
197 # Error constants (from Dan Libby's specification at
222 class Error(Exception):
228 # Indicates an HTTP-level protocol error. This is raised by the HTTP
229 # transport layer, if the server returns an error code other than 200
233 # @param errcode The HTTP error code.
234 # @param errmsg The HTTP error message
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_support.py 29 __all__ = ["Error", "TestFailed", "ResourceDenied", "import_module",
45 class Error(Exception):
48 class TestFailed(Error):
91 # try to import the module and raise an error if it can't be imported
197 # of ~1 second after which the deletion is probably an error
250 except OSError as error:
252 if error.errno != errno.ENOENT:
322 socket.error will be raised at some point (depending on the platform and
481 the CWD, an error is raised. If it's True, only a warning is raised
876 # unwrap to get at the original error
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
mailbox.py     [all...]
xmlrpclib.py 28 # 2001-08-20 fl Base xmlrpclib.Error on built-in Exception (from Paul Prescod)
41 # 2002-05-15 fl Added error constants (from Andrew Kuchling)
101 Error Base class for client errors
102 ProtocolError Indicates an HTTP protocol error
197 # Error constants (from Dan Libby's specification at
222 class Error(Exception):
228 # Indicates an HTTP-level protocol error. This is raised by the HTTP
229 # transport layer, if the server returns an error code other than 200
233 # @param errcode The HTTP error code.
234 # @param errmsg The HTTP error message
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_support.py 29 __all__ = ["Error", "TestFailed", "ResourceDenied", "import_module",
45 class Error(Exception):
48 class TestFailed(Error):
91 # try to import the module and raise an error if it can't be imported
197 # of ~1 second after which the deletion is probably an error
250 except OSError as error:
252 if error.errno != errno.ENOENT:
322 socket.error will be raised at some point (depending on the platform and
481 the CWD, an error is raised. If it's True, only a warning is raised
876 # unwrap to get at the original error
    [all...]

Completed in 1307 milliseconds

<<11121314151617181920