Searched defs:error (Results 1 - 25 of 394) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/macosx/native/apple/applescript/
H A DAppleScriptExecutionContext.h33 NSDictionary *error; variable
39 @property (nonatomic, retain) NSDictionary *error; variable
/openjdk7/langtools/test/tools/javac/
H A DT6351767.java46 error("NPE not thrown");
55 error("NPE not thrown");
72 error("expected file, java/lang/Object.class, not found");
85 error("expected file, java/lang/Object.class, not found");
89 static void error(String msg) { method in class:T6351767
/openjdk7/langtools/test/tools/javac/boxing/
H A DT6614974.java34 public void error() { method in class:T6614974
/openjdk7/jaxp/src/org/w3c/dom/
H A DDOMErrorHandler.java49 * <code>Document</code> using the "error-handler" on the
50 * <code>DOMConfiguration</code> interface. If more than one error needs to
52 * passed to the error handler are implementation dependent.
60 * This method is called on the error handler when an error occurs.
63 * @param error The error object that describes the error. This object
72 public boolean handleError(DOMError error); argument
/openjdk7/jdk/src/share/back/
H A DinStream.h37 jdwpError error; member in struct:PacketInputStream
/openjdk7/jdk/src/solaris/native/sun/nio/ch/
H A DUnixAsynchronousSocketChannelImpl.c42 int error = 0; local
43 socklen_t arglen = sizeof(error);
46 result = getsockopt(fd, SOL_SOCKET, SO_ERROR, &error, &arglen);
50 if (error)
51 handleSocketError(env, error);
/openjdk7/jdk/test/com/sun/net/httpserver/bugs/
H A DB6431193.java39 static boolean error = false; field in class:B6431193
60 error = Thread.currentThread().isDaemon();
79 if (error) {
80 throw new RuntimeException ("error in test");
H A DB6341616.java74 public static boolean error = false; field in class:B6341616
80 B6341616.error = true;
/openjdk7/jdk/test/javax/swing/KeyboardManager/8013370/
H A DTest8013370.java65 private boolean error; field in class:Test8013370
74 Test8013370.this.error = true;
106 if (this.error) {
/openjdk7/langtools/test/tools/javac/api/ToolProvider/
H A DHelloWorldTest.java67 error(">>> " + line);
71 error("Unexpected exit code: " + rc);
77 void error(String msg) { method in class:HelloWorldTest
H A DToolProviderTest1.java66 error(">>> " + line);
70 error("Unexpected exit code: " + rc);
76 void error(String msg) { method in class:ToolProviderTest1
H A DToolProviderTest2.java72 error("Unexpected exit code: " + rc);
81 void error(String msg) { method in class:ToolProviderTest2
/openjdk7/langtools/test/tools/javac/generics/6413682/
H A DTestPos.java88 error("Start pos for %s is incorrect (%s)!", node, startPos);
90 error("End pos for %s is incorrect (%s)!", node, endPos);
101 error("unexpected error");
103 error("Error pos for %s is incorrect (%s)!",
113 error("No parse error detected");
117 error("No error tree detected");
119 error("Unexpecte
124 static void error(String format, Object... args) { method in class:TestPos
[all...]
/openjdk7/langtools/test/tools/javap/
H A DT6980017.java50 error("Unexpected exit code: " + rc);
63 error("found blank source lines");
66 error("did not find \"Source code not available\" message");
72 void error(String msg) { method in class:T6980017
/openjdk7/jaxp/src/javax/xml/transform/
H A DErrorListener.java29 * <p>To provide customized error handling, implement this interface and
78 * Receive notification of a recoverable error.
85 * @param exception The error information encapsulated in a
93 public abstract void error(TransformerException exception) method in interface:ErrorListener
97 * <p>Receive notification of a non-recoverable error.</p>
103 * process the error, or if it wishes execution to terminate
107 * @param exception The error information encapsulated in a
/openjdk7/jdk/src/share/classes/javax/management/
H A DRuntimeErrorException.java44 private java.lang.Error error ; field in class:RuntimeErrorException
49 * @param e the wrapped error.
53 error = e ;
57 * Constructor that allows a specific error message to be specified.
59 * @param e the wrapped error.
64 error = e ;
73 return error ;
82 return error;
/openjdk7/jaxp/src/org/xml/sax/
H A DErrorHandler.java26 // SAX error handler.
35 * Basic interface for SAX error handlers.
44 * <p>If a SAX application needs to implement customized error
55 * with {@link #error error()} calls must be registered.</p>
102 * Receive notification of a recoverable error.
104 * <p>This corresponds to the definition of "error" in section 1.2
114 * a fatal error even if the XML recommendation does not require
120 * @param exception The error information encapsulated in a
126 public abstract void error (SAXParseExceptio method in interface:ErrorHandler
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/core/
H A DErrorHandler.java50 * Receives a notification for an error in the annotated code.
52 void error( IllegalAnnotationException e ); method in interface:ErrorHandler
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/parser/
H A DErrorHandler.java38 * Receives a notification for an error in the annotated code.
40 void error( Throwable e ); method in interface:ErrorHandler
/openjdk7/jdk/test/com/sun/net/httpserver/
H A DTest6.java70 if (error) {
71 throw new RuntimeException ("test failed error");
80 public static boolean error = false; field in class:Test6
94 error = true;
100 error = true;
H A DTest6a.java72 if (error) {
73 throw new RuntimeException ("test failed error");
82 public static boolean error = false; field in class:Test6a
96 error = true;
102 error = true;
H A DTest7.java70 if (error) {
71 throw new RuntimeException ("test failed error");
80 public static boolean error = false; field in class:Test7
94 error = true;
100 error = true;
H A DTest7a.java77 if (error) {
78 throw new RuntimeException ("test failed error");
87 public static boolean error = false; field in class:Test7a
101 error = true;
107 error = true;
H A DTest8.java69 if (error) {
70 throw new RuntimeException ("test failed error");
79 public static boolean error = false; field in class:Test8
93 error = true;
99 error = true;
102 error = true;
H A DTest8a.java83 System.out.println ("Setting error(" +f +")("+i+")" );
84 error = true;
94 if (error) {
95 throw new RuntimeException ("test failed error");
101 public static boolean error = false; field in class:Test8a
117 System.out.println ("Setting error 1");
118 error = true;
124 System.out.println ("Setting error 2");
125 error = true;

Completed in 172 milliseconds

1234567891011>>