Searched defs:message (Results 126 - 150 of 2476) sorted by relevance

1234567891011>>

/external/smack/src/org/jivesoftware/smack/
H A DMessageListener.java29 void processMessage(Chat chat, Message message); argument
/external/smali/smali/src/main/java/org/jf/smali/
H A DInvalidToken.java34 private final String message; field in class:InvalidToken
36 public InvalidToken(String message) { argument
38 this.message = message;
42 public InvalidToken(String message, String text) { argument
44 this.message = message;
49 return message;
/external/chromium_org/remoting/webapp/
H A Dfeedback.js43 var message = {
53 chrome.runtime.sendMessage(kFeedbackExtensionId, message, function() {});
H A Dwcs_sandbox_content.js35 window.addEventListener('message', this.onMessage_.bind(this), false);
120 console.error('Unexpected message:', event.data['command'], event.data);
133 var message = {
137 this.parentWindow_.postMessage(message, '*');
147 var message = {
151 this.parentWindow_.postMessage(message, '*');
164 var message = {
169 this.parentWindow_.postMessage(message, '*');
186 var message = {
190 this.parentWindow_.postMessage(message, '*');
[all...]
/external/chromium_org/remoting/webapp/background/
H A Dmessage_window.js19 window.addEventListener('message', this.onMessage_.bind(this), false);
23 * @param {Window} parentWindow The id of the window that showed the message.
24 * @param {string} messageId The identifier of the message, as supplied by the
34 var message = {
39 parentWindow.postMessage(message, '*');
76 * message content.
84 // Validate the message.
87 var message = /** @type {string} */ (event.data['message']);
95 typeof(message) !
[all...]
/external/ant-glob/src/org/apache/tools/ant/
H A DBuildException.java35 * Constructs an exception with the given descriptive message.
37 * @param message A description of or information about the exception.
40 public BuildException(String message) { argument
41 super(message);
45 * Constructs an exception with the given message and exception as
48 * @param message A description of or information about the exception.
53 public BuildException(String message, Throwable cause) { argument
54 super(message);
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3exception.c47 * \param[in] message
48 * Pointer to message string
51 * Set to ANTLR3_TRUE if the message parameter should be freed by a call to
72 antlr3ExceptionNew(ANTLR3_UINT32 exception, void * name, void * message, ANTLR3_BOOLEAN freeMessage) argument
89 ex->message = message; /* Install message string */
105 * Prints out the message in all the exceptions in the supplied chain.
124 /* Number if no message, else the message
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DMismatchedNotSetException.cs43 public MismatchedNotSetException(string message) argument
44 : base(message) {
47 public MismatchedNotSetException(string message, Exception innerException) argument
48 : base(message, innerException) {
55 public MismatchedNotSetException(string message, BitSet expecting, IIntStream input) argument
56 : base(message, expecting, input) {
59 public MismatchedNotSetException(string message, BitSet expecting, IIntStream input, Exception innerException) argument
60 : base(message, expecting, input, innerException) {
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DRewriteEarlyExitException.cs52 public RewriteEarlyExitException(string message, string elementDescription) argument
53 : base(message, elementDescription) {
56 public RewriteEarlyExitException(string message, string elementDescription, Exception innerException) argument
57 : base(message, elementDescription, innerException) {
H A DRewriteEmptyStreamException.cs52 public RewriteEmptyStreamException(string message, string elementDescription) argument
53 : base(message, elementDescription) {
56 public RewriteEmptyStreamException(string message, string elementDescription, Exception innerException) argument
57 : base(message, elementDescription, innerException) {
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DMismatchedNotSetException.cs46 public MismatchedNotSetException(string message) argument
47 : base(message)
51 public MismatchedNotSetException(string message, Exception innerException) argument
52 : base(message, innerException)
61 public MismatchedNotSetException(string message, BitSet expecting, IIntStream input) argument
62 : base(message, expecting, input)
66 public MismatchedNotSetException(string message, BitSet expecting, IIntStream input, Exception innerException) argument
67 : base(message, expecting, input, innerException)
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DRewriteEarlyExitException.cs57 public RewriteEarlyExitException(string message, string elementDescription) argument
58 : base(message, elementDescription)
62 public RewriteEarlyExitException(string message, string elementDescription, Exception innerException) argument
63 : base(message, elementDescription, innerException)
H A DRewriteEmptyStreamException.cs57 public RewriteEmptyStreamException(string message, string elementDescription) argument
58 : base(message, elementDescription)
62 public RewriteEmptyStreamException(string message, string elementDescription, Exception innerException) argument
63 : base(message, elementDescription, innerException)
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/
H A DDebuggeeSynchronizer.java38 * Sends specified string <code>message</code> to the channel.
40 * @param message message to be sent
42 abstract public void sendMessage(String message); argument
45 * Waits for specified message. If received string is equal to
46 * <code>message</code> then <code>true</code> returns.
48 * @param message expected message
49 * @return <code>true</code> if received message is equal to
52 abstract public boolean receiveMessage(String message); argument
[all...]
H A DTestErrorException.java46 * Creates new exception instance with explaining message.
48 * @param message cause explaining message
50 public TestErrorException(String message) { argument
51 super(message);
55 * Creates new exception instance to enwrap other exception with explaining message.
57 * @param message explaining message
60 public TestErrorException(String message, Throwable throwable) { argument
61 super(message, throwabl
[all...]
/external/apache-http/src/org/apache/commons/logging/
H A DLogConfigurationException.java38 * Construct a new exception with <code>null</code> as its detail message.
48 * Construct a new exception with the specified detail message.
50 * @param message The detail message
52 public LogConfigurationException(String message) { argument
54 super(message);
61 * detail message.
73 * Construct a new exception with the specified detail message and cause.
75 * @param message The detail message
78 LogConfigurationException(String message, Throwable cause) argument
[all...]
/external/apache-http/src/org/apache/http/auth/
H A DAuthenticationException.java52 * Creates a new AuthenticationException with a <tt>null</tt> detail message.
59 * Creates a new AuthenticationException with the specified message.
61 * @param message the exception detail message
63 public AuthenticationException(String message) { argument
64 super(message);
68 * Creates a new AuthenticationException with the specified detail message and cause.
70 * @param message the exception detail message
74 public AuthenticationException(String message, Throwabl argument
[all...]
H A DInvalidCredentialsException.java51 * Creates a new InvalidCredentialsException with a <tt>null</tt> detail message.
58 * Creates a new InvalidCredentialsException with the specified message.
60 * @param message the exception detail message
62 public InvalidCredentialsException(String message) { argument
63 super(message);
67 * Creates a new InvalidCredentialsException with the specified detail message and cause.
69 * @param message the exception detail message
73 public InvalidCredentialsException(String message, Throwabl argument
[all...]
H A DMalformedChallengeException.java53 * Creates a new MalformedChallengeException with a <tt>null</tt> detail message.
60 * Creates a new MalformedChallengeException with the specified message.
62 * @param message the exception detail message
64 public MalformedChallengeException(String message) { argument
65 super(message);
69 * Creates a new MalformedChallengeException with the specified detail message and cause.
71 * @param message the exception detail message
75 public MalformedChallengeException(String message, Throwabl argument
[all...]
/external/apache-http/src/org/apache/http/client/
H A DCircularRedirectException.java50 * Creates a new CircularRedirectException with a <tt>null</tt> detail message.
57 * Creates a new CircularRedirectException with the specified detail message.
59 * @param message The exception detail message
61 public CircularRedirectException(String message) { argument
62 super(message);
66 * Creates a new CircularRedirectException with the specified detail message and cause.
68 * @param message the exception detail message
72 public CircularRedirectException(String message, Throwabl argument
[all...]
H A DClientProtocolException.java59 public ClientProtocolException(String message, Throwable cause) { argument
60 super(message);
H A DRedirectException.java52 * Creates a new RedirectException with a <tt>null</tt> detail message.
59 * Creates a new RedirectException with the specified detail message.
61 * @param message The exception detail message
63 public RedirectException(String message) { argument
64 super(message);
68 * Creates a new RedirectException with the specified detail message and cause.
70 * @param message the exception detail message
74 public RedirectException(String message, Throwabl argument
[all...]
/external/apache-http/src/org/apache/http/cookie/
H A DMalformedCookieException.java54 * Creates a new MalformedCookieException with a <tt>null</tt> detail message.
61 * Creates a new MalformedCookieException with a specified message string.
63 * @param message The exception detail message
65 public MalformedCookieException(String message) { argument
66 super(message);
70 * Creates a new MalformedCookieException with the specified detail message and cause.
72 * @param message the exception detail message
76 public MalformedCookieException(String message, Throwabl argument
[all...]
/external/apache-http/src/org/apache/http/entity/
H A DContentLengthStrategy.java39 * of an HTTP message.
57 long determineLength(HttpMessage message) throws HttpException; argument
/external/apache-http/src/org/apache/http/impl/auth/
H A DNTLMEngineException.java56 * Creates a new NTLMEngineException with the specified message.
58 * @param message the exception detail message
60 public NTLMEngineException(String message) { argument
61 super(message);
65 * Creates a new NTLMEngineException with the specified detail message and cause.
67 * @param message the exception detail message
71 public NTLMEngineException(String message, Throwable cause) { argument
72 super(message, caus
[all...]

Completed in 682 milliseconds

1234567891011>>