Searched defs:error (Results 326 - 350 of 394) sorted by relevance

<<111213141516

/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DParser.java138 * Strict or not, in either case an error will be recorded.
279 error("ioexception");
284 // no newline, so signal an error
285 error("eof.comment");
308 * An error has occurred.
314 System.out.println("line " + ln + ": error: " + msg);
358 // was getting lost when we did error recovery.
371 * Invoke the error handler.
373 protected void error(String err, String arg1, String arg2, method in class:Parser
378 protected void error(Strin method in class:Parser
381 protected void error(String err, String arg1) { method in class:Parser
384 protected void error(String err) { method in class:Parser
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/wsdl/
H A DWSDLModelerBase.java120 error(info.bindingOperation.getInput(), ModelerMessages.WSDLMODELER_INVALID_BINDING_OPERATION_INPUT_MISSING_SOAP_BODY(info.bindingOperation.getName()));
152 error(info.bindingOperation.getOutput(), ModelerMessages.WSDLMODELER_INVALID_BINDING_OPERATION_OUTPUT_MISSING_SOAP_BODY(info.bindingOperation.getName()));
192 error(message, ModelerMessages.WSDLMODELER_ERROR_PARTS_NOT_FOUND(part, message.getName()));
267 error(mimeContent, ModelerMessages.WSDLMODELER_ERROR_PARTS_NOT_FOUND(mimeContentPartName, message.getName()));
336 error(mimeContent, ModelerMessages.MIMEMODELER_INVALID_MIME_CONTENT_MISSING_TYPE_ATTRIBUTE(info.operation.getName().getLocalPart()));
382 error(body, ModelerMessages.WSDLMODELER_INVALID_BINDING_OPERATION_INPUT_SOAP_BODY_MISSING_NAMESPACE(info.bindingOperation.getName()));
395 error(body, ModelerMessages.WSDLMODELER_INVALID_BINDING_OPERATION_OUTPUT_SOAP_BODY_MISSING_NAMESPACE(info.bindingOperation.getName()));
449 error(bindingFault, ModelerMessages.WSDLMODELER_INVALID_BINDING_FAULT_NOT_UNIQUE(bindingFault.getName(),
458 error(bindingFault, ModelerMessages.WSDLMODELER_INVALID_BINDING_FAULT_NOT_FOUND(bindingFault.getName(),
469 error(bindingFaul
709 protected void error(Entity entity, String message){ method in class:WSDLModelerBase
[all...]
/openjdk7/jdk/src/windows/native/java/io/
H A DWinNTFileSystem_md.c90 DWORD error; local
167 error = GetLastError();
169 SetLastError(error);
182 DWORD error; local
194 error = GetLastError();
196 SetLastError(error);
520 /* The error is "share violation", which means the file/dir
559 DWORD error = GetLastError(); local
560 if ((error != ERROR_FILE_EXISTS) && (error !
[all...]
H A Dio_util_md.c272 int error = GetLastError(); local
273 if (error == ERROR_TOO_MANY_OPEN_FILES) {
376 BOOL error = FALSE; /* Error holder */ local
385 error = GetNumberOfConsoleInputEvents(han, &numEvents);
386 if (error == 0) {
403 error = PeekConsoleInput(han, lpBuffer, numEvents, &numEventsRead);
404 if (error == 0) {
431 * case. So we only signal an error if the error is *not* "access
445 * On the other hand, on Win95, it returns without error
496 int error = GetLastError(); local
[all...]
/openjdk7/jdk/src/windows/native/sun/nio/ch/
H A DNet.c222 int error = WSAGetLastError(); local
223 if (error == WSAEINVAL) {
226 NET_ThrowNew(env, error, "getsockname");
253 int error = WSAGetLastError(); local
254 if (error == WSAEINVAL) {
257 NET_ThrowNew(env, error, "getsockname");
296 * returns a protocol error. NET_GetSockOpt handles this and uses
/openjdk7/jdk/src/windows/native/sun/tools/attach/
H A DWindowsVirtualMachine.c203 /* include the last error in the default detail message */
471 // This error will occur when attaching to a process belonging to
495 DWORD retLength, error; local
527 error = GetLastError();
529 SetLastError(error);
541 error = 0;
555 error = GetLastError();
558 error = ERROR_ACCESS_DENIED;
571 error = GetLastError();
576 * Close token and restore error
[all...]
/openjdk7/jdk/src/windows/transport/socket/
H A Dsocket_md.c35 * throw for the error, and the error text.
83 { WSANO_RECOVERY, "This is a nonrecoverable error" },
157 * Check if there was an error - this is preferable to check if
267 * throws to returns of SYS_ERR; we should improve the error codes
386 int error = WSAGetLastError(); local
393 if (error == winsock_errors[i].errCode) {
402 sprintf(buf, "winsock error %d", error);
/openjdk7/jdk/src/share/demo/jvmti/mtrace/
H A Dmtrace.c36 * input validation and proper error handling, might not be present in
135 jvmtiError error; local
137 error = (*jvmti)->RawMonitorEnter(jvmti, gdata->lock);
138 check_jvmti_error(jvmti, error, "Cannot enter with raw monitor");
145 jvmtiError error; local
147 error = (*jvmti)->RawMonitorExit(jvmti, gdata->lock);
148 check_jvmti_error(jvmti, error, "Cannot exit with raw monitor");
156 jvmtiError error; local
165 error = (*jvmti)->GetThreadInfo(jvmti, thread, &info);
166 check_jvmti_error(jvmti, error, "Canno
360 jvmtiError error; local
704 jvmtiError error; local
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jar/
H A DMain.java196 // error("Warning: -v option ignored");
238 throw new IOException(getMsg("error.write.file"));
294 fatalError(formatMsg("error.cant.open", e.getMessage()));
365 error(formatMsg("error.illegal.option",
376 error(getMsg("error.bad.option"));
409 error(getMsg("error.bad.cflag"));
417 error(getMs
1168 protected void error(String s) { method in class:Main
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DEnvironment.java211 * general to set the error location to the exact position of a component
212 * that is in error, so an error message must refer to the entire qualified
219 * All error messages are thus poorly localized. These checks should be
242 // Reported error location may be imprecise
244 error(where, "cant.access.class", def);
249 error(where, "ambig.class", ee.name1, ee.name2);
257 env.error(where, "class.and.package",
261 env.error(where, "io.exception", "package check");
263 // This error messag
874 public void error(Object source, long where, String err, Object arg1, Object arg2, Object arg3) { method in class:Environment
877 public final void error(long where, String err, Object arg1, Object arg2, Object arg3) { method in class:Environment
880 public final void error(long where, String err, Object arg1, Object arg2) { method in class:Environment
883 public final void error(long where, String err, Object arg1) { method in class:Environment
886 public final void error(long where, String err) { method in class:Environment
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/javac/
H A DBatchEnvironment.java47 * The stream where error message are printed.
112 * writes out error messages
345 // the error once, and outside of any particular file.
355 error(0, "package.not.found.strong", idJavaLang);
361 error(0, "io.exception.package", idJavaLang);
377 // // It is a package and a class. Emit the error.
378 // error(0, "package.class.conflict.strong",
577 error(0, "class.format", file.getPath(), e.getMessage());
584 error(0, "truncated.class", file.getPath());
673 error(
1350 public void error(Object source, long where, String err, Object arg1, Object arg2, Object arg3) { method in class:BatchEnvironment
[all...]
/openjdk7/jdk/test/java/text/Bidi/
H A DBidiConformance.java39 private static boolean error = false; field in class:BidiConformance
56 if (error) {
1339 error = true;
1469 error = true;
/openjdk7/jdk/src/solaris/classes/sun/nio/cs/ext/
H A DCOMPOUND_TEXT_Decoder.java102 error(ERR_LATIN1);
184 error(ERR_ILLSTATE);
527 error(ERR_ILLSTATE);
553 error(ERR_ILLSTATE);
623 error(ERR_ILLSTATE);
643 private void error(String msg) { method in class:COMPOUND_TEXT_Decoder
677 error(ERR_LATIN1);
/openjdk7/langtools/test/tools/javac/api/
H A DTestClientCodeWrapper.java153 error("compilation " + (ok ? "succeeded" : "failed") + " unexpectedly");
164 error("Unexpected exception: " + cause);
168 error("Unexpected exception: " + e);
212 /** Check if two values are .equal, and report an error if not. */
215 error("Unexpected value for " + label + ": " + found + "; expected: " + expect);
218 /** Report an error. */
219 void error(String msg) { method in class:TestClientCodeWrapper
233 /** Throw an intentional error if the method has a given name. */
/openjdk7/langtools/test/tools/javac/failover/
H A DCheckAttributedTree.java181 error("File not found: " + file);
223 error("File " + file + " excluded");
243 error("Error attributing " + file + "\n" + e.getMessage());
246 error("Error reading " + file + ": " + e);
252 error("File " + file + " ignored");
307 * Report an error. When the program is complete, the program will either
309 * @param msg the error message
311 void error(String msg) { method in class:CheckAttributedTree
390 error(label + self.toString() + " encl: " + encl.toString() + " in file: " + sourcefile + " " + self.tree);
539 * down list for selecting error condition
[all...]
/openjdk7/langtools/test/tools/javap/classfile/6888367/
H A DT6888367.java130 error("@Sig annotation found but not Signature attribute");
132 error("Signature attribute found but no @Sig annotation");
191 error("unexpected values found");
195 void error(String msg) { method in class:T6888367
196 System.err.println("error: " + msg);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DParser.java945 * Unsupported elements do not directly generate an error. We have to wait
1195 * Common error/warning message handler
1197 public void reportError(final int category, final ErrorMsg error) { argument
1202 _errors.addElement(error);
1207 _errors.addElement(error);
1210 // Fatal error in the stylesheet input (parsing or content)
1212 _errors.addElement(error);
1215 // Other error in the stylesheet input (parsing or content)
1217 _errors.addElement(error);
1220 // Other error i
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DDOMNormalizer.java127 /** error handler. may be null. */
203 // report fatal error on DOM Level 1 nodes
380 // set error node in the dom error wrapper
381 // so if error occurs we can report an error node
394 // set error node in the dom error wrapper
395 // so if error occurs we can report an error nod
1080 isCDataWF(DOMErrorHandler errorHandler, DOMErrorImpl error, DOMLocatorImpl locator, String datavalue, boolean isXML11Version) argument
1180 isXMLCharWF(DOMErrorHandler errorHandler, DOMErrorImpl error, DOMLocatorImpl locator, String datavalue, boolean isXML11Version) argument
1243 isCommentWF(DOMErrorHandler errorHandler, DOMErrorImpl error, DOMLocatorImpl locator, String datavalue, boolean isXML11Version) argument
1316 isAttrValueWF(DOMErrorHandler errorHandler, DOMErrorImpl error, DOMLocatorImpl locator, NamedNodeMap attributes, Attr a, String value, boolean xml11Version) argument
1364 reportDOMError(DOMErrorHandler errorHandler, DOMErrorImpl error, DOMLocatorImpl locator, String message, short severity, String type ) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/sax2dtm/
H A DSAX2DTM.java464 * @return null if this model doesn't respond to SAX error events.
707 error(XMLMessages.createXMLMessage(XMLErrorResources.ER_METHOD_NOT_SUPPORTED, null));//"Not yet supported!");
801 // (code error rather than user error).
948 // %REVIEW% Wrong error message, but I've been told we're trying
951 error(XMLMessages.createXMLMessage(XMLErrorResources.ER_NO_DTMIDS_AVAIL, null));//"No more DTM IDs are available";
1227 error(XMLMessages.createXMLMessage(XMLErrorResources.ER_METHOD_NOT_SUPPORTED, null));//"Not yet supported!");
2195 // %REVIEW% Is there anyway to get the JAXP error listener here?
2200 * Receive notification of a recoverable parser error.
2204 * for each error, suc
2213 public void error(SAXParseException e) throws SAXException method in class:SAX2DTM
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DEmptySerializer.java670 * @see org.xml.sax.ErrorHandler#error(org.xml.sax.SAXParseException)
672 public void error(SAXParseException arg0) throws SAXException method in class:EmptySerializer
H A DSerializerBase.java310 * not reporting an error. Typically, the application will
1012 * @see org.xml.sax.ErrorHandler#error(SAXParseException)
1014 public void error(SAXParseException exc) throws SAXException { method in class:SerializerBase
1281 * generated an error message.
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthParser.java1279 public void error(SAXParseException e) throws SAXException { method in class:SynthParser
1281 getHandler().error(e);
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DXmlReaderContentHandler.java540 * @exception SAXException if a general SAX error occurs
631 * @exception SAXException if a general SAX error occurs
1396 * to the method <code>error</code> when the SAX parser invokes it.
1400 public void error (SAXParseException e) throws SAXParseException { method in class:XmlReaderContentHandler
/openjdk7/jdk/src/share/back/
H A DdebugInit.c127 jvmtiError error; local
128 error = JVMTI_FUNC_PTR(gdata->jvmti,SetEventNotificationMode)
130 if (error != JVMTI_ERROR_NONE) {
132 eventText(ei), jvmtiErrorText(error), error));
134 return error;
199 jvmtiError error; local
234 error = JVM_FUNC_PTR(vm,GetEnv)
236 if (error != JNI_OK) {
240 JVMTI_VERSION_1, error));
466 jvmtiError error; local
499 jvmtiError error; local
574 jdwpError error; member in struct:EnumerateArg
649 jniFatalError(JNIEnv *env, const char *msg, jvmtiError error, int exit_code) argument
686 jvmtiError error; local
1302 debugInit_exit(jvmtiError error, const char *msg) argument
[all...]
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...]

Completed in 100 milliseconds

<<111213141516