Searched defs:msg (Results 126 - 150 of 898) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/java/rmi/RemoteException/chaining/
H A DChaining.java35 static void check(Throwable t, String msg, Throwable cause) argument
39 if (msg == null ? tmsg != null : !msg.equals(tmsg)) {
55 static void test(Throwable t, String msg, Throwable cause) argument
58 check(t, msg, cause);
61 check(pair[0], msg, pair[1]);
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/httpstest/
H A DAbstractCallback.java57 * @param msg the transaction containing the request from the
60 public void request (HttpTransaction msg) { argument
61 URI uri = msg.getRequestURI();
67 request (msg, req.count++);
76 * @param msg the transaction containing the request from the
81 abstract public void request (HttpTransaction msg, int n); argument
/openjdk7/langtools/src/share/classes/com/sun/javadoc/
H A DDocErrorReporter.java39 * @param msg message to print
41 void printError(String msg); argument
47 * @param msg message to print
50 void printError(SourcePosition pos, String msg); argument
55 * @param msg message to print
57 void printWarning(String msg); argument
63 * @param msg message to print
66 void printWarning(SourcePosition pos, String msg); argument
71 * @param msg message to print
73 void printNotice(String msg); argument
82 printNotice(SourcePosition pos, String msg) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/mirror/apt/
H A DMessager.java50 * Equivalent to <tt>printError(null, msg)</tt>.
51 * @param msg the message, or an empty string if none
53 void printError(String msg); argument
59 * @param msg the message, or an empty string if none
61 void printError(SourcePosition pos, String msg); argument
65 * Equivalent to <tt>printWarning(null, msg)</tt>.
66 * @param msg the message, or an empty string if none
68 void printWarning(String msg); argument
74 * @param msg the message, or an empty string if none
76 void printWarning(SourcePosition pos, String msg); argument
83 printNotice(String msg) argument
91 printNotice(SourcePosition pos, String msg) argument
[all...]
/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/langtools/src/share/classes/javax/annotation/processing/
H A DMessager.java60 * @param msg the message, or an empty string if none
62 void printMessage(Diagnostic.Kind kind, CharSequence msg); argument
69 * @param msg the message, or an empty string if none
72 void printMessage(Diagnostic.Kind kind, CharSequence msg, Element e); argument
79 * @param msg the message, or an empty string if none
83 void printMessage(Diagnostic.Kind kind, CharSequence msg, Element e, AnnotationMirror a); argument
91 * @param msg the message, or an empty string if none
97 CharSequence msg,
96 printMessage(Diagnostic.Kind kind, CharSequence msg, Element e, AnnotationMirror a, AnnotationValue v) argument
/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/jdk/src/share/classes/sun/security/provider/certpath/
H A DSunCertPathBuilderException.java62 * @param msg the detail message
64 public SunCertPathBuilderException(String msg) { argument
65 super(msg);
89 * @param msg the detail message
92 public SunCertPathBuilderException(String msg, Throwable cause) { argument
93 super(msg, cause);
100 * @param msg the detail message
103 SunCertPathBuilderException(String msg, AdjacencyList adjList) { argument
104 this(msg);
112 * @param msg th
116 SunCertPathBuilderException(String msg, Throwable cause, AdjacencyList adjList) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/util/
H A DPropertyExpander.java48 public ExpandException(String msg) { argument
49 super(msg);
/openjdk7/jdk/src/share/classes/sun/util/locale/
H A DLocaleSyntaxException.java40 public LocaleSyntaxException(String msg) { argument
41 this(msg, 0);
44 public LocaleSyntaxException(String msg, int errorIndex) { argument
45 super(msg);
/openjdk7/jdk/test/sun/net/www/httptest/
H A DAbstractCallback.java57 * @param msg the transaction containing the request from the
60 public void request (HttpTransaction msg) { argument
61 URI uri = msg.getRequestURI();
67 request (msg, req.count++);
76 * @param msg the transaction containing the request from the
81 abstract public void request (HttpTransaction msg, int n); argument
/openjdk7/langtools/test/tools/javadoc/6964914/
H A DTest.java72 void error(String msg) { argument
73 System.err.println("Error: " + msg);
/openjdk7/langtools/test/tools/javah/
H A DTestHelpOpts.java75 void error(String msg) { argument
76 System.err.println(msg);
/openjdk7/make/scripts/
H A Dvsvars.sh48 msg() # message function
54 msg "ERROR: $1"
59 msg "WARNING: $1"
194 msg "${usage}"
195 msg " -help Print out this help message"
196 msg " -debug Print out extra env variables to help debug this script"
197 msg " -v Verbose output warns about missing directories"
198 msg " -c Print out csh style output"
199 msg " -s Print out sh style output"
200 msg "
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/
H A DDispatch.java42 * The client is responsible for ensuring that the <code>msg</code> object
46 * @param msg An object that will form the message or payload of
55 public T invoke(T msg); argument
62 * The client is responsible for ensuring that the <code>msg</code> object
66 * @param msg An object that will form the message or payload of
73 public Response<T> invokeAsync(T msg); argument
80 * The client is responsible for ensuring that the <code>msg</code> object
84 * @param msg An object that will form the message or payload of
96 public Future<?> invokeAsync(T msg, AsyncHandler<T> handler); argument
105 * The client is responsible for ensuring that the <code>msg</cod
115 invokeOneWay(T msg) argument
[all...]
/openjdk7/hotspot/test/runtime/7107135/
H A DTestMT.java48 public static int run(String msg) { argument
52 System.out.println(msg + " caught stack overflow error.");
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/utils/
H A DConfigurationError.java47 ConfigurationError(String msg, Exception x) { argument
48 super(msg);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/cmdline/getopt/
H A DGetOptsException.java31 public GetOptsException(String msg){ argument
32 super(msg);
H A DIllegalArgumentException.java29 public IllegalArgumentException(String msg){ argument
30 super(msg);
H A DMissingOptArgException.java32 public MissingOptArgException(String msg){ argument
33 super(msg);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DInternalError.java32 * @param msg the error message
34 public InternalError(String msg) { argument
35 super(msg);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/runtime/
H A DMessageHandler.java30 public void displayMessage(String msg) { argument
31 System.err.println(msg);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/
H A DDVFactoryException.java39 public DVFactoryException(String msg) { argument
40 super(msg);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/utils/
H A DConfigurationError.java44 ConfigurationError(String msg, Exception x) { argument
45 super(msg);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/
H A DDTMConfigurationException.java45 * @param msg The error message for the exception.
47 public DTMConfigurationException(String msg) { argument
48 super(msg);
66 * @param msg The detail message.
69 public DTMConfigurationException(String msg, Throwable e) { argument
70 super(msg, e);

Completed in 60 milliseconds

1234567891011>>