Searched refs:message (Results 76 - 100 of 5913) sorted by relevance

1234567891011>>

/external/google-tv-pairing-protocol/cpp/src/polo/pairing/message/
H A Dmessagelistener.h19 #include "polo/pairing/message/configurationackmessage.h"
20 #include "polo/pairing/message/configurationmessage.h"
21 #include "polo/pairing/message/optionsmessage.h"
22 #include "polo/pairing/message/pairingrequestackmessage.h"
23 #include "polo/pairing/message/pairingrequestmessage.h"
24 #include "polo/pairing/message/secretackmessage.h"
25 #include "polo/pairing/message/secretmessage.h"
29 namespace message { namespace in namespace:polo::pairing
36 // Handles a message containing the peer's configuration.
38 const ConfigurationMessage& message)
[all...]
/external/icu/icu4c/source/samples/layout/
H A DGDIGUISupport.cpp18 void GDIGUISupport::postErrorMessage(const char *message, const char *title) argument
20 MessageBoxA(NULL, message, title, MB_ICONERROR);
/external/jsilver/src/com/google/clearsilver/jsilver/exceptions/
H A DJSilverInterpreterException.java24 public JSilverInterpreterException(String message) { argument
25 super(message);
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/lexer/
H A DLexerException.java8 public LexerException(String message) argument
10 super(message);
/external/lzma/CPP/Windows/
H A DError.h11 bool MyFormatMessage(DWORD messageID, CSysString &message);
14 CSysString message; local
15 MyFormatMessage(messageID, message);
16 return message;
22 bool MyFormatMessage(DWORD messageID, UString &message);
25 UString message; local
26 MyFormatMessage(messageID, message);
27 return message;
/external/nist-sip/java/gov/nist/javax/sip/message/
H A DRequestExt.java1 package gov.nist.javax.sip.message;
3 import javax.sip.message.Request;
H A DResponseExt.java1 package gov.nist.javax.sip.message;
3 import javax.sip.message.Response;
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DServiceException.java41 public ServiceException(final String message) { argument
42 super(message);
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/proxy_configuration/test/
H A Djsunittest.js333 this.message(summary);
336 DrNicTest.Unit.Logger.prototype.message = function(message) {
339 cell.innerHTML = this._toHTML(message);
522 buildMessage: function(message, template) {
524 return (message ? message + '\n' : '') +
528 flunk: function(message) {
529 this.assertBlock(message || 'Flunked', function() { return false });
532 assertBlock: function(message, bloc
[all...]
/external/chromium_org/third_party/jinja2/
H A Dexceptions.py18 def __init__(self, message=None):
19 if message is not None:
20 message = text_type(message).encode('utf-8')
21 Exception.__init__(self, message)
24 def message(self): member in class:TemplateError
26 message = self.args[0]
27 if message is not None:
28 return message.decode('utf-8', 'replace')
31 return self.message o
37 def message(self): member in class:TemplateError
50 message = None variable in class:TemplateNotFound
[all...]
/external/google-tv-pairing-protocol/cpp/src/polo/wire/
H A Dpolowireadapter.h20 #include "polo/pairing/message/messagelistener.h"
39 void set_listener(pairing::message::MessageListener* listener);
41 // Gets the next message from the interface asynchronously. The listener
42 // will be invoked when a message has been received. An error will occur if
43 // this method is invoked again before a message or error is received by
47 // Sends a configuration message to the peer.
49 const pairing::message::ConfigurationMessage& message) = 0;
53 const pairing::message::ConfigurationAckMessage& message)
[all...]
/external/protobuf/java/src/device/test/java/com/google/protobuf/nano/
H A DNanoAndroidTest.java44 SimpleMessageNano message = new SimpleMessageNano();
45 message.d = 54321;
46 message.nestedMsg = new NestedMessage();
47 message.nestedMsg.bb = 12345;
48 message.defaultNestedEnum = SimpleMessageNano.FOO;
53 parcel.writeParcelable(message, 0);
55 message = parcel.readParcelable(getClass().getClassLoader());
62 assertEquals(54321, message.d);
63 assertEquals(12345, message.nestedMsg.bb);
64 assertEquals(SimpleMessageNano.FOO, message
[all...]
/external/chromium_org/third_party/protobuf/python/google/protobuf/internal/
H A Dmessage_test.py33 """Tests python protocol buffers against the golden message.
40 sense to call this a test of the "message" module, which only declares an
56 from google.protobuf import message namespace
132 self.assertRaises(message.EncodeError, unpickled_message.SerializeToString)
177 message = unittest_pb2.TestAllTypes()
178 message.ParseFromString(serialized)
179 self.assertTrue(isnan(message.optional_float))
180 self.assertTrue(isnan(message.optional_double))
181 self.assertTrue(isnan(message.repeated_float[0]))
182 self.assertTrue(isnan(message
[all...]
/external/chromium_org/remoting/protocol/
H A Dhost_control_dispatcher.cc38 ControlMessage message; local
39 message.mutable_capabilities()->CopyFrom(capabilities);
40 writer_.Write(SerializeAndFrameMessage(message), base::Closure());
45 ControlMessage message; local
46 message.mutable_pairing_response()->CopyFrom(pairing_response);
47 writer_.Write(SerializeAndFrameMessage(message), base::Closure());
51 const ExtensionMessage& message) {
53 control_message.mutable_extension_message()->CopyFrom(message);
58 ControlMessage message; local
59 message
50 DeliverHostMessage( const ExtensionMessage& message) argument
65 ControlMessage message; local
70 OnMessageReceived( scoped_ptr<ControlMessage> message, const base::Closure& done_task) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/dbus/
H A Ddbus_old_handlers.h14 DBusMessage * wpas_dbus_new_invalid_iface_error(DBusMessage *message);
15 DBusMessage * wpas_dbus_new_invalid_network_error(DBusMessage *message);
17 DBusMessage * wpas_dbus_global_add_interface(DBusMessage *message,
20 DBusMessage * wpas_dbus_global_remove_interface(DBusMessage *message,
23 DBusMessage * wpas_dbus_global_get_interface(DBusMessage *message,
26 DBusMessage * wpas_dbus_global_set_debugparams(DBusMessage *message,
29 DBusMessage * wpas_dbus_iface_scan(DBusMessage *message,
32 DBusMessage * wpas_dbus_iface_scan_results(DBusMessage *message,
35 DBusMessage * wpas_dbus_bssid_properties(DBusMessage *message,
39 DBusMessage * wpas_dbus_iface_capabilities(DBusMessage *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/tool/src/main/resources/org/antlr/tool/templates/messages/formats/
H A Dantlr.stg38 message(id, text) ::= "(<id>) <text>"
40 report(location, message, type) ::= "<type>(<message.id>): <location> <message.text>"
H A Dgnu.stg38 message(id, text) ::= "<text> (<id>)"
40 report(location, message, type) ::= "<location> <type>: <message>"
H A Dvs2005.stg38 message(id, text) ::= "error <id> : <text>"
40 report(location, message, type) ::= "<location> : <type> <message.id> : <message.text>"
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/
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/http/
H A DHttpException.java53 * Creates a new HttpException with a <tt>null</tt> detail message.
60 * Creates a new HttpException with the specified detail message.
62 * @param message the exception detail message
64 public HttpException(final String message) { argument
65 super(message);
69 * Creates a new HttpException with the specified detail message and cause.
71 * @param message the exception detail message
75 public HttpException(final String message, fina 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...]

Completed in 1179 milliseconds

1234567891011>>