Searched refs:error (Results 226 - 250 of 1265) sorted by relevance

1234567891011>>

/openjdk10/jdk/test/com/sun/net/httpserver/bugs/
H A DB6526158.java74 if (error) {
79 public static boolean error = false; field in class:B6526158
91 error = true;
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");
/openjdk10/jdk/src/jdk.rmic/share/classes/sun/tools/tree/
H A DNode.java69 // An error was already reported
84 env.error(where, "explicit.cast.needed", opNames[op], e.type, t);
88 env.error(where, "class.not.found", ee.name, opNames[op]);
92 env.error(where, "incompatible.type", opNames[op], e.type, t);
/openjdk10/jdk/test/java/net/URLClassLoader/
H A DClassLoad.java42 boolean error = true;
67 error = false;
71 if (error)
/openjdk10/jdk/test/java/net/URL/
H A DGetContent.java55 // client get error and re-establish connection
72 boolean error = true;
83 error = false;
86 if (error)
/openjdk10/jdk/test/java/text/Format/DateFormat/
H A DBug6609750.java35 boolean error = false;
67 error = true;
77 if (error) {
78 throw new RuntimeException("SimpleDateFormat.format() error.");
/openjdk10/jdk/test/sun/net/www/protocol/http/
H A DUserAgent.java49 error ("Got unexpected User-Agent: " + v);
60 error (e.toString());
79 synchronized void error (String s) { method in class:Server
/openjdk10/langtools/test/tools/javac/api/file/
H A DSJFM_AsPath.java81 error("expected exception not thrown: " + UnsupportedOperationException.class.getName());
84 error("Unexpected path found: " + path + "; expected one of " + ref);
89 error("unexpected exception thrown: " + e);
/openjdk10/langtools/test/tools/javac/api/ToolProvider/
H A DHelloWorldTest.java69 error(">>> " + line);
73 error("verbose output not as expected");
80 void error(String msg) { method in class:HelloWorldTest
/openjdk10/langtools/test/tools/javac/linenumbers/
H A DNestedLineNumberTest.java24 error(String.format("LineNumberTable contains wrong number of entries - expected %d, found %d", 1, found));
29 error(String.format("LineNumberTable contains wrong line number - expected %d, found %d", 54, line));
48 static void error(String msg) { method in class:NestedLineNumberTest
/openjdk10/langtools/test/tools/javap/
H A DStackMapTableTest.java47 error("double blank line found");
57 error("expected text not found");
74 void error(String msg) { method in class:StackMapTableTest
H A DT6824493.java82 error("unexpected return code from javap: " + rc);
90 error("Not found: " + e);
94 void error(String msg) { method in class:T6824493
/openjdk10/langtools/test/tools/javac/doclint/
H A DDocLintFormatTest.java87 error("All output unexpected.");
92 error("expected output not found: " + e);
98 void error(String message) { method in class:DocLintFormatTest
/openjdk10/langtools/test/tools/javac/varargs/warning/
H A DWarn4.java54 final static Warning[] error = null; field in class:Warn4
159 new Warning[][] {none, none, none, none, error}),
161 new Warning[][] {both, both, error, both, error}),
165 new Warning[][] {error, error, error, both, error}),
167 new Warning[][] {error, error, erro
[all...]
/openjdk10/langtools/test/tools/sjavac/
H A DIgnoreSymbolFile.java62 error("compilation succeeded unexpectedly");
70 error("compilation failed unexpectedly: rc=" + rc2);
95 void error(String msg) { method in class:IgnoreSymbolFile
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/
H A DURIUtils.java72 return error(string, k);
81 return error(string, k);
86 return error(string, k);
118 return error(string, k);
123 return error(string, k + 1);
144 return error(string, k);
171 return error(string, k);
176 return error(string, k);
182 return error(string, k);
187 return error(strin
283 private static String error(final String string, final int index) { method in class:URIUtils
[all...]
/openjdk10/jdk/test/javax/management/loading/
H A DMletParserLocaleTest.java46 boolean error = false;
88 error = true;
107 if (error) System.exit(1);
/openjdk10/hotspot/src/share/vm/utilities/
H A Djson.cpp54 error(INTERNAL_ERROR, "JSON parser was called with a string that was NULL.");
83 error(SYNTAX_ERROR, "Only one top level object/array is allowed.");
97 error(SYNTAX_ERROR, "Only one top level object/array is allowed.");
105 error(SYNTAX_ERROR, "EOS was encountered before any json declarations");
109 error(SYNTAX_ERROR, "Json must start with an object or an array.");
139 error(SYNTAX_ERROR, "EOS was encountered when expecting a json value.");
143 error(SYNTAX_ERROR, "Could not parse as a json value (did you forget to quote your strings?).");
150 // Otherwise it is an internal error
156 // Check that we are not called in error
169 error(SYNTAX_ERRO
642 void JSON::error(JSON_ERROR e, const char* format, ...) { function in class:JSON
[all...]
/openjdk10/jdk/src/jdk.jdwp.agent/share/native/libjdwp/
H A DeventFilter.c187 jvmtiError error = JVMTI_ERROR_NONE; local
224 error = stepControl_endStep(thread);
225 if (error == JVMTI_ERROR_NONE) {
232 if (error == JVMTI_ERROR_NONE) {
236 return error;
298 /* Return NULL if static or if an error occurs */
306 jvmtiError error; local
339 error = methodModifiers(method, &modifiers);
341 /* fail if error or static (0x8) */
342 if (error
527 jvmtiError error = JVMTI_FUNC_PTR(gdata->jvmti,GetSourceFileName) local
922 jvmtiError error; local
1022 jvmtiError error = JVMTI_ERROR_NONE; local
1052 jvmtiError error = JVMTI_ERROR_NONE; local
1126 jvmtiError error = JVMTI_ERROR_NONE; local
1157 jvmtiError error = JVMTI_ERROR_NONE; local
1228 jvmtiError error = JVMTI_ERROR_NONE; local
1284 jvmtiError error = JVMTI_ERROR_NONE; local
[all...]
/openjdk10/jdk/src/java.desktop/unix/classes/sun/java2d/xr/
H A DXRDrawLine.java53 int error;
104 error = -(errminor / 2);
111 error += ysteps * ax * 2;
119 error += xsteps * ay * 2;
121 error += errmajor;
135 lineToRects(rectBuffer, steps, error, errmajor, errminor, xStep,
138 lineToPoints(rectBuffer, steps, error, errmajor, errminor, xStep,
144 int error, int errmajor, int errminor, int xStep, int yStep,
152 if (error < 0) {
153 error
143 lineToPoints(GrowableRectArray rectBuffer, int steps, int error, int errmajor, int errminor, int xStep, int yStep, int orthogonalXStep, int orthogonalYStep) argument
164 lineToRects(GrowableRectArray rectBuffer, int steps, int error, int errmajor, int errminor, int xStep, int yStep, int orthogonalXStep, int orthogonalYStep) argument
[all...]
/openjdk10/jdk/src/java.base/windows/native/libnio/ch/
H A DFileDispatcherImpl.c60 int error = GetLastError(); local
61 if (error == ERROR_BROKEN_PIPE) {
64 if (error == ERROR_NO_DATA) {
108 int error = GetLastError(); local
109 if (error == ERROR_BROKEN_PIPE) {
112 if (error == ERROR_NO_DATA) {
155 int error = GetLastError(); local
156 if (error == ERROR_BROKEN_PIPE) {
159 if (error == ERROR_NO_DATA) {
162 if (error !
311 int error = GetLastError(); local
383 int error = GetLastError(); local
421 int error = GetLastError(); local
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/sun/java2d/opengl/
H A DOGLRenderQueue.java158 private Error error; field in class:OGLRenderQueue.QueueFlusher
183 // re-throw any error that may have occurred during the flush
184 if (error != null) {
185 throw error;
226 error = null;
234 error = e;
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/reader/
H A DModelChecker.java68 errorReceiver.error(p1.locator,Messages.PROPERTY_CLASS_IS_RESERVED.format());
77 errorReceiver.error(p1.locator, Messages.DUPLICATE_ELEMENT.format(n));
78 errorReceiver.error(p2.locator, Messages.ERR_RELEVANT_LOCATION.format());
97 errorReceiver.error(p1.locator,Messages.DUPLICATE_PROPERTY.format(p1.getName(true)));
98 errorReceiver.error(p2.locator,Messages.ERR_RELEVANT_LOCATION.format());
/openjdk10/jdk/test/com/sun/net/httpserver/
H A DTest2.java73 if (error ) {
74 throw new RuntimeException ("test failed error");
86 public static boolean error = false; field in class:Test2
93 Test2.error = true;
118 error = true;
121 error = true;
/openjdk10/jdk/src/jdk.rmic/share/classes/sun/rmi/rmic/newrmic/
H A DMain.java52 * A Main instance contains the stream to output error messages and
110 /** stream to output error messages and other diagnostics to */
113 /** name of this program, to use in error messages */
126 * stream. The specified program name is used in error messages.
138 * true if successful, or false if an error occurred.
154 return false; // terminate if error occurred
188 * Prints an error message to the output stream of this Main
193 public void error(String msg, String... args) { method in class:Main
205 error("rmic.usage", program);
211 * if an error occurre
[all...]

Completed in 330 milliseconds

1234567891011>>