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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/WebCore/ForwardingHeaders/runtime/
Error.h 3 #include <JavaScriptCore/Error.h>
  /cts/tools/dx-tests/src/dxc/junit/opcodes/athrow/jm/
T_athrow_8.java 21 public void run() throws Error {
22 throw new Error();
  /cts/tools/vm-tests/src/dot/junit/opcodes/opc_throw/d/
T_opc_throw_8.java 21 public void run() throws Error {
22 throw new Error();
  /build/tools/apicheck/src/com/android/apicheck/
Errors.java 50 public static void error(Error error, SourcePositionInfo where, String text) { method in class:Errors
51 if (error.level == HIDDEN) {
55 String which = (!warningsAreErrors && error.level == WARNING) ? " warning " : " error ";
56 String message = which + error.code + ": " + text;
64 if (error.level == ERROR || (warningsAreErrors && error.level == WARNING))
    [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() {
42 * Constructs a new {@code Error} with the current stack trace and the
46 * the detail message for this error.
48 public Error(String detailMessage) {
53 * Constructs a new {@code Error} with the current stack trace, the
57 * the detail message for this error.
59 * the cause of this error
    [all...]
ThreadDeath.java 24 public class ThreadDeath extends Error {
LinkageError.java 22 * {@code LinkageError} is the superclass of all error classes that occur when
25 * @see Error
27 public class LinkageError extends Error {
44 * the detail message for this error.
VirtualMachineError.java 22 * {@code VirtualMachineError} is the superclass of all error classes that occur
25 * @see Error
27 public abstract class VirtualMachineError extends Error {
  /frameworks/base/telephony/java/com/android/internal/telephony/
CommandException.java 27 private Error e;
29 public enum Error {
47 public CommandException(Error e) {
57 return new CommandException(Error.INVALID_RESPONSE);
59 return new CommandException(Error.RADIO_NOT_AVAILABLE);
61 return new CommandException(Error.GENERIC_FAILURE);
63 return new CommandException(Error.PASSWORD_INCORRECT);
65 return new CommandException(Error.SIM_PIN2);
67 return new CommandException(Error.SIM_PUK2);
69 return new CommandException(Error.REQUEST_NOT_SUPPORTED)
    [all...]
  /build/tools/droiddoc/src/
Errors.java 51 public static void error(Error error, SourcePositionInfo where, String text) { method in class:Errors
52 if (error.level == HIDDEN) {
56 int level = (!warningsAreErrors && error.level == WARNING) ? WARNING : ERROR;
57 String which = level == WARNING ? " warning " : " error ";
58 String message = which + error.code + ": " + text;
66 if (error.level == ERROR || (warningsAreErrors && error.level == WARNING))
    [all...]
  /dalvik/dx/tests/082-dex-throws-list-sharing/
Blort.java 30 throws Error, UnsupportedOperationException {
35 throws Error, UnsupportedOperationException {
  /dalvik/dx/src/junit/framework/
AssertionFailedError.java 6 public class AssertionFailedError extends Error {
  /dalvik/tests/021-string2/src/junit/framework/
AssertionFailedError.java 6 public class AssertionFailedError extends Error {
  /dalvik/tests/082-inline-execute/src/junit/framework/
AssertionFailedError.java 6 public class AssertionFailedError extends Error {
  /frameworks/base/test-runner/src/android/test/
AssertionFailedError.java 25 public class AssertionFailedError extends Error {
  /libcore/junit/src/main/java/junit/framework/
AssertionFailedError.java 6 public class AssertionFailedError extends Error {
  /libcore/luni/src/main/java/java/io/
IOError.java 21 * This error is thrown when a severe I/O error has happened.
25 public class IOError extends Error {
32 * The detail cause for the error.
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
ErrorTest.java 25 * @tests java.lang.Error#Error()
28 Error e = new Error();
35 * @tests java.lang.Error#Error(java.lang.String)
38 Error e = new Error("fixture");
OutOfMemoryErrorTest.java 27 Error e = new OutOfMemoryError();
37 Error e = new OutOfMemoryError(null);
  /external/skia/src/animator/
SkBase64.h 25 enum Error {
32 Error decode(const char* src, size_t length);
40 Error decode(const void* srcPtr, size_t length, bool writeDestination);
  /external/junit/src/junit/framework/
AssertionFailedError.java 6 public class AssertionFailedError extends Error {
  /libcore/luni/src/main/java/java/nio/charset/
CoderMalfunctionError.java 24 public class CoderMalfunctionError extends Error {
  /libcore/support/src/test/java/tests/support/
Support_Proxy_I2.java 26 String string(String s) throws Support_Proxy_SubException, Error;
  /libcore/luni/src/main/java/java/util/
ServiceConfigurationError.java 24 public class ServiceConfigurationError extends Error {
28 * Constructs a new error with the given detail message.
36 * Constructs a new error with the given detail message and cause.
  /external/chromium/net/base/
net_errors.h 12 // Error domain of the net module's error codes.
15 // Error values are negative.
16 enum Error {
17 // No error.
24 // The value of the first certificate error code.
28 // Returns a textual representation of the error code for logging purposes.
29 const char* ErrorToString(int error);
31 // Returns true if |error| is a certificate error code
    [all...]

Completed in 691 milliseconds

1 2 3 4 5 6 7 8 91011>>