HomeSort by relevance Sort by last modified time
    Searched refs:MESSAGE (Results 51 - 75 of 205) sorted by null

1 23 4 5 6 7 8 9

  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/experimental/parser/
protobuf.g 31 | MESSAGE
91 | message
98 ^(MESSAGES message*)
104 message
105 : MESSAGE^ id '{'! message_def '}'!
144 | message
153 ^(MESSAGES message*)
  /external/protobuf/java/src/main/java/com/google/protobuf/
ExtensionRegistry.java 45 * parsing a protocol message that might have extensions, you must provide
55 * message Foo {
69 * MyProto.Foo message = MyProto.Foo.parseFrom(input, registry);
89 * could violate the expectation that message objects are immutable, since the
90 * type provided could be any arbitrary message class. An unprivileged user
91 * could take advantage of this to inject a mutable object into a message
114 /** A (Descriptor, Message) pair, returned by lookup methods. */
120 * A default instance of the extension's type, if it has a message type.
123 public final Message defaultInstance;
130 final Message defaultInstance)
    [all...]
MessageReflection.java 48 static void writeMessageTo(Message message, CodedOutputStream output,
52 message.getDescriptorForType().getOptions().getMessageSetWireFormat();
54 Map<FieldDescriptor, Object> fields = message.getAllFields();
58 message.getDescriptorForType().getFields()) {
60 fields.put(field, message.getField(field));
69 field.getType() == Descriptors.FieldDescriptor.Type.MESSAGE &&
71 output.writeMessageSetExtension(field.getNumber(), (Message) value);
77 final UnknownFieldSet unknownFields = message.getUnknownFields();
85 static int getSerializedSize(Message message)
    [all...]
FieldSet.java 43 * A class which represents an arbitrary set of fields of some message type.
65 // If getLiteJavaType() == MESSAGE, this merges a message object of the
152 /** See {@link Message.Builder#clear()}. */
206 * {@link Message#hasField(Descriptors.FieldDescriptor)}.
219 * {@link Message#getField(Descriptors.FieldDescriptor)}. This method
233 * {@link Message.Builder#setField(Descriptors.FieldDescriptor,Object)}.
241 "Wrong object type used with protocol message reflection.");
264 * {@link Message.Builder#clearField(Descriptors.FieldDescriptor)}.
275 * {@link Message#getRepeatedFieldCount(Descriptors.FieldDescriptor)}
    [all...]
  /cts/common/util/tests/src/com/android/compatibility/common/util/
CaseResultTest.java 30 private static final String MESSAGE = "Something small is not alright";
64 assertEquals("Expected message to be set", MESSAGE, testResult.getMessage());
ResultHandlerTest.java 78 private static final String MESSAGE = "Something small is not alright";
125 " <Failure message=\"%s\">\n" +
135 " <Metric source=\"%s\" message=\"%s\" score_type=\"%s\" score_unit=\"%s\">\n" +
178 moduleBTest3.setMessage(MESSAGE);
216 String moduleBTest3 = String.format(XML_TEST_FAIL, METHOD_3, MESSAGE, STACK_TRACE,
291 assertNull("Unexpected message", moduleATest1.getMessage());
313 assertEquals("Incorrect message", MESSAGE, moduleBTest3.getMessage());
322 assertNull("Unexpected message", moduleBTest4.getMessage());
329 assertEquals("Incorrect message", SUMMARY_MESSAGE, summary.getMessage())
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/67/1/.cp/ant_tasks/
director-ant.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
TypoFix.java 61 String message = mMarker.getAttribute(IMarker.MESSAGE, ""); local
62 String typo = TypoDetector.getTypo(message, TextFormat.TEXT);
66 List<String> replacements = TypoDetector.getSuggestions(message, TextFormat.TEXT);
106 String message = mMarker.getAttribute(IMarker.MESSAGE, ""); local
107 String typo = TypoDetector.getTypo(message, TextFormat.TEXT);
108 List<String> replacements = TypoDetector.getSuggestions(message, TextFormat.TEXT);
TypographyFix.java 67 String message = mMarker.getAttribute(IMarker.MESSAGE, ""); local
69 TypographyDetector.getEdits(mId, message, child);
  /external/nist-sip/java/gov/nist/javax/sip/parser/
Parser.java 91 || token.getTokenType() == MESSAGE
142 * rfc 2543 transaction matching. fix for MESSAGE request type parsing.
  /external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
WebSocketRTCClient.java 31 * <p>To use: create an instance of this object (registering a message handler) and
41 private static final String ROOM_MESSAGE = "message";
48 MESSAGE, LEAVE
133 // Helper functions to get connection, post message and leave message URLs
171 Log.d(TAG, "Message URL: " + messageUrl);
196 sendPostMessage(MessageType.MESSAGE, messageUrl, json.toString());
243 sendPostMessage(MessageType.MESSAGE, messageUrl, json.toString());
262 Log.e(TAG, "Got WebSocket message in non registered state.");
299 reportError("Unexpected WebSocket message: " + msg)
    [all...]
  /external/nanopb-c/tests/backwards_compatibility/
alltypes_legacy.c 54 PB_FIELD( 16, MESSAGE , REQUIRED, STATIC, AllTypes, req_submsg, req_bytes, &SubMessage_fields),
71 PB_FIELD( 36, MESSAGE , REPEATED, STATIC, AllTypes, rep_submsg, rep_bytes, &SubMessage_fields),
88 PB_FIELD( 56, MESSAGE , OPTIONAL, STATIC, AllTypes, opt_submsg, opt_bytes, &SubMessage_fields),
  /packages/apps/Email/provider_src/com/android/email/mail/store/imap/
ImapResponseParser.java 74 public static final String MESSAGE = "Received BYE";
76 super(MESSAGE);
101 final String message = "End of stream reached"; local
103 LogUtils.d(Logging.LOG_TAG, message);
105 return new IOException(message);
180 LogUtils.w(Logging.LOG_TAG, ByeException.MESSAGE);
194 // However, we don't want to read too much, because then it may get into an email message.
  /packages/services/Telephony/src/com/android/phone/common/mail/store/imap/
ImapResponseParser.java 64 public static final String MESSAGE = "Received BYE";
66 super(MESSAGE);
86 final String message = "End of stream reached"; local
87 VvmLog.d(TAG, message);
88 return new IOException(message);
160 Log.w(TAG, ByeException.MESSAGE);
174 // However, we don't want to read too much, because then it may get into an email message.
  /system/core/adb/
fdevent_test.cpp 110 const std::string MESSAGE = "fdevent_test";
128 std::string read_buffer = MESSAGE;
129 std::string write_buffer(MESSAGE.size(), 'a');
socket_test.cpp 55 const std::string MESSAGE = "socket_test";
91 std::string read_buffer = MESSAGE;
92 std::string write_buffer(MESSAGE.size(), 'a');
  /external/icu/icu4c/source/data/
makedata.mak 28 !MESSAGE ICU data make path is $(ICUMAKE)
52 !MESSAGE ICU root path is $(ICUP)
180 !MESSAGE ICU data source archive is $(ICUDATA_SOURCE_ARCHIVE)
195 !MESSAGE Warning: cannot find "ucmcore.mk". Not building core MIME/Unix/Windows converter files.
202 !MESSAGE Warning: cannot find "ucmfiles.mk". Not building many converter files.
215 !MESSAGE Warning: cannot find "ucmebcdic.mk". Not building EBCDIC converter files.
226 !MESSAGE Information: cannot find "ucmlocal.mk". Not building user-additional converter files.
242 !MESSAGE Information: cannot find "brklocal.mk". Not building user-additional break iterator files.
245 !MESSAGE Warning: cannot find "brkfiles.mk"
275 !MESSAGE Information: cannot find "reslocal.mk". Not building user-additional resource bundle files
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/gen/
message_registry.py 2 """Message registry for apitools."""
20 """Registry for message types.
23 attributes (such as message and field descriptions) and some extra
39 variant=messages.Variant.MESSAGE),
61 variant=messages.Variant.MESSAGE),
85 # Used for tracking paths during message creation
155 raise ValueError('No message descriptor named "%s"', name)
182 message = extended_descriptor.ExtendedEnumDescriptor()
183 message.name = self.__names.ClassName(name)
184 message.description = util.CleanDescription(description
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/
generate_python_test.py 112 """Execute message generation test based on FieldDescriptor objects.
117 Message class depends on.
118 enum_types: List of EnumDescriptor objects that the new Message class
162 field.variant = descriptor.FieldDescriptor.Variant.MESSAGE
172 field.variant = descriptor.FieldDescriptor.Variant.MESSAGE
205 field.variant = descriptor.FieldDescriptor.Variant.MESSAGE
300 message = descriptor.MessageDescriptor()
301 message.name = 'OuterMessage'
311 message.message_types = [inner_message]
314 file_descriptor.message_types = [message]
    [all...]
protobuf.py 18 """Protocol buffer support for message types.
28 encode_message: Encodes a message in to a protocol buffer string.
29 decode_message: Decode from a protocol buffer string to a message.
83 """Encode a Message in to an embedded message.
86 value: Message instance to encode.
149 messages.Variant.MESSAGE: _Encoder.STRING,
167 messages.Variant.MESSAGE: _Encoder.encode_message,
212 messages.Variant.MESSAGE: _Decoder.getPrefixedString,
221 def encode_message(message)
    [all...]
  /developers/build/prebuilts/gradle/LNotifications/Application/tests/src/com/example/android/lnotifications/
OtherMetadataFragmentTest.java 60 .DEFAULT, OtherMetadataFragment.Category.MESSAGE, dummyContactUri);
  /developers/samples/android/notification/LNotifications/Application/tests/src/com/example/android/lnotifications/
OtherMetadataFragmentTest.java 60 .DEFAULT, OtherMetadataFragment.Category.MESSAGE, dummyContactUri);
  /external/eigen/bench/btl/actions/
action_symv.hh 40 MESSAGE("Action_symv Ctor");
  /external/eigen/bench/btl/generic_bench/timers/
x86_timer.hh 50 MESSAGE("X86_Timer Default Ctor");
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LintTooltip.java 62 String message = marker.getAttribute(IMarker.MESSAGE, null); local
63 if (message != null) {
84 label.setText(String.format("%1$s: %2$s", id, message));

Completed in 2122 milliseconds

1 23 4 5 6 7 8 9