/external/protobuf/src/google/protobuf/ |
generated_message_reflection.cc | 89 " Message type: " << descriptor->full_name() << "\n" 115 " Message type: " << descriptor->full_name() << "\n" 117 " Problem : Field is not the right type for this message:\n" 128 " Message type: " << descriptor->full_name() << "\n" 154 METHOD, "Field does not match message type."); 173 const Message* default_instance, 196 const Message* default_instance, 224 const Message& message) const { 225 const void* ptr = reinterpret_cast<const uint8*>(&message) [all...] |
descriptor.cc | 104 "message", // TYPE_MESSAGE 126 "message", // CPPTYPE_MESSAGE 246 NULL_SYMBOL, MESSAGE, FIELD, ONEOF, ENUM, ENUM_VALUE, SERVICE, METHOD, 264 return type == MESSAGE || type == ENUM; 267 return type == MESSAGE || type == PACKAGE 277 CONSTRUCTOR(Descriptor , MESSAGE , descriptor ) 290 case MESSAGE : return descriptor ->file(); 448 // Allocate a protocol message object. Some older versions of GCC have 459 vector<Message*> messages_; // All messages in the pool. 3273 string message; local [all...] |
wire_format.cc | 154 // Must be the end of the message. 250 // Write message. 279 // Write message. 365 Message* message) { 366 const Descriptor* descriptor = message->GetDescriptor(); 367 const Reflection* message_reflection = message->GetReflection(); 378 // Must be the end of the message. 403 if (!ParseAndMergeMessageSetItem(input, message)) { 410 if (!ParseAndMergeField(tag, field, message, input)) [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/static/ |
forms.js | 49 MESSAGE: 'MESSAGE', 74 * Display error message in error panel. 75 * @param {string} message Message to display in panel. 77 function error(message) { 78 $('<div>').appendTo($('#error-messages')).text(message); 106 * @param {Object} request Message to send as request. 171 * Build nested message field. 210 } else if (form.field.variant == VARIANT.MESSAGE) { [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.equinox.event_1.2.0.v20100503.jar | |
org.eclipse.equinox.launcher.jar | |
org.eclipse.equinox.launcher_1.1.0.v20100507.jar | |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/ |
LintFixGenerator.java | 133 resolutions.add(new MoreInfoProposal(id, marker.getAttribute(IMarker.MESSAGE, null))); 190 String message = marker.getAttribute(IMarker.MESSAGE, null); local 191 proposals.add(new MoreInfoProposal(id, message)); 478 public MoreInfoProposal(String id, String message) { 480 mMessage = message;
|
LintColumn.java | 167 String message = marker.getAttribute(IMarker.MESSAGE, ""); local 168 styledString.append(message); 172 styledString.append(String.format(" (%2$d items)", message, count),
|
AddSuppressAnnotation.java | 337 String message = marker.getAttribute(IMarker.MESSAGE, null); local 338 if (message != null) { 340 Matcher matcher = pattern.matcher(message);
|
/developers/build/prebuilts/gradle/LNotifications/Application/src/main/java/com/example/android/lnotifications/ |
OtherMetadataFragment.java | 305 MESSAGE("msg"),
|
/developers/samples/android/notification/LNotifications/Application/src/main/java/com/example/android/lnotifications/ |
OtherMetadataFragment.java | 305 MESSAGE("msg"),
|
/development/samples/browseable/LNotifications/src/com.example.android.lnotifications/ |
OtherMetadataFragment.java | 305 MESSAGE("msg"),
|
/external/protobuf/java/src/main/java/com/google/protobuf/ |
AbstractMessage.java | 44 * A partial implementation of the {@link Message} interface which implements 50 implements Message { 103 if (!(other instanceof Message)) { 106 final Message otherMessage = (Message) other; 153 * message to a mutable message. 225 * A partial implementation of the {@link Message.Builder} interface which 232 implements Message.Builder { 272 public BuilderType mergeFrom(final Message other) [all...] |
/external/protobuf/java/src/test/java/com/google/protobuf/ |
DescriptorsTest.java | 231 assertEquals(FieldDescriptor.Type.MESSAGE, messageField.getType()); 232 assertEquals(FieldDescriptor.JavaType.MESSAGE, messageField.getJavaType()); 463 // Expected; check that the error message contains some useful hints 473 * Tests the translate/crosslink for an example where a message field's name 515 assertTrue(fieldlist.get(0).getType() == FieldDescriptor.Type.MESSAGE); 720 .setName("Message")
|
/external/v8/tools/release/ |
common_includes.py | 137 """Grep for "BUG=xxxx" lines in the commit message and convert them to 320 def Tag(self, tag, remote, message): 323 Assumptions: The commit already landed and the commit message is unique. 379 def Tag(self, tag, remote, message): 380 # Wait for the commit to appear. Assumes unique commit message titles (this 386 commit = self.step.GitLog(n=1, format="%H", grep=message, branch=remote) 695 # base on master through the commit message. 741 MESSAGE = "Bootstrapping checkout and state." 757 MESSAGE = "Upload for code review." 779 message = step_class.MESSAG [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/ |
SerializationStressTest.java | 148 static final java.text.MessageFormat MESSAGE = new java.text.MessageFormat( 190 MESSAGE.setFormat(0, DATEFORM); 191 MESSAGE.setFormat(1, DATEFORM); [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/ |
messages.py | 23 Message: Base class for user defined messages. 29 MessageField: Field for other message type values. 38 MessageDefinitionError: Raised when message is incorrectly defined. 40 ValidationError: Raised when a message or field is not valid. 62 'Message', 113 """Message definition error.""" 125 """Error found decoding message from encoded form.""" 129 """Error found when encoding message.""" 133 """Invalid value for message error.""" 137 message = Error.__str__(self [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/experimental/javascript/ |
protorpc.js | 25 goog.require('ProtoRpc.Message'); 125 * The Rpc's request message. 149 * The Rpc's Error Message, if error. 183 * Try to parse RpcStatus from message. 240 * @return {Object} The response message from RPC. 260 error.message = this.errorMessage_; 328 ProtoRpc.Serializer.prototype.serialize = function(message) { 329 var descriptor = message.getDescriptor(); 337 if (message.has(field)) { 342 var repeatedValues = message.get(field) [all...] |
/external/mesa3d/src/mesa/drivers/osmesa/ |
osmesa.c | [all...] |
/external/mesa3d/src/mesa/drivers/x11/ |
glxapi.c | 70 #define DISPATCH(FUNC, ARGS, MESSAGE) \ 73 #define RETURN_DISPATCH(FUNC, ARGS, MESSAGE) \ [all...] |
/external/cblas/testing/ |
c_dblat1.f | 638 * PRINT FAIL MESSAGE AND HEADER. 714 * PRINT FAIL MESSAGE AND HEADER.
|
c_sblat1.f | 638 * PRINT FAIL MESSAGE AND HEADER. 714 * PRINT FAIL MESSAGE AND HEADER.
|
/prebuilts/tools/common/m2/repository/com/android/tools/external/libprotobuf-java-lite/2.3.0/ |
libprotobuf-java-lite-2.3.0.jar | |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/ |
AaptParser.java | 129 * Portion of the error message which states the context in which the error occurred, 141 * Portion of error message which points to the second occurrence of a repeated resource 151 * Error message emitted when aapt skips a file because for example it's name is 154 * This error message is used by AAPT in Tools 19 and earlier. 160 * Error message emitted when aapt skips a file because for example it's name is 163 * This error message is used by AAPT in Tools 20 and later. 169 * Suffix of error message which points to the first occurrence of a repeated resource 177 * Portion of error message which points to the second occurrence of a repeated resource 187 * Portion of error message which points to a missing required attribute in a 248 // we ignore those (as this is an ignore message from aapt [all...] |