Searched refs:Message (Results 51 - 75 of 2374) sorted by last modified time

1234567891011>>

/external/replicaisland/src/com/replica/replicaisland/
H A DAnimationPlayerActivity.java27 import android.os.Message;
52 public void handleMessage(Message msg) {
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/robolectric/src/main/java/com/xtremelabs/robolectric/
H A DRobolectric.java749 public static ShadowMessage shadowOf(Message instance) {
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowHandler.java5 import android.os.Message;
30 private List<Message> messages = new ArrayList<Message>();
61 public Message obtainMessage() {
66 public Message obtainMessage(int what) {
71 public Message obtainMessage(int what, Object obj) {
76 public Message obtainMessage(int what, int arg1, int arg2) {
81 public Message obtainMessage(int what, int arg1, int arg2, Object obj) {
82 Message message = new Message();
[all...]
H A DShadowMessage.java11 import android.os.Message;
13 @Implements(Message.class)
20 private Message message;
51 public void copyFrom(Message m) {
60 public static Message obtain() {
61 return new Message();
65 public static Message obtain(Handler h) {
66 Message m = new Message();
72 public static Message obtai
[all...]
H A DShadowMessenger.java9 import android.os.Message;
23 public void send(Message message) throws RemoteException {
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DHandlerTest.java5 import android.os.Message;
32 public boolean handleMessage(Message msg) {
95 handler.sendMessage(new Message());
208 Message frontMsg = handler.obtainMessage(345);
260 Message.obtain(handler, 123, "foo").sendToTarget();
261 Message.obtain(handler, 123, "bar").sendToTarget();
280 Message message = handler.obtainMessage(123, testObject);
294 Message message = handler.obtainMessage(123, testObject);
309 public void handleMessage(Message msg) {
321 Message m
[all...]
H A DMessageTest.java12 import android.os.Message;
19 assertNotNull(new Message().getData());
20 assertTrue(new Message().getData().isEmpty());
25 Message m = new Message();
33 assertNull(new Message().peekData());
35 Message m = new Message();
43 Message m = new Message();
[all...]
H A DMessengerTest.java12 import android.os.Message;
26 Message msg = Message.obtain(null, 123);
/external/protobuf/python/google/protobuf/internal/
H A Dreflection_test.py723 class MyProtoClass(message.Message):
1949 'Message is missing required fields: a,b,c')
1957 'Message is missing required fields: b,c')
1965 'Message is missing required fields: c')
1994 'Message is missing required fields: '
2006 'Message is missing required fields: '
/external/protobuf/python/google/protobuf/
H A Dmessage.py45 class Message(object): class in inherits:object
50 compiler. These generated types subclass Message and implement the methods
89 other_msg: Message to merge into the current message.
100 other_msg: Message to copy into the current one.
246 If the client wants to disconnect this Message from the object tree, she
H A Dreflection.py78 We add implementations for all methods described in the Message class. We
89 class MyProtoClass(Message):
112 (Should be message.Message). We ignore this field, but
131 of all Message methods, and properties for all fields
138 (Should be message.Message). We ignore this field, but
319 message: Message instance containing this field, or a weakref proxy
719 if (not isinstance(other, message_mod.Message) or
795 'Message is missing required fields: ' +
959 """Adds implementations of all Message methods to cls."""
1060 """extended_message: Message instanc
[all...]
/external/protobuf/src/google/protobuf/compiler/
H A Dcommand_line_interface.cc1223 scoped_ptr<Message> message(dynamic_factory.GetPrototype(type)->New());
H A Dimporter.cc173 const Message* descriptor,
H A Dimporter.h120 const Message* descriptor,
H A Dparser.cc254 const Message* descriptor,
263 const Message* descriptor,
666 bool Parser::ParseOptionAssignment(Message* options) {
1088 bool Parser::ParseOption(Message* options) {
1101 const Message* descriptor,
1118 const Message* descriptor,
H A Dparser.h50 namespace protobuf { class Message; }
185 void RecordLocation(const Message* descriptor,
191 void RecordLocation(const Message* descriptor,
221 bool ParseOption(Message* options);
279 // identifies a field of the given Message, and the value of that field
281 bool ParseOptionAssignment(Message* options);
315 bool Find(const Message* descriptor,
320 void Add(const Message* descriptor,
329 pair<const Message*, DescriptorPool::ErrorCollector::ErrorLocation>,
H A Dparser_unittest.cc83 const Message* descriptor,
747 // Message errors
H A Dplugin.pb.cc166 : ::google::protobuf::Message() {
174 : ::google::protobuf::Message() {
408 void CodeGeneratorRequest::MergeFrom(const ::google::protobuf::Message& from) {
432 void CodeGeneratorRequest::CopyFrom(const ::google::protobuf::Message& from) {
484 : ::google::protobuf::Message() {
492 : ::google::protobuf::Message() {
748 void CodeGeneratorResponse_File::MergeFrom(const ::google::protobuf::Message& from) {
776 void CodeGeneratorResponse_File::CopyFrom(const ::google::protobuf::Message& from) {
822 : ::google::protobuf::Message() {
830 : ::google::protobuf::Message() {
[all...]
H A Dplugin.pb.h44 class LIBPROTOC_EXPORT CodeGeneratorRequest : public ::google::protobuf::Message {
69 // implements Message ----------------------------------------------
72 void CopyFrom(const ::google::protobuf::Message& from);
73 void MergeFrom(const ::google::protobuf::Message& from);
167 class LIBPROTOC_EXPORT CodeGeneratorResponse_File : public ::google::protobuf::Message {
192 // implements Message ----------------------------------------------
195 void CopyFrom(const ::google::protobuf::Message& from);
196 void MergeFrom(const ::google::protobuf::Message& from);
284 class LIBPROTOC_EXPORT CodeGeneratorResponse : public ::google::protobuf::Message {
309 // implements Message
[all...]
H A Dsubprocess.cc143 bool Subprocess::Communicate(const Message& input, Message* output,
342 bool Subprocess::Communicate(const Message& input, Message* output,
/external/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_unittest.cc384 // Test the CopyFrom method that takes in the generic const Message&
390 const Message* source = implicit_cast<const Message*>(&message1);
405 scoped_ptr<Message> message1;
451 EXPECT_DEATH(message.MergeFrom(implicit_cast<const Message&>(message)),
924 const Message* request_;
925 Message* response_;
950 const Message* request,
951 Message* response,
967 const Message* request
[all...]
/external/protobuf/src/google/protobuf/compiler/java/
H A Djava_file.cc55 bool UsesExtensions(const Message& message) {
71 const Message& sub_message =
76 const Message& sub_message = reflection->GetMessage(message, fields[i]);
/external/protobuf/src/google/protobuf/compiler/javamicro/
H A Djavamicro_file.cc55 bool UsesExtensions(const Message& message) {
71 const Message& sub_message =
76 const Message& sub_message = reflection->GetMessage(message, fields[i]);
/external/protobuf/src/google/protobuf/compiler/javanano/
H A Djavanano_file.cc56 bool UsesExtensions(const Message& message) {
72 const Message& sub_message =
77 const Message& sub_message = reflection->GetMessage(message, fields[i]);

Completed in 1588 milliseconds

1234567891011>>