Searched refs:msg (Results 101 - 125 of 1315) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/javax/naming/directory/
H A DInvalidSearchControlsException.java56 * @param msg Detail about this exception. Can be null.
59 public InvalidSearchControlsException(String msg) { argument
60 super(msg);
H A DInvalidSearchFilterException.java56 * @param msg Detail about this exception. Can be null.
59 public InvalidSearchFilterException(String msg) { argument
60 super(msg);
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DSnmpUnknownAccContrModelException.java42 * @param msg The exception msg to display.
44 public SnmpUnknownAccContrModelException(String msg) { argument
45 super(msg);
H A DSnmpUnknownMsgProcModelException.java40 * @param msg The exception msg to display.
42 public SnmpUnknownMsgProcModelException(String msg) { argument
43 super(msg);
H A DSnmpUnknownSecModelException.java40 * @param msg The exception msg to display.
42 public SnmpUnknownSecModelException(String msg) { argument
43 super(msg);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DServiceConfigurationError.java48 public ServiceConfigurationError(String msg) { argument
49 super(msg);
/openjdk7/langtools/src/share/classes/com/sun/tools/javah/
H A DInternalError.java36 InternalError(String msg, Throwable cause) { argument
37 super("Internal error: " + msg);
/openjdk7/jaxp/src/javax/xml/transform/
H A DTransformerConfigurationException.java45 * @param msg The error message for the exception.
47 public TransformerConfigurationException(String msg) { argument
48 super(msg);
68 * @param msg The detail message.
70 public TransformerConfigurationException(String msg, Throwable e) { argument
71 super(msg, e);
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/daemon/
H A DCommunicationException.java58 public CommunicationException(Throwable target, String msg) { argument
59 super(msg);
66 public CommunicationException(String msg) { argument
67 super(msg);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/
H A DClientTransportException.java36 public ClientTransportException(Localizable msg) { argument
37 super(msg);
40 public ClientTransportException(Localizable msg, Throwable cause) { argument
41 super(msg, cause);
/openjdk7/jdk/test/java/rmi/transport/dgcDeadLock/
H A DTest.java27 String echo(String msg) throws RemoteException; argument
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftTuning/
H A DLoad1.java58 int[] msg = new int[24+3*128];
62 msg[ox++] = head[i];
64 msg[ox++] = name[i];
66 msg[ox++] = i;
67 msg[ox++] = 64;
68 msg[ox++] = 0;
72 int x = msg[1] & 0xFF; // 7E
73 x = x ^ (msg[2] & 0xFF); // <device ID>
74 x = x ^ (msg[4] & 0xFF); // nn
75 x = x ^ (msg[
[all...]
H A DLoad4.java58 int[] msg = new int[25+3*128];
62 msg[ox++] = head[i];
64 msg[ox++] = name[i];
66 msg[ox++] = i;
67 msg[ox++] = 64;
68 msg[ox++] = 0;
72 int x = msg[1] & 0xFF;
73 for (int i = 2; i < msg.length - 2; i++)
74 x = x ^ (msg[i] & 0xFF);
75 msg[o
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DJAXPValidationMessageFormatter.java58 SecuritySupport.getResourceBundle("com.sun.org.apache.xerces.internal.impl.msg.JAXPValidationMessages", locale);
62 SecuritySupport.getResourceBundle("com.sun.org.apache.xerces.internal.impl.msg.JAXPValidationMessages");
66 String msg;
68 msg = resourceBundle.getString(key);
71 msg = java.text.MessageFormat.format(msg, arguments);
74 msg = resourceBundle.getString("FormatFailed");
75 msg += " " + resourceBundle.getString(key);
82 msg = resourceBundle.getString("BadMessageKey");
83 throw new MissingResourceException(key, msg, ke
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DDatatypeMessageFormatter.java36 private static final String BASE_NAME = "com.sun.org.apache.xerces.internal.impl.msg.DatatypeMessages";
68 String msg;
70 msg = resourceBundle.getString(key);
73 msg = java.text.MessageFormat.format(msg, arguments);
76 msg = resourceBundle.getString("FormatFailed");
77 msg += " " + resourceBundle.getString(key);
84 msg = resourceBundle.getString("BadMessageKey");
85 throw new MissingResourceException(key, msg, key);
89 if (msg
[all...]
H A DSAXMessageFormatter.java58 SecuritySupport.getResourceBundle("com.sun.org.apache.xerces.internal.impl.msg.SAXMessages", locale);
62 SecuritySupport.getResourceBundle("com.sun.org.apache.xerces.internal.impl.msg.SAXMessages");
66 String msg;
68 msg = resourceBundle.getString(key);
71 msg = java.text.MessageFormat.format(msg, arguments);
74 msg = resourceBundle.getString("FormatFailed");
75 msg += " " + resourceBundle.getString(key);
82 msg = resourceBundle.getString("BadMessageKey");
83 throw new MissingResourceException(key, msg, ke
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/dns/
H A DHeader.java68 * Does not modify or store a reference to the msg array.
70 Header(byte[] msg, int msgLen) throws NamingException { argument
71 decode(msg, msgLen);
76 * reference to the msg array.
78 private void decode(byte[] msg, int msgLen) throws NamingException { argument
81 int pos = 0; // current offset into msg
88 xid = getShort(msg, pos);
92 short flags = (short) getShort(msg, pos);
103 numQuestions = getShort(msg, pos);
105 numAnswers = getShort(msg, po
122 getShort(byte[] msg, int pos) argument
[all...]
/openjdk7/jdk/src/share/native/com/sun/media/sound/
H A DUtilities.c38 void ThrowJavaMessageException(JNIEnv *e, const char *exClass, const char *msg) { argument
41 ERROR1("throw exception: %s\n", msg);
48 (*e)->ThrowNew(e, newExcCls, msg);
/openjdk7/jdk/src/share/native/sun/awt/debug/
H A Ddebug_assert.c36 void DAssert_Impl(const char *msg, const char * filename, int linenumber) { argument
38 (*PfnAssertCallback)(msg, filename, linenumber);
40 fprintf(stderr, "Assert fail in file %s, line %d\n\t%s\n", filename, linenumber, msg);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/message/stream/
H A DInputStreamMessage.java45 public final InputStream msg; field in class:InputStreamMessage
56 * @param msg
60 public InputStreamMessage(Packet properties, String contentType, InputStream msg) { argument
64 this.msg = msg;
79 * @param msg
84 String contentType, InputStream msg) {
88 this.msg = msg;
83 InputStreamMessage(Packet properties, AttachmentSet attachments, String contentType, InputStream msg) argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/msg/
H A DXMLMessageFormatter.java21 package com.sun.org.apache.xerces.internal.impl.msg;
74 fResourceBundle = SecuritySupport.getResourceBundle("com.sun.org.apache.xerces.internal.impl.msg.XMLMessages", locale);
79 fResourceBundle = SecuritySupport.getResourceBundle("com.sun.org.apache.xerces.internal.impl.msg.XMLMessages");
83 String msg;
85 msg = fResourceBundle.getString(key);
88 msg = java.text.MessageFormat.format(msg, arguments);
91 msg = fResourceBundle.getString("FormatFailed");
92 msg += " " + fResourceBundle.getString(key);
99 msg
[all...]
H A DXMLMessageFormatter_de.java21 package com.sun.org.apache.xerces.internal.impl.msg;
76 fResourceBundle = SecuritySupport.getResourceBundle("com.sun.org.apache.xerces.internal.impl.msg.XMLMessages", locale);
81 fResourceBundle = SecuritySupport.getResourceBundle("com.sun.org.apache.xerces.internal.impl.msg.XMLMessages");
85 String msg;
87 msg = fResourceBundle.getString(key);
90 msg = java.text.MessageFormat.format(msg, arguments);
93 msg = fResourceBundle.getString("FormatFailed");
94 msg += " " + fResourceBundle.getString(key);
101 msg
[all...]
H A DXMLMessageFormatter_es.java21 package com.sun.org.apache.xerces.internal.impl.msg;
76 fResourceBundle = SecuritySupport.getResourceBundle("com.sun.org.apache.xerces.internal.impl.msg.XMLMessages", locale);
81 fResourceBundle = SecuritySupport.getResourceBundle("com.sun.org.apache.xerces.internal.impl.msg.XMLMessages");
85 String msg;
87 msg = fResourceBundle.getString(key);
90 msg = java.text.MessageFormat.format(msg, arguments);
93 msg = fResourceBundle.getString("FormatFailed");
94 msg += " " + fResourceBundle.getString(key);
101 msg
[all...]
H A DXMLMessageFormatter_fr.java21 package com.sun.org.apache.xerces.internal.impl.msg;
76 fResourceBundle = SecuritySupport.getResourceBundle("com.sun.org.apache.xerces.internal.impl.msg.XMLMessages", locale);
81 fResourceBundle = SecuritySupport.getResourceBundle("com.sun.org.apache.xerces.internal.impl.msg.XMLMessages");
85 String msg;
87 msg = fResourceBundle.getString(key);
90 msg = java.text.MessageFormat.format(msg, arguments);
93 msg = fResourceBundle.getString("FormatFailed");
94 msg += " " + fResourceBundle.getString(key);
101 msg
[all...]
H A DXMLMessageFormatter_it.java21 package com.sun.org.apache.xerces.internal.impl.msg;
76 fResourceBundle = SecuritySupport.getResourceBundle("com.sun.org.apache.xerces.internal.impl.msg.XMLMessages", locale);
81 fResourceBundle = SecuritySupport.getResourceBundle("com.sun.org.apache.xerces.internal.impl.msg.XMLMessages");
85 String msg;
87 msg = fResourceBundle.getString(key);
90 msg = java.text.MessageFormat.format(msg, arguments);
93 msg = fResourceBundle.getString("FormatFailed");
94 msg += " " + fResourceBundle.getString(key);
101 msg
[all...]

Completed in 136 milliseconds

1234567891011>>