HomeSort by relevance Sort by last modified time
    Searched defs:error (Results 1176 - 1200 of 2948) sorted by null

<<41424344454647484950>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
copy.py 10 For module specific errors, copy.Error is raised.
55 class Error(Exception):
57 error = Error # backward compatibility variable
64 __all__ = ["Error", "copy", "deepcopy"]
94 raise Error("un(shallow)copyable object of type %s" % cls)
188 raise Error(
re.py 100 This module also defines an exception 'error'.
112 "UNICODE", "error" ]
129 error = sre_compile.error variable
241 except error, v:
242 raise error, v # invalid expression
256 except error, v:
257 raise error, v # invalid expression
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
pystone.py 257 def error(msg): function
263 error("%d arguments are too many;" % nargs)
267 error("Invalid argument %r;" % sys.argv[1])
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/sax/
handler.py 23 """Basic interface for SAX error handlers.
32 def error(self, exception): member in class:ErrorHandler
33 "Handle a recoverable error."
37 "Handle a non-recoverable error."
69 not reporting an error. Typically, the application will use
93 (because of an unrecoverable error) or reached the end of
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
audiodev.py 6 __all__ = ["error","AudioDev"]
8 class error(Exception): class in inherits:Exception
89 raise error, 'bad output rate'
104 raise error, 'bad sample width'
113 raise error, 'bad # of channels'
117 raise error, 'params not specified'
179 raise error, 'params not specified'
232 raise error, 'no audio device'
copy.py 10 For module specific errors, copy.Error is raised.
55 class Error(Exception):
57 error = Error # backward compatibility variable
64 __all__ = ["Error", "copy", "deepcopy"]
94 raise Error("un(shallow)copyable object of type %s" % cls)
188 raise Error(
re.py 100 This module also defines an exception 'error'.
112 "UNICODE", "error" ]
129 error = sre_compile.error variable
241 except error, v:
242 raise error, v # invalid expression
256 except error, v:
257 raise error, v # invalid expression
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
pystone.py 257 def error(msg): function
263 error("%d arguments are too many;" % nargs)
267 error("Invalid argument %r;" % sys.argv[1])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/sax/
handler.py 23 """Basic interface for SAX error handlers.
32 def error(self, exception): member in class:ErrorHandler
33 "Handle a recoverable error."
37 "Handle a non-recoverable error."
69 not reporting an error. Typically, the application will use
93 (because of an unrecoverable error) or reached the end of
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
RenderLogger.java 84 for (String error : mErrors) {
85 sb.append(error).append('\n');
104 sb.append("Exception details are logged in Window > Show View > Error Log");
123 public void error(String tag, String message, Object data) { method in class:RenderLogger
126 AdtPlugin.log(IStatus.ERROR, "%1$s: %2$s", mName, description);
128 // Workaround: older layout libraries don't provide a tag for this error
138 public void error(String tag, String message, Throwable throwable, Object data) { method in class:RenderLogger
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
XmlErrorHandler.java 32 * XML error handler used by the parser to report errors/warnings.
39 /** link to the delta visitor, to set the xml error flag */
48 * Sent when an XML error is detected.
73 * Xml Error call back
78 public void error(SAXParseException exception) throws SAXException { method in class:XmlErrorHandler
83 * Xml Fatal Error call back
113 * Handles a parsing error and an optional line number.
125 message = "Unknown error " + exception.getClass().getCanonicalName();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
RenameResourceProcessor.java 147 String error = mValidator.isValid(name); local
148 if (error != null) {
149 return RefactoringStatus.createFatalErrorStatus(error);
  /system/core/sh/
error.c 1 /* $NetBSD: error.c,v 1.31 2003/08/07 09:05:30 agc Exp $ */
38 static char sccsid[] = "@(#)error.c 8.2 (Berkeley) 5/4/95";
40 __RCSID("$NetBSD: error.c,v 1.31 2003/08/07 09:05:30 agc Exp $");
59 #include "error.h"
149 * Exverror is called to raise the error exception. If the second argument
150 * is not NULL then error prints an error message using printf style
151 * formatting. It then raises the error exception.
177 error(const char *msg, ...) function
200 * error/warning routines for external builtin
    [all...]
  /system/extras/libpagemap/
pm_process.c 35 int error; local
47 error = snprintf(filename, MAX_FILENAME, "/proc/%d/pagemap", pid);
48 if (error < 0 || error >= MAX_FILENAME) {
49 error = (error < 0) ? (errno) : (-1);
51 return error;
56 error = errno;
58 return error;
61 error = read_maps(proc)
76 int error; local
108 int error; local
173 int error; local
237 int error; local
    [all...]
  /system/extras/procmem/
procmem.c 75 int error; local
102 error = pm_kernel_create(&ker);
103 if (error) {
104 fprintf(stderr, "error creating kernel interface -- "
111 error = pm_process_create(ker, pid, &proc);
112 if (error) {
113 fprintf(stderr, "error creating process interface -- "
119 error = pm_process_workingset(proc, NULL, 1);
120 if (error) {
121 fprintf(stderr, "error resetting working set for process.\n")
    [all...]
  /system/media/audio_utils/
resampler.c 196 int error; local
218 &error);
220 ALOGW("ReSampler: Cannot create speex resampler: %s", speex_resampler_strerror(error));
  /external/doclava/test/doclava/
ApiCheckTest.java 20 import com.google.doclava.Errors.Error;
35 for (Errors.Error error : Errors.ERRORS) {
36 Errors.setErrorLevel(error.code, Errors.ERROR);
52 assertEquals(Errors.CHANGED_TYPE, report.errors().iterator().next().error());
64 assertNotSame(m1.error(), m2.error());
65 assertTrue(m1.error().equals(Errors.ADDED_METHOD) || m1.error().equals(Errors.REMOVED_METHOD))
    [all...]
  /external/smack/src/org/jivesoftware/smackx/filetransfer/
FileTransferNegotiator.java 267 XMPPError error = new XMPPError(XMPPError.Condition.bad_request, errorMessage); local
269 IQ.Type.ERROR);
270 iqPacket.setError(error);
272 throw new XMPPException(errorMessage, error);
283 IQ.Type.ERROR);
322 XMPPError error = new XMPPError(XMPPError.Condition.bad_request, local
324 throw new XMPPException(error.getMessage(), error); local
347 XMPPError error = new XMPPError(XMPPError.Condition.forbidden, "Offer Declined"); local
349 IQ.Type.ERROR);
457 XMPPError error = new XMPPError(XMPPError.Condition.bad_request, local
459 throw new XMPPException(error.getMessage(), error); local
    [all...]
  /frameworks/base/core/java/android/net/http/
Connection.java 161 int error = EventHandler.OK; local
238 error = EventHandler.ERROR;
241 error = EventHandler.ERROR_IO;
244 error = EventHandler.ERROR_IO;
247 if (httpFailure(req, error, exception) &&
286 error = EventHandler.ERROR_IO;
289 error = EventHandler.ERROR_IO;
292 error = EventHandler.ERROR_IO;
295 if (httpFailure(req, error, exception) &
352 int error = EventHandler.OK; local
438 String error; local
    [all...]
Request.java 329 as we do truncated non-gzipped content: no error */
508 * Handles SSL error(s) on the way down from the user (the user
519 * Helper: calls error() on eventhandler with appropriate message
522 void error(int errorId, int resourceId) { method in class:Request
523 mEventHandler.error(
  /prebuilts/tools/common/m2/internal/org/slf4j/slf4j-api/1.7.2/
slf4j-api-1.7.2.jar 
  /external/smack/src/org/jivesoftware/smackx/commands/
AdHocCommandManager.java 397 // item_not_found error.
414 // Answer forbidden error if requester permissions are not
423 // If the action is unknown then respond an error.
474 // invalid session error and not a time out error.
502 // prev or cancel method, then that error is returned to the
504 XMPPError error = e.getXMPPError(); local
506 // If the error type is cancel, then the execution is
509 if (XMPPError.Type.CANCEL.equals(error.getType())) {
513 respondError(response, error);
619 XMPPError error = e.getXMPPError(); local
657 XMPPError error = new XMPPError(condition); local
    [all...]
  /art/jdwpspy/
Net.cpp 476 art::JDWP::JdwpError error = art::JDWP::ERR_NONE; local
485 error = static_cast<art::JDWP::JdwpError>(get2BE(buf+9));
515 prefix, dataLen, id, flags, error, ss.str().c_str(), min,sec);
523 * Handle a packet. Returns "false" if we encounter a connection-fatal error.
587 * Returns "false" on error (indicating that the connection has been severed).
  /bionic/libc/kernel/common/linux/mmc/
mmc.h 59 unsigned int error; member in struct:mmc_command
79 unsigned int error; member in struct:mmc_data
  /bionic/libc/netbsd/net/
getnameinfo.c 37 * - RFC2553 says that we should raise error on short buffer. X/Open says
301 int error; local
303 if ((error = ip6_parsenumeric(sa, addr, host,
305 return(error);
359 int error; local
361 if ((error = ip6_parsenumeric(sa, addr, host,
364 return(error);

Completed in 1709 milliseconds

<<41424344454647484950>>