Searched defs:error (Results 151 - 175 of 394) sorted by relevance

1234567891011>>

/openjdk7/langtools/test/tools/javap/
H A DT4975569.java56 error(expect + " not found");
60 void error(String msg) { method in class:T4975569
H A DT6868539.java63 error(expect + " not found");
67 void error(String msg) { method in class:T6868539
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DTypeCheckError.java42 public TypeCheckError(ErrorMsg error) { argument
44 _error = error;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DErrorHandlerWrapper.java32 * This class wraps a SAX error handler in an XNI error handler.
46 /** The SAX error handler. */
56 /** Wraps the specified SAX error handler. */
65 /** Sets the SAX error handler. */
70 /** Returns the SAX error handler. */
115 * Reports an error. Errors are non-fatal and usually signify that the
118 * @param domain The domain of the error. The domain can be any
122 * document pertaining to this error.
123 * @param key The error ke
130 public void error(String domain, String key, method in class:ErrorHandlerWrapper
[all...]
/openjdk7/corba/make/tools/src/build/tools/stripproperties/
H A DStripProperties.java48 private static void error(String msg, Exception e) { method in class:StripProperties
67 error("The -optionsfile file is empty", null);
73 error("Cannot read all of -optionsfile file", null);
78 error("cannot open " + filename, e);
86 error("cannot close " + filename, e);
96 error("No files found in file", null);
121 error("Cannot access file " + file, e);
124 error("IO exception processing file " + file, e);
131 error("IO exception closing file " + file, e);
145 error("I
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DJPEGImageDecoder.java78 * An error has occurred. Throw an exception.
80 private static void error(String s1) throws ImageFormatException { method in class:JPEGImageDecoder
/openjdk7/jdk/src/share/classes/java/util/
H A DXMLUtils.java195 public void error(SAXParseException x) throws SAXException { method in class:XMLUtils.EH
/openjdk7/jdk/make/tools/src/build/tools/compileproperties/
H A DCompileProperties.java82 private static void error(String msg, Exception e) { method in class:CompileProperties
126 error("The -optionsfile file is empty", null);
132 error("Cannot read all of -optionsfile file", null);
137 error("cannot open " + filename, e);
145 error("cannot close " + filename, e);
158 error("argument error", null);
179 error("options parsed but no files to compile", null);
218 error("Cannot find file " + propertiesPath, e);
221 error("I
[all...]
/openjdk7/jdk/make/tools/src/build/tools/javazic/
H A DMain.java75 error("invalid year: " + argv[i]);
90 error("invalid year: " + argv[i]);
196 * Prints out the specified fatal error message and calls {@link
198 * @param msg the fatal error message
201 printMessage("fatal error", msg);
206 * Prints out the specified error message.
207 * @param msg the error message
209 static void error(String msg) { method in class:Main
210 printMessage("error", msg);
/openjdk7/jdk/make/tools/src/build/tools/stripproperties/
H A DStripProperties.java48 private static void error(String msg, Exception e) { method in class:StripProperties
67 error("The -optionsfile file is empty", null);
73 error("Cannot read all of -optionsfile file", null);
78 error("cannot open " + filename, e);
86 error("cannot close " + filename, e);
96 error("No files found in file", null);
121 error("Cannot access file " + file, e);
124 error("IO exception processing file " + file, e);
131 error("IO exception closing file " + file, e);
145 error("I
[all...]
/openjdk7/jdk/src/macosx/bin/
H A Djexec.c86 static const char * UNKNOWN_ERROR = "unknown error";
99 void errorExit(int error, const char * message);
170 * implies an error in the exec. */
181 * error - errno is set to this value, and it is used to exit.
184 void errorExit(int error, const char * message) { argument
185 if (error != 0) {
186 errno = error;
190 exit((error == 0) ? 0 : 1);
/openjdk7/jdk/src/share/back/
H A DArrayTypeImpl.c47 jvmtiError error; local
51 error = classLoader(arrayClass, &arrayClassLoader);
52 if (error != JVMTI_ERROR_NONE) {
53 return map2jdwpError(error);
56 error = allLoadedClasses(&classes, &count);
57 if (error != JVMTI_ERROR_NONE) {
58 serror = map2jdwpError(error);
65 jvmtiError error; local
68 error = classSignature(clazz, &signature, NULL);
69 if (error !
212 jvmtiError error; local
[all...]
H A DMethodImpl.c34 jvmtiError error; local
62 error = methodLocation(method, &firstCodeIndex, &lastCodeIndex);
63 if (error != JVMTI_ERROR_NONE) {
64 outStream_setError(out, map2jdwpError(error));
70 error = JVMTI_FUNC_PTR(gdata->jvmti,GetLineNumberTable)
72 if (error == JVMTI_ERROR_ABSENT_INFORMATION) {
75 * are still useful, so we don't want to return an error
78 } else if (error == JVMTI_ERROR_NONE) {
87 outStream_setError(out, map2jdwpError(error));
97 jvmtiError error; local
177 jvmtiError error; local
[all...]
H A DStackFrameImpl.c36 jvmtiError error; local
39 error = threadControl_suspendCount(thread, &count);
40 if ( error == JVMTI_ERROR_NONE ) {
47 serror = map2jdwpError(error);
56 jvmtiError error; local
63 error = JVMTI_FUNC_PTR(gdata->jvmti,GetLocalObject)
66 if (error != JVMTI_ERROR_NONE) {
67 outStream_setError(out, map2jdwpError(error));
83 error = JVMTI_FUNC_PTR(gdata->jvmti,GetLocalInt)
91 error
149 jvmtiError error; local
368 jvmtiError error; local
420 jvmtiError error; local
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/wsdl/
H A DConsoleErrorReporter.java54 public void error(SAXParseException e) { method in class:ConsoleErrorReporter
/openjdk7/jdk/src/windows/classes/sun/security/krb5/internal/tools/
H A DKtab.java114 ktab.error("A command must be provided");
151 error("A principal name must be specified after -a");
158 error("A principal name must be specified after -d");
169 error("An etype must be specified after -e");
177 error(args[i] + " is not a valid etype");
180 error(args[i] + " is not valid after -" + action);
185 error("A KVNO must be specified after -n");
193 error(args[i] + " is not a valid KVNO");
198 error("A keytab name must be specified after -k");
217 error("Unknow
420 void error(String... errors) { method in class:Ktab
[all...]
/openjdk7/jdk/src/windows/native/sun/nio/ch/
H A DWindowsAsynchronousFileChannelImpl.c55 int error = GetLastError(); local
56 if (error == ERROR_IO_PENDING)
58 if (error == ERROR_HANDLE_EOF)
85 int error = GetLastError(); local
86 if (error == ERROR_IO_PENDING)
114 int error = GetLastError(); local
115 if (error == ERROR_IO_PENDING) {
H A DWindowsAsynchronousServerSocketChannelImpl.c112 int error = WSAGetLastError(); local
113 if (error == ERROR_IO_PENDING) {
/openjdk7/jdk/test/com/sun/net/httpserver/
H A DTest14.java106 error = !output.equals (test_output);
109 if (error ) {
110 throw new RuntimeException ("test failed error");
116 public static boolean error = false; field in class:Test14
/openjdk7/jdk/test/com/sun/net/httpserver/bugs/
H A DB6373555.java45 private static volatile boolean error = false; field in class:B6373555
64 if (error) {
65 throw new Exception ("error in test");
76 if (error) {
77 throw new Exception ("error in test");
80 throw new Exception ("error in test: timed out");
118 error = true;
130 error = true;
/openjdk7/jdk/test/java/beans/Introspector/
H A DTest4619536.java39 error(ipd, "A.foo should be String type");
43 error(pd, "B.foo should not be an indexed property");
46 error(pd, "B.foo should be Date type");
50 error(pd, "Child.foo should not be an indexed property");
54 error(pd, "Classic.foo should not be an indexed property");
58 error(pd, "Index.foo should have ipd values");
61 error(ipd, "Index.foo should not have pd values");
65 error(ipd, "All.foo should have all pd/ipd values");
68 error(ipd, "All.foo pdType should equal ipdType");
72 error(ip
115 public static void error(PropertyDescriptor pd, String message) { method in class:Test4619536
[all...]
/openjdk7/jdk/test/sun/tools/jhat/
H A DHatRun.java96 private MyInputStream error; field in class:HatRun
137 error = new MyInputStream("Error Stream", p.getErrorStream());
145 error.dump(System.out);
232 return output.contains(pattern) || error.contains(pattern);
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DMessageRetriever.java105 * Print error message, increment error count.
115 * Print error message, increment error count.
162 * Print error message, increment error count.
168 public void error(SourcePosition pos, String key, Object... args) { method in class:MessageRetriever
173 * Print error message, increment error count.
178 public void error(Strin method in class:MessageRetriever
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DAbstractLog.java39 * A base class for error logs. Reports errors and warnings, and
40 * keeps track of error numbers and positions.
78 /** Report an error, unless another error was already reported at same
80 * @param key The key for the localized error message.
81 * @param args Fields of the error message.
83 public void error(String key, Object ... args) { method in class:AbstractLog
84 report(diags.error(source, null, key, args));
87 /** Report an error, unless another error wa
93 public void error(DiagnosticPosition pos, String key, Object ... args) { method in class:AbstractLog
104 public void error(DiagnosticFlag flag, DiagnosticPosition pos, String key, Object ... args) { method in class:AbstractLog
116 public void error(int pos, String key, Object ... args) { method in class:AbstractLog
127 public void error(DiagnosticFlag flag, int pos, String key, Object ... args) { method in class:AbstractLog
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javah/
H A DUtil.java40 * Messages, verbose and error handling support.
43 * error -- User did something wrong
142 public void error(String key, Object... args) throws Exit { method in class:Util

Completed in 117 milliseconds

1234567891011>>