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

1234567891011>>

/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/util/
H A DServiceConfigurationError.java48 public ServiceConfigurationError(String msg) { argument
49 super(msg);
/openjdk9/jdk/src/java.desktop/share/classes/java/awt/dnd/
H A DInvalidDnDOperationException.java52 * @param msg the detail message
55 public InvalidDnDOperationException(String msg) { super(msg); } argument
/openjdk9/jdk/src/java.naming/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);
/openjdk9/jdk/src/java.sql.rowset/share/classes/javax/sql/rowset/spi/
H A DSyncFactoryException.java52 * @param msg the detail message.
54 public SyncFactoryException(String msg) { argument
55 super(msg);
/openjdk9/jdk/src/java.sql.rowset/share/classes/javax/sql/rowset/serial/
H A DSerialException.java50 * @param msg the detail message
52 public SerialException(String msg) { argument
53 super(msg);
/openjdk9/jdk/src/java.management/share/classes/javax/management/openmbean/
H A DOpenDataException.java53 * @param msg the detail message.
55 public OpenDataException(String msg) { argument
56 super(msg);
/openjdk9/nashorn/test/script/basic/
H A DNASHORN-544.js31 function AssertionError(msg) {
32 this.message = msg;
/openjdk9/langtools/src/jdk.compiler/share/classes/com/sun/tools/javah/
H A DInternalError.java36 InternalError(String msg, Throwable cause) { argument
37 super("Internal error: " + msg);
/openjdk9/jaxp/src/java.xml/share/classes/javax/xml/transform/
H A DTransformerConfigurationException.java49 * @param msg The error message for the exception.
51 public TransformerConfigurationException(String msg) { argument
52 super(msg);
72 * @param msg The detail message.
74 public TransformerConfigurationException(String msg, Throwable e) { argument
75 super(msg, e);
/openjdk9/jaxws/src/java.xml.ws/share/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);
/openjdk9/jdk/src/java.base/share/classes/jdk/internal/util/xml/
H A DXMLStreamException.java55 * @param msg the message to report
57 public XMLStreamException(String msg) { argument
58 super(msg);
75 * @param msg the message to report
77 public XMLStreamException(String msg, Throwable th) { argument
78 super(msg, th);
/openjdk9/jdk/test/java/rmi/transport/dgcDeadLock/
H A DTest.java27 String echo(String msg) throws RemoteException; argument
/openjdk9/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...]
/openjdk9/hotspot/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.common/src/jdk/vm/ci/common/
H A DJVMCIError.java39 public static RuntimeException unimplemented(String msg) { argument
40 throw new JVMCIError("unimplemented: %s", msg);
47 public static RuntimeException shouldNotReachHere(String msg) { argument
48 throw new JVMCIError("should not reach here: %s", msg);
62 * @param msg the message that will be associated with the error, in
66 public static void guarantee(boolean condition, String msg, Object... args) { argument
68 throw new JVMCIError("failed guarantee: " + msg, args);
75 * @param msg the message that will be associated with the error
77 public JVMCIError(String msg) { argument
78 super(msg);
90 JVMCIError(String msg, Object... args) argument
103 format(String msg, Object... args) argument
[all...]
/openjdk9/jaxp/src/java.xml/share/classes/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...]
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/util/
H A DSAXMessageFormatter.java59 SecuritySupport.getResourceBundle("com.sun.org.apache.xerces.internal.impl.msg.SAXMessages", locale);
63 SecuritySupport.getResourceBundle("com.sun.org.apache.xerces.internal.impl.msg.SAXMessages");
67 String msg;
69 msg = resourceBundle.getString(key);
72 msg = java.text.MessageFormat.format(msg, arguments);
75 msg = resourceBundle.getString("FormatFailed");
76 msg += " " + resourceBundle.getString(key);
83 msg = resourceBundle.getString("BadMessageKey");
84 throw new MissingResourceException(key, msg, ke
[all...]
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...]
/openjdk9/jdk/src/java.desktop/share/native/common/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);
/openjdk9/jdk/src/java.desktop/share/native/libjsound/
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);
/openjdk9/jdk/src/jdk.naming.dns/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...]
/openjdk9/jdk/test/tools/jjs/
H A Dmodulepath.js16 var msg = Hello.greet(); variable
17 if (msg != "Hello World!") {
20 print(msg);
/openjdk9/test/lib/jdk/test/lib/
H A DAsserts.java66 * @param msg A description of the assumption; {@code null} for a default message.
69 public static <T extends Comparable<T>> void assertLT(T lhs, T rhs, String msg) { argument
70 assertLessThan(lhs, rhs, msg);
91 * @param msg A description of the assumption; {@code null} for a default message.
94 public static <T extends Comparable<T>>void assertLessThan(T lhs, T rhs, String msg) { argument
95 if (!(compare(lhs, rhs, msg) < 0)) {
96 msg = Objects.toString(msg, "assertLessThan")
99 fail(msg);
121 * @param msg
124 assertLTE(T lhs, T rhs, String msg) argument
149 assertLessThanOrEqual(T lhs, T rhs, String msg) argument
177 assertEQ(Object lhs, Object rhs, String msg) argument
200 assertEquals(Object lhs, Object rhs, String msg) argument
228 assertSame(Object lhs, Object rhs, String msg) argument
258 assertGTE(T lhs, T rhs, String msg) argument
283 assertGreaterThanOrEqual(T lhs, T rhs, String msg) argument
313 assertGT(T lhs, T rhs, String msg) argument
338 assertGreaterThan(T lhs, T rhs, String msg) argument
366 assertNE(Object lhs, Object rhs, String msg) argument
389 assertNotEquals(Object lhs, Object rhs, String msg) argument
415 assertNull(Object o, String msg) argument
436 assertNotNull(Object o, String msg) argument
457 assertFalse(boolean value, String msg) argument
482 assertTrue(boolean value, String msg) argument
490 compare(T lhs, T rhs, String msg) argument
508 assertStringsEqual(String str1, String str2, String msg) argument
[all...]
/openjdk9/jaxp/test/javax/xml/jaxp/libs/jdk/testlibrary/
H A DAsserts.java70 * @param msg A description of the assumption; {@code null} for a default message.
73 public static <T extends Comparable<T>> void assertLT(T lhs, T rhs, String msg) { argument
74 assertLessThan(lhs, rhs, msg);
95 * @param msg A description of the assumption; {@code null} for a default message.
98 public static <T extends Comparable<T>>void assertLessThan(T lhs, T rhs, String msg) { argument
99 if (!(compare(lhs, rhs, msg) < 0)) {
100 msg = Objects.toString(msg, "assertLessThan")
103 fail(msg);
125 * @param msg
128 assertLTE(T lhs, T rhs, String msg) argument
153 assertLessThanOrEqual(T lhs, T rhs, String msg) argument
181 assertEQ(Object lhs, Object rhs, String msg) argument
204 assertEquals(Object lhs, Object rhs, String msg) argument
232 assertSame(Object lhs, Object rhs, String msg) argument
262 assertGTE(T lhs, T rhs, String msg) argument
287 assertGreaterThanOrEqual(T lhs, T rhs, String msg) argument
317 assertGT(T lhs, T rhs, String msg) argument
342 assertGreaterThan(T lhs, T rhs, String msg) argument
370 assertNE(Object lhs, Object rhs, String msg) argument
393 assertNotEquals(Object lhs, Object rhs, String msg) argument
419 assertNull(Object o, String msg) argument
440 assertNotNull(Object o, String msg) argument
461 assertFalse(boolean value, String msg) argument
486 assertTrue(boolean value, String msg) argument
494 compare(T lhs, T rhs, String msg) argument
[all...]
/openjdk9/jdk/test/lib/testlibrary/jdk/testlibrary/
H A DAsserts.java70 * @param msg A description of the assumption; {@code null} for a default message.
73 public static <T extends Comparable<T>> void assertLT(T lhs, T rhs, String msg) { argument
74 assertLessThan(lhs, rhs, msg);
95 * @param msg A description of the assumption; {@code null} for a default message.
98 public static <T extends Comparable<T>>void assertLessThan(T lhs, T rhs, String msg) { argument
99 if (!(compare(lhs, rhs, msg) < 0)) {
100 msg = Objects.toString(msg, "assertLessThan")
103 fail(msg);
125 * @param msg
128 assertLTE(T lhs, T rhs, String msg) argument
153 assertLessThanOrEqual(T lhs, T rhs, String msg) argument
181 assertEQ(Object lhs, Object rhs, String msg) argument
204 assertEquals(Object lhs, Object rhs, String msg) argument
232 assertSame(Object lhs, Object rhs, String msg) argument
262 assertGTE(T lhs, T rhs, String msg) argument
287 assertGreaterThanOrEqual(T lhs, T rhs, String msg) argument
317 assertGT(T lhs, T rhs, String msg) argument
342 assertGreaterThan(T lhs, T rhs, String msg) argument
370 assertNE(Object lhs, Object rhs, String msg) argument
393 assertNotEquals(Object lhs, Object rhs, String msg) argument
419 assertNull(Object o, String msg) argument
440 assertNotNull(Object o, String msg) argument
461 assertFalse(boolean value, String msg) argument
486 assertTrue(boolean value, String msg) argument
494 compare(T lhs, T rhs, String msg) argument
[all...]

Completed in 287 milliseconds

1234567891011>>