HomeSort by relevance Sort by last modified time
    Searched defs:msg (Results 101 - 125 of 1968) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/serialization/
CertificateEncodingExceptionTest.java 43 String msg = null; local
45 return new Object[] { new CertificateEncodingException(), new CertificateEncodingException(msg),
CertificateExceptionTest.java 43 String msg = null; local
45 return new Object[] { new CertificateException(), new CertificateException(msg),
CertificateParsingExceptionTest.java 43 String msg = null; local
45 return new Object[] { new CertificateParsingException(), new CertificateParsingException(msg),
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/serialization/
DigestExceptionTest.java 43 String msg = null; local
45 return new Object[] { new DigestException(), new DigestException(msg),
GeneralSecurityExceptionTest.java 43 String msg = null; local
45 return new Object[] { new GeneralSecurityException(), new GeneralSecurityException(msg),
InvalidAlgorithmParameterExceptionTest.java 43 String msg = null; local
45 return new Object[] { new InvalidAlgorithmParameterException(), new InvalidAlgorithmParameterException(msg),
InvalidKeyExceptionTest.java 43 String msg = null; local
45 return new Object[] { new InvalidKeyException(), new InvalidKeyException(msg),
KeyExceptionTest.java 43 String msg = null; local
45 return new Object[] { new KeyException(), new KeyException(msg),
KeyManagementExceptionTest.java 43 String msg = null; local
45 return new Object[] { new KeyManagementException(), new KeyManagementException(msg),
KeyStoreExceptionTest.java 43 String msg = null; local
45 return new Object[] { new KeyStoreException(), new KeyStoreException(msg),
NoSuchAlgorithmExceptionTest.java 43 String msg = null; local
45 return new Object[] { new NoSuchAlgorithmException(), new NoSuchAlgorithmException(msg),
ProviderExceptionTest.java 43 String msg = null; local
45 return new Object[] { new ProviderException(), new ProviderException(msg),
SignatureExceptionTest.java 43 String msg = null; local
45 return new Object[] { new SignatureException(), new SignatureException(msg),
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/serialization/
InvalidKeySpecExceptionTest.java 43 String msg = null; local
45 return new Object[] { new InvalidKeySpecException(), new InvalidKeySpecException(msg),
  /external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
SSLHandshakeExceptionTest.java 53 * Assertion: constructs SSLHandshakeException with detail message msg.
54 * Parameter <code>msg</code> is not null.
68 * Assertion: constructs SSLHandshakeException when <code>msg</code> is
72 String msg = null; local
73 SSLHandshakeException tE = new SSLHandshakeException(msg);
SSLKeyExceptionTest.java 52 * constructs SSLKeyException with detail message msg. Parameter
53 * <code>msg</code> is not null.
67 * constructs SSLKeyException when <code>msg</code> is null
70 String msg = null; local
71 SSLKeyException tE = new SSLKeyException(msg);
SSLPeerUnverifiedExceptionTest.java 53 * Assertion: constructs SSLPeerUnverifiedException with detail message msg.
54 * Parameter <code>msg</code> is not null.
68 * Assertion: constructs SSLPeerUnverifiedException when <code>msg</code>
72 String msg = null; local
73 SSLPeerUnverifiedException tE = new SSLPeerUnverifiedException(msg);
SSLProtocolExceptionTest.java 52 * Assertion: constructs SSLProtocolException with detail message msg.
53 * Parameter <code>msg</code> is not null.
67 * Assertion: constructs SSLProtocolException when <code>msg</code> is
71 String msg = null; local
72 SSLProtocolException tE = new SSLProtocolException(msg);
  /external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/serialization/
SSLExceptionTest.java 42 String msg = null; local
45 return new Object[] { new SSLException(msg), new SSLException(msgs[1]),
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
ProcessorExsltFuncResult.java 49 String msg = ""; local
59 msg = "func:result cannot appear within a variable, parameter, or another func:result.";
60 handler.error(msg, new SAXException(msg));
66 msg = "func:result must appear in a func:function element";
67 handler.error(msg, new SAXException(msg));
  /external/apache-xml/src/main/java/org/apache/xpath/res/
XPATHMessages.java 93 String msg = null; local
96 msg = fResourceBundle.getString(msgKey);
98 if (msg == null)
100 msg = fResourceBundle.getString(XPATHErrorResources.BAD_CODE);
120 fmsg = java.text.MessageFormat.format(msg, args);
125 fmsg += " " + msg;
129 fmsg = msg;
  /external/chromium_org/chrome_frame/test/net/
test_automation_resource_message_filter.cc 19 URLRequestAutomationJob* job, IPC::Message* msg) {
20 job->OnMessage(*msg);
21 delete msg;
36 IPC::Message* msg = new IPC::Message(message); local
53 base::Bind(OnRequestMessage, job.job_, msg));
  /external/chromium_org/content/browser/renderer_host/
render_process_host_browsertest.cc 51 ChildProcessHostMsg_ShutdownRequest msg; local
52 rph->OnMessageReceived(msg);
  /external/chromium_org/content/common/
common_param_traits_unittest.cc 30 IPC::Message msg(1, 2, IPC::Message::PRIORITY_NORMAL);
31 IPC::ParamTraits<GURL>::Write(&msg, input);
34 PickleIterator iter(msg);
35 EXPECT_TRUE(IPC::ParamTraits<GURL>::Read(&msg, &iter, &output));
53 IPC::Message msg; local
54 msg.WriteString("#inva://idurl/");
56 PickleIterator iter(msg);
57 EXPECT_FALSE(IPC::ParamTraits<GURL>::Read(&msg, &iter, &output));
61 IPC::Message msg(1, 2, IPC::Message::PRIORITY_NORMAL);
62 msg.WriteInt(99)
    [all...]
  /external/chromium_org/content/renderer/devtools/
devtools_agent_filter.cc 24 : msg(message),
34 virtual WebString message() { return WebString::fromUTF8(msg); }
36 std::string msg; member in class:content::__anon10851::MessageImpl

Completed in 508 milliseconds

1 2 3 45 6 7 8 91011>>