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

1 23 4 5 6 7

  /hardware/samsung_slsi/exynos5/mobicore/common/LogWrapper/
log.h 115 * Display "*********** ERROR ***********" before actual error message.
126 #define LOG_ERRNO(MESSAGE) \
127 LOG_E("%s failed with \"%s\"(errno %i)", MESSAGE, strerror(errno), errno);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
TypoFix.java 60 String message = mMarker.getAttribute(IMarker.MESSAGE, ""); local
61 String typo = TypoDetector.getTypo(message);
65 List<String> replacements = TypoDetector.getSuggestions(message);
105 String message = mMarker.getAttribute(IMarker.MESSAGE, ""); local
106 String typo = TypoDetector.getTypo(message);
107 List<String> replacements = TypoDetector.getSuggestions(message);
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/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/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.
  /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/protobuf/java/src/main/java/com/google/protobuf/
AbstractMessage.java 43 * A partial implementation of the {@link Message} interface which implements
49 implements Message {
65 if (field.getJavaType() == FieldDescriptor.JavaType.MESSAGE) {
67 for (final Message element : (List<Message>) entry.getValue()) {
73 if (!((Message) entry.getValue()).isInitialized()) {
97 field.getType() == FieldDescriptor.Type.MESSAGE &&
99 output.writeMessageSetExtension(field.getNumber(), (Message) value);
130 field.getType() == FieldDescriptor.Type.MESSAGE &&
133 field.getNumber(), (Message) value)
    [all...]
Descriptors.java 43 * Contains a collection of classes which describe protocol message types.
45 * Every message type has a {@link Descriptor}, which lists all
46 * its fields and other information about a type. You can get a message
48 * (given a message object of the type) {@code message.getDescriptorForType()}.
60 /** Convert the descriptor to its protocol message representation. */
76 /** Get a list of top-level message types declared in this file. */
102 * Find a message type in the file by name. Does not find nested types.
105 * @return The message type's descriptor, or {@code null} if not found.
175 * inside message types
    [all...]
DynamicMessage.java 41 * An implementation of {@link Message} that can represent arbitrary types,
71 /** Parse a message of the given type from the given input stream. */
78 /** Parse a message of the given type from the given input stream. */
87 /** Parse {@code data} as a message of the given type and return it. */
93 /** Parse {@code data} as a message of the given type and return it. */
100 /** Parse {@code data} as a message of the given type and return it. */
106 /** Parse {@code data} as a message of the given type and return it. */
113 /** Parse a message of the given type from {@code input} and return it. */
119 /** Parse a message of the given type from {@code input} and return it. */
126 /** Construct a {@link Message.Builder} for the given type. *
    [all...]
GeneratedMessage.java 48 * All generated protocol message classes extend this class. This class
49 * implements most of the Message and Builder interfaces using Java reflection.
51 * the Message interface directly.
61 * Get the FieldAccessorTable for this type. We can't have the message
101 if (field.getJavaType() == FieldDescriptor.JavaType.MESSAGE) {
104 List<Message> messageList = (List<Message>) getField(field);
105 for (final Message element : messageList) {
111 if (hasField(field) && !((Message) getField(field)).isInitialized()) {
162 * Get the message being built. We don't just pass this to th
603 final ExtendableMessage<MessageType> message = internalGetResult(); local
615 final ExtendableMessage<MessageType> message = internalGetResult(); local
628 final ExtendableMessage<MessageType> message = internalGetResult(); local
639 final ExtendableMessage<MessageType> message = internalGetResult(); local
655 final ExtendableMessage<MessageType> message = internalGetResult(); local
670 final ExtendableMessage<MessageType> message = internalGetResult(); local
682 final ExtendableMessage<MessageType> message = internalGetResult(); local
695 final ExtendableMessage<MessageType> message = internalGetResult(); local
708 final ExtendableMessage<MessageType> message = internalGetResult(); local
    [all...]
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
Descriptors.java 45 * Contains a collection of classes which describe protocol message types.
47 * Every message type has a {@link Descriptor}, which lists all
48 * its fields and other information about a type. You can get a message
50 * (given a message object of the type) {@code message.getDescriptorForType()}.
51 * Furthermore, each message is associated with a {@link FileDescriptor} for
70 /** Convert the descriptor to its protocol message representation. */
86 /** Get a list of top-level message types declared in this file. */
117 * Find a message type in the file by name. Does not find nested types.
120 * @return The message type's descriptor, or {@code null} if not found
    [all...]
DynamicMessage.java 42 * An implementation of {@link Message} that can represent arbitrary types,
72 /** Parse a message of the given type from the given input stream. */
79 /** Parse a message of the given type from the given input stream. */
88 /** Parse {@code data} as a message of the given type and return it. */
94 /** Parse {@code data} as a message of the given type and return it. */
101 /** Parse {@code data} as a message of the given type and return it. */
107 /** Parse {@code data} as a message of the given type and return it. */
114 /** Parse a message of the given type from {@code input} and return it. */
120 /** Parse a message of the given type from {@code input} and return it. */
127 /** Construct a {@link Message.Builder} for the given type. *
    [all...]
GeneratedMessage.java 50 * All generated protocol message classes extend this class. This class
51 * implements most of the Message and Builder interfaces using Java reflection.
53 * the Message interface directly.
74 public Parser<? extends Message> getParserForType() {
90 * Get the FieldAccessorTable for this type. We can't have the message
131 if (field.getJavaType() == FieldDescriptor.JavaType.MESSAGE) {
134 List<Message> messageList = (List<Message>) getField(field);
135 for (final Message element : messageList) {
141 if (hasField(field) && !((Message) getField(field)).isInitialized())
    [all...]
AbstractMessage.java 45 * A partial implementation of the {@link Message} interface which implements
51 implements Message {
67 if (field.getJavaType() == FieldDescriptor.JavaType.MESSAGE) {
69 for (final Message element : (List<Message>) entry.getValue()) {
75 if (!((Message) entry.getValue()).isInitialized()) {
118 field.getType() == FieldDescriptor.Type.MESSAGE &&
120 output.writeMessageSetExtension(field.getNumber(), (Message) value);
151 field.getType() == FieldDescriptor.Type.MESSAGE &&
154 field.getNumber(), (Message) value)
    [all...]
  /developers/build/prebuilts/gradle/LNotifications/Application/tests/src/com/example/android/lnotifications/
OtherMetadataFragmentTest.java 60 .DEFAULT, OtherMetadataFragment.Category.MESSAGE, dummyContactUri);
  /developers/samples/android/ui/notifications/LNotifications/Application/tests/src/com/example/android/lnotifications/
OtherMetadataFragmentTest.java 60 .DEFAULT, OtherMetadataFragment.Category.MESSAGE, dummyContactUri);
  /external/chromium_org/third_party/skia/tools/
add_codereview_message.py 8 """Add message to codereview issue.
11 argument and a (possibly multi-line) message on stdin. It then calls
12 `git cl upload` to append the message to the given codereview issue.
15 echo MESSAGE | %prog -c CHECKOUT_PATH CODEREVIEW_ISSUE
19 MESSAGE
46 def add_codereview_message(codereview_url, message, checkout_path,
48 """Add a message to a given codereview.
53 message: (string) will be passed to `git cl upload -m $MESSAGE`
57 add the message and keep the temporary branch around
    [all...]
  /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");
  /external/skia/tools/
add_codereview_message.py 8 """Add message to codereview issue.
11 argument and a (possibly multi-line) message on stdin. It then calls
12 `git cl upload` to append the message to the given codereview issue.
15 echo MESSAGE | %prog -c CHECKOUT_PATH CODEREVIEW_ISSUE
19 MESSAGE
46 def add_codereview_message(codereview_url, message, checkout_path,
48 """Add a message to a given codereview.
53 message: (string) will be passed to `git cl upload -m $MESSAGE`
57 add the message and keep the temporary branch around
    [all...]
  /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));
  /external/protobuf/src/google/protobuf/
extension_set_heavy.cc 40 #include <google/protobuf/message.h>
120 GOOGLE_DCHECK_TYPE(iter->second, OPTIONAL, MESSAGE);
138 GOOGLE_DCHECK_TYPE(*extension, OPTIONAL, MESSAGE);
154 GOOGLE_DCHECK_TYPE(*extension, REPEATED, MESSAGE);
157 // RepeatedPtrField<Message> does not know how to Add() since it cannot
206 const Message* containing_type,
221 const Message* containing_type,
249 return field->SpaceUsedExcludingSelf<GenericTypeHandler<Message> >();
289 total_size += down_cast<Message*>(message_value)->SpaceUsed();
392 HANDLE_TYPE( GROUP, Group, message);
    [all...]
extension_set.cc 412 GOOGLE_DCHECK_TYPE(iter->second, OPTIONAL, MESSAGE);
432 GOOGLE_DCHECK_TYPE(*extension, OPTIONAL, MESSAGE);
447 GOOGLE_DCHECK_TYPE(iter->second, REPEATED, MESSAGE);
454 GOOGLE_DCHECK_TYPE(iter->second, REPEATED, MESSAGE);
469 GOOGLE_DCHECK_TYPE(*extension, REPEATED, MESSAGE);
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
extension_set.cc 443 GOOGLE_DCHECK_TYPE(iter->second, OPTIONAL, MESSAGE);
470 GOOGLE_DCHECK_TYPE(*extension, OPTIONAL, MESSAGE);
487 MessageLite* message) {
488 if (message == NULL) {
498 extension->message_value = message;
500 GOOGLE_DCHECK_TYPE(*extension, OPTIONAL, MESSAGE);
502 extension->lazymessage_value->SetAllocatedMessage(message);
505 extension->message_value = message;
518 GOOGLE_DCHECK_TYPE(iter->second, OPTIONAL, MESSAGE);
539 GOOGLE_DCHECK_TYPE(iter->second, REPEATED, MESSAGE);
    [all...]

Completed in 548 milliseconds

1 23 4 5 6 7