/external/ImageMagick/config/ |
D | english.xml | 5 <!ELEMENT warning (message)+> 6 <!ELEMENT error (message)+> 7 <!ELEMENT fatalerror (message)+> 8 <!ELEMENT message (#PCDATA)> 10 <!ATTLIST message name CDATA #REQUIRED> 16 <message name="UnableToOpenBlob"> 18 </message> 19 <message name="UnableToOpenFile"> 21 </message> 22 <message name="UnableToReadBlob"> [all …]
|
D | francais.xml | 5 <!ELEMENT warning (message)+> 6 <!ELEMENT error (message)+> 7 <!ELEMENT fatalerror (message)+> 8 <!ELEMENT message (#PCDATA)> 10 <!ATTLIST message name CDATA #REQUIRED> 16 <message name="UnableToOpenBlob"> 18 </message> 19 <message name="UnableToOpenFile"> 21 </message> 22 <message name="UnableToReadBlob"> [all …]
|
/external/ImageMagick/www/source/ |
D | english.xml | 5 <!ELEMENT warning (message)+> 6 <!ELEMENT error (message)+> 7 <!ELEMENT fatalerror (message)+> 8 <!ELEMENT message (#PCDATA)> 10 <!ATTLIST message name CDATA #REQUIRED> 16 <message name="UnableToOpenBlob"> 18 </message> 19 <message name="UnableToOpenFile"> 21 </message> 22 <message name="UnableToReadBlob"> [all …]
|
D | francais.xml | 5 <!ELEMENT warning (message)+> 6 <!ELEMENT error (message)+> 7 <!ELEMENT fatalerror (message)+> 8 <!ELEMENT message (#PCDATA)> 10 <!ATTLIST message name CDATA #REQUIRED> 16 <message name="UnableToOpenBlob"> 18 </message> 19 <message name="UnableToOpenFile"> 21 </message> 22 <message name="UnableToReadBlob"> [all …]
|
/external/protobuf/src/google/protobuf/ |
D | test_util.cc | 43 #include <google/protobuf/message.h> 53 void TestUtil::SetAllFields(unittest::TestAllTypes* message) { in SetAllFields() argument 54 SetOptionalFields(message); in SetAllFields() 55 AddRepeatedFields1(message); in SetAllFields() 56 AddRepeatedFields2(message); in SetAllFields() 57 SetDefaultFields(message); in SetAllFields() 58 SetOneofFields(message); in SetAllFields() 61 void TestUtil::SetOptionalFields(unittest::TestAllTypes* message) { in SetOptionalFields() argument 62 message->set_optional_int32 (101); in SetOptionalFields() 63 message->set_optional_int64 (102); in SetOptionalFields() [all …]
|
D | test_util_lite.cc | 49 void TestUtilLite::SetAllFields(unittest::TestAllTypesLite* message) { in SetAllFields() argument 50 message->set_optional_int32 (101); in SetAllFields() 51 message->set_optional_int64 (102); in SetAllFields() 52 message->set_optional_uint32 (103); in SetAllFields() 53 message->set_optional_uint64 (104); in SetAllFields() 54 message->set_optional_sint32 (105); in SetAllFields() 55 message->set_optional_sint64 (106); in SetAllFields() 56 message->set_optional_fixed32 (107); in SetAllFields() 57 message->set_optional_fixed64 (108); in SetAllFields() 58 message->set_optional_sfixed32(109); in SetAllFields() [all …]
|
D | map_test_util_impl.h | 53 // Set every field in the TestMap message to a unique value. 56 static void SetMapFields(MapMessage* message); 58 // Set every field in the TestArenaMap message to a unique value. 61 static void SetArenaMapFields(MapMessage* message); 63 // Set every field in the message to a default value. 65 static void SetMapFieldsInitialized(MapMessage* message); 67 // Modify all the map fields of the message (which should already have been 70 static void ModifyMapFields(MapMessage* message); 76 static void ExpectMapFieldsSet(const MapMessage& message); 82 static void ExpectArenaMapFieldsSet(const MapMessage& message); [all …]
|
D | generated_message_reflection.h | 48 #include <google/protobuf/message.h> 90 // - Singular Message fields are stored as a pointer to a Message. These 104 // descriptor: The descriptor for the message type being implemented. 105 // default_instance: The default instance of the message. This is only 108 // sub-message has not been initialized yet. (Thus, all 109 // embedded message fields *must* have non-NULL pointers 112 // the start of the message object, of each field. These can 116 // has_bits_offset: Offset in the message of an array of uint32s of size 119 // corresponding field of the message has been initialized. 122 // unknown_fields_offset: Offset in the message of the UnknownFieldSet for [all …]
|
D | reflection_ops_unittest.cc | 52 unittest::TestAllTypes message; in TEST() local 54 TestUtil::SetAllFields(&message); in TEST() 55 TestUtil::ExpectAllFieldsSet(message); in TEST() 59 unittest::TestAllTypes message, message2; in TEST() local 61 TestUtil::SetAllFields(&message); in TEST() 63 ReflectionOps::Copy(message, &message2); in TEST() 73 unittest::TestAllExtensions message, message2; in TEST() local 75 TestUtil::SetAllExtensions(&message); in TEST() 77 ReflectionOps::Copy(message, &message2); in TEST() 83 unittest::TestOneof2 message, message2; in TEST() local [all …]
|
D | test_util.h | 40 #include <google/protobuf/message.h> 51 // Set every field in the message to a unique value. 52 static void SetAllFields(unittest::TestAllTypes* message); 53 static void SetOptionalFields(unittest::TestAllTypes* message); 54 static void AddRepeatedFields1(unittest::TestAllTypes* message); 55 static void AddRepeatedFields2(unittest::TestAllTypes* message); 56 static void SetDefaultFields(unittest::TestAllTypes* message); 57 static void SetOneofFields(unittest::TestAllTypes* message); 58 static void SetAllExtensions(unittest::TestAllExtensions* message); 59 static void SetOneofFields(unittest::TestAllExtensions* message); [all …]
|
D | message.h | 35 // Defines Message, the abstract interface implemented by non-lite 36 // protocol message objects. Although it's possible to implement this 42 // Say you have a message defined as: 44 // message Foo { 52 // string data; // Will store a serialized version of the message. 55 // // Create a message and serialize it. 66 // // Parse the serialized message and check that it contains the 79 // // Same as the last block, but do it dynamically via the Message 81 // Message* foo = new Foo; 96 // // Parse the message. [all …]
|
D | map_test_util.cc | 34 #include <google/protobuf/message.h> 39 void MapTestUtil::SetMapFields(unittest::TestMap* message) { in SetMapFields() argument 41 unittest::MAP_ENUM_BAZ>(message); in SetMapFields() 44 void MapTestUtil::SetArenaMapFields(unittest::TestArenaMap* message) { in SetArenaMapFields() argument 46 unittest::MAP_ENUM_BAZ>(message); in SetArenaMapFields() 49 void MapTestUtil::SetMapFieldsInitialized(unittest::TestMap* message) { in SetMapFieldsInitialized() argument 50 MapTestUtilImpl::SetMapFieldsInitialized(message); in SetMapFieldsInitialized() 53 void MapTestUtil::ModifyMapFields(unittest::TestMap* message) { in ModifyMapFields() argument 55 message); in ModifyMapFields() 58 void MapTestUtil::ExpectClear(const unittest::TestMap& message) { in ExpectClear() argument [all …]
|
/external/protobuf/objectivec/Tests/ |
D | GPBTestUtilities.m | 95 - (void)modifyRepeatedExtensions:(TestAllExtensions *)message { 96 [message setExtension:[UnittestRoot repeatedInt32Extension] 99 [message setExtension:[UnittestRoot repeatedInt64Extension] 102 [message setExtension:[UnittestRoot repeatedUint32Extension] 105 [message setExtension:[UnittestRoot repeatedUint64Extension] 108 [message setExtension:[UnittestRoot repeatedSint32Extension] 111 [message setExtension:[UnittestRoot repeatedSint64Extension] 114 [message setExtension:[UnittestRoot repeatedFixed32Extension] 117 [message setExtension:[UnittestRoot repeatedFixed64Extension] 120 [message setExtension:[UnittestRoot repeatedSfixed32Extension] [all …]
|
D | GPBPerfTests.m | 57 TestAllTypes* message = [[TestAllTypes alloc] init]; 58 [self setAllFields:message repeatedCount:kRepeatedCount]; 59 NSData* rawBytes = [message data]; 60 [message release]; 61 message = [[TestAllTypes alloc] initWithData:rawBytes error:NULL]; 62 [message release]; 70 TestAllExtensions* message = [[TestAllExtensions alloc] init]; 71 [self setAllExtensions:message repeatedCount:kRepeatedCount]; 72 NSData* rawBytes = [message data]; 73 [message release]; [all …]
|
D | GPBMessageTests.m | 54 TestAllTypes *message = [TestAllTypes message]; 55 [message setOptionalInt32:1]; 56 [message setOptionalString:@"foo"]; 57 [message setOptionalForeignMessage:[ForeignMessage message]]; 58 [message.repeatedStringArray addObject:@"bar"]; 59 return message; 63 TestAllTypes *message = [TestAllTypes message]; 64 [message setOptionalInt64:2]; 65 [message setOptionalString:@"baz"]; 66 ForeignMessage *foreignMessage = [ForeignMessage message]; [all …]
|
/external/boringssl/src/crypto/curve25519/ |
D | ed25519_tests.txt | 9 # (private, public, message, sig_and_message, _) = line.split(':') 15 # print "MESSAGE:", message 21 MESSAGE: 26 MESSAGE: 72 31 MESSAGE: af82 36 MESSAGE: cbc77b 41 MESSAGE: 5f4c8989 46 MESSAGE: 18b6bec097 51 MESSAGE: 89010d855972 56 MESSAGE: b4a8f381e70e7a [all …]
|
/external/protobuf/java/core/src/test/java/com/google/protobuf/ |
D | TestUtil.java | 245 * These are useful for testing various protocol message features, e.g. 246 * set all fields of a message, serialize it, parse it, and check that all 311 * Set every field of {@code message} to the values expected by 314 public static void setAllFields(TestAllTypes.Builder message) { in setAllFields() argument 315 message.setOptionalInt32 (101); in setAllFields() 316 message.setOptionalInt64 (102); in setAllFields() 317 message.setOptionalUint32 (103); in setAllFields() 318 message.setOptionalUint64 (104); in setAllFields() 319 message.setOptionalSint32 (105); in setAllFields() 320 message.setOptionalSint64 (106); in setAllFields() [all …]
|
/external/protobuf/python/google/protobuf/internal/ |
D | test_util.py | 47 # Tests whether the given TestAllTypes message is proto2 or not. 49 # for the proto2 version of the message. 50 def IsProto2(message): argument 51 return message.DESCRIPTOR.syntax == "proto2" 53 def SetAllNonLazyFields(message): argument 54 """Sets every non-lazy field in the message to a unique value. 57 message: A TestAllTypes instance. 64 message.optional_int32 = 101 65 message.optional_int64 = 102 66 message.optional_uint32 = 103 [all …]
|
D | json_format_test.py | 59 def FillAllFields(self, message): argument 60 message.int32_value = 20 61 message.int64_value = -20 62 message.uint32_value = 3120987654 63 message.uint64_value = 12345678900 64 message.float_value = float('-inf') 65 message.double_value = 3.1415 66 message.bool_value = True 67 message.string_value = 'foo' 68 message.bytes_value = b'bar' [all …]
|
D | text_format_test.py | 103 message = message_module.TestAllTypes() 104 message.repeated_int64.append(-9223372036854775808) 105 message.repeated_uint64.append(18446744073709551615) 106 message.repeated_double.append(123.456) 107 message.repeated_double.append(1.23e22) 108 message.repeated_double.append(1.23e-18) 109 message.repeated_string.append('\000\001\a\b\f\n\r\t\v\\\'"') 110 message.repeated_string.append(u'\u00fc\ua71f') 112 self.RemoveRedundantZeros(text_format.MessageToString(message)), 125 message = message_module.TestAllTypes() [all …]
|
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/lang/ |
D | wpa_gui_de.ts | 6 <message> 10 </message> 11 <message> 15 </message> 16 <message> 20 </message> 21 <message> 25 </message> 26 <message> 30 </message> [all …]
|
/external/python/google-api-python-client/docs/dyn/ |
D | gmail_v1.users.messages.html | 84 <p class="firstline">Deletes many messages by message ID. Provides no guarantees that messages were… 90 <p class="firstline">Immediately and permanently deletes the specified message. This operation cann… 93 <p class="firstline">Gets the specified message.</p> 96 … message into only this user's mailbox, with standard email delivery scanning and classification s… 99 …y inserts a message into only this user's mailbox similar to IMAP APPEND, bypassing most scanning … 108 <p class="firstline">Modifies the labels on the specified message.</p> 111 <p class="firstline">Sends the specified message to the recipients in the To, Cc, and Bcc headers.<… 114 <p class="firstline">Moves the specified message to the trash.</p> 117 <p class="firstline">Removes the specified message from the trash.</p> 121 …<pre>Deletes many messages by message ID. Provides no guarantees that messages were not already de… [all …]
|
D | gmail_v1.users.drafts.html | 109 "message": { # An email message. # The message content of the draft. 110 …al message creation timestamp (epoch ms), which determines ordering in the inbox. For normal SMTP-… 111 "historyId": "A String", # The ID of the last history record that modified this message. 112 "payload": { # A single MIME message part. # The parsed email structure in the message parts. 113 … The body of a single MIME message part. # The message part body for this part, which may be empty… 114 … The body data of a MIME message part as a base64url encoded string. May be empty for MIME contain… 115 …ges.attachments.get request. When not present, the entire content of the message part body is cont… 116 "size": 42, # Number of bytes for the message part data (encoding notwithstanding). 118 "mimeType": "A String", # The MIME type of the message part. 119 "partId": "A String", # The immutable ID of the message part. [all …]
|
D | gmail_v1.users.history.html | 93 …. The supplied startHistoryId should be obtained from the historyId of a message, thread, or previ… 111 "labelIds": [ # Label IDs added to the message. 114 "message": { # An email message. 115 …al message creation timestamp (epoch ms), which determines ordering in the inbox. For normal SMTP-… 116 … "historyId": "A String", # The ID of the last history record that modified this message. 117 … "payload": { # A single MIME message part. # The parsed email structure in the message parts. 118 … The body of a single MIME message part. # The message part body for this part, which may be empty… 119 … The body data of a MIME message part as a base64url encoded string. May be empty for MIME contain… 120 …ges.attachments.get request. When not present, the entire content of the message part body is cont… 121 … "size": 42, # Number of bytes for the message part data (encoding notwithstanding). [all …]
|
/external/protobuf/csharp/src/Google.Protobuf.Test/Reflection/ |
D | FieldAccessTest.cs | 46 var message = SampleMessages.CreateFullTestAllTypes(); in GetValue() 48 …Assert.AreEqual(message.SingleBool, fields[TestAllTypes.SingleBoolFieldNumber].Accessor.GetValue(m… in GetValue() 49 …Assert.AreEqual(message.SingleBytes, fields[TestAllTypes.SingleBytesFieldNumber].Accessor.GetValue… in GetValue() 50 …Assert.AreEqual(message.SingleDouble, fields[TestAllTypes.SingleDoubleFieldNumber].Accessor.GetVal… in GetValue() 51 …Assert.AreEqual(message.SingleFixed32, fields[TestAllTypes.SingleFixed32FieldNumber].Accessor.GetV… in GetValue() 52 …Assert.AreEqual(message.SingleFixed64, fields[TestAllTypes.SingleFixed64FieldNumber].Accessor.GetV… in GetValue() 53 …Assert.AreEqual(message.SingleFloat, fields[TestAllTypes.SingleFloatFieldNumber].Accessor.GetValue… in GetValue() 54 …Assert.AreEqual(message.SingleForeignEnum, fields[TestAllTypes.SingleForeignEnumFieldNumber].Acces… in GetValue() 55 …Assert.AreEqual(message.SingleForeignMessage, fields[TestAllTypes.SingleForeignMessageFieldNumber]… in GetValue() 56 …Assert.AreEqual(message.SingleImportEnum, fields[TestAllTypes.SingleImportEnumFieldNumber].Accesso… in GetValue() [all …]
|