/aosp_15_r20/external/python/apitools/apitools/base/protorpclite/ |
D | messages_test.py | 18 """Tests for apitools.base.protorpclite.messages.""" 29 from apitools.base.protorpclite import messages 51 MODULE = messages 59 str(messages.ValidationError('Validation error'))) 63 validation_error = messages.ValidationError('Validation error') 77 class Color(messages.Enum): 153 self.assertRaises(messages.EnumDefinitionError, 174 WeekDay = messages.Enum.def_enum({'Monday': 1, 188 self.assertRaises(messages.EnumDefinitionError, 189 messages.Enum.def_enum, [all …]
|
D | descriptor.py | 42 class Pixel(messages.Message): 44 x = messages.IntegerField(1, required=True) 45 y = messages.IntegerField(2, required=True) 47 color = messages.BytesField(3) 101 from apitools.base.protorpclite import messages 133 messages.IntegerField: six.text_type, 134 messages.FloatField: six.text_type, 135 messages.BooleanField: lambda value: value and u'true' or u'false', 136 messages.BytesField: lambda value: codecs.escape_encode(value)[0], 137 messages.StringField: lambda value: value, [all …]
|
D | test_util.py | 42 from apitools.base.protorpclite import messages 264 class NestedMessage(messages.Message): 267 a_value = messages.StringField(1, required=True) 270 class HasNestedMessage(messages.Message): 273 nested = messages.MessageField(NestedMessage, 1) 274 repeated_nested = messages.MessageField(NestedMessage, 2, repeated=True) 277 class HasDefault(messages.Message): 280 a_value = messages.StringField(1, default=u'a default') 283 class OptionalMessage(messages.Message): 286 class SimpleEnum(messages.Enum): [all …]
|
/aosp_15_r20/external/openthread/tests/unit/ |
H A D | test_message_queue.cpp | 48 // This function verifies the content of the message queue to match the passed in messages 108 Message *messages[kNumTestMessages]; in TestMessageQueue() local 116 for (Message *&msg : messages) in TestMessageQueue() 125 messageQueue.Enqueue(*messages[0]); in TestMessageQueue() 126 VerifyMessageQueueContent(messageQueue, 1, messages[0]); in TestMessageQueue() 127 messageQueue.Dequeue(*messages[0]); in TestMessageQueue() 131 messageQueue.Enqueue(*messages[0], MessageQueue::kQueuePositionHead); in TestMessageQueue() 132 VerifyMessageQueueContent(messageQueue, 1, messages[0]); in TestMessageQueue() 133 messageQueue.Dequeue(*messages[0]); in TestMessageQueue() 136 // Enqueue 5 messages in TestMessageQueue() [all …]
|
/aosp_15_r20/external/golang-protobuf/internal/impl/ |
H A D | legacy_file_test.go | 67 want: fileDescP2_20160225.Messages().ByName("Message").Enums().ByName("ChildEnum"), 70 want: fileDescP2_20160225.Messages().ByName("SiblingMessage"), 73 want: fileDescP2_20160225.Messages().ByName("Message").Messages().ByName("ChildMessage"), 76 want: fileDescP2_20160225.Messages().ByName("Message"), 79 want: fileDescP2_20160225.Messages().ByName("Message").Messages().ByName("NamedGroup"), 82 want: fileDescP2_20160225.Messages().ByName("Message").Messages().ByName("OptionalGroup"), 85 want: fileDescP2_20160225.Messages().ByName("Message").Messages().ByName("RequiredGroup"), 88 want: fileDescP2_20160225.Messages().ByName("Message").Messages().ByName("RepeatedGroup"), 91 want: fileDescP2_20160225.Messages().ByName("Message").Messages().ByName("OneofGroup"), 94 …want: fileDescP2_20160225.Messages().ByName("Message").Messages().ByName("ExtensionOptionalGroup"), [all …]
|
/aosp_15_r20/external/private-join-and-compute/private_join_and_compute/crypto/dodis_yampolskiy_prf/ |
H A D | bb_oblivious_signature_test.cc | 135 // Generates random messages appropriate for a signature request. 137 std::vector<BigNum> messages; in GenerateRandomMessages() local 138 messages.reserve(num_messages); in GenerateRandomMessages() 140 messages.push_back(ec_group_->GeneratePrivateKey()); in GenerateRandomMessages() 142 return messages; in GenerateRandomMessages() 161 StatusOr<Transcript> GenerateTranscript(const std::vector<BigNum>& messages) { in GenerateTranscript() argument 166 pedersen_->Commit(messages)); in GenerateTranscript() 171 transcript.rs.reserve(messages.size()); in GenerateTranscript() 172 for (size_t i = 0; i < messages.size(); ++i) { in GenerateTranscript() 187 messages, transcript.rs, public_key_proto_, in GenerateTranscript() [all …]
|
/aosp_15_r20/external/grpc-grpc-java/benchmarks/src/generated/main/grpc/io/grpc/benchmarks/proto/ |
H A D | BenchmarkServiceGrpc.java | 18 private static volatile io.grpc.MethodDescriptor<io.grpc.benchmarks.proto.Messages.SimpleRequest, 19 io.grpc.benchmarks.proto.Messages.SimpleResponse> getUnaryCallMethod; 23 requestType = io.grpc.benchmarks.proto.Messages.SimpleRequest.class, 24 responseType = io.grpc.benchmarks.proto.Messages.SimpleResponse.class, 26 public static io.grpc.MethodDescriptor<io.grpc.benchmarks.proto.Messages.SimpleRequest, 27 io.grpc.benchmarks.proto.Messages.SimpleResponse> getUnaryCallMethod() { in getUnaryCallMethod() 28 ….grpc.MethodDescriptor<io.grpc.benchmarks.proto.Messages.SimpleRequest, io.grpc.benchmarks.proto.M… in getUnaryCallMethod() 33 …grpc.MethodDescriptor.<io.grpc.benchmarks.proto.Messages.SimpleRequest, io.grpc.benchmarks.proto.M… in getUnaryCallMethod() 38 io.grpc.benchmarks.proto.Messages.SimpleRequest.getDefaultInstance())) in getUnaryCallMethod() 40 io.grpc.benchmarks.proto.Messages.SimpleResponse.getDefaultInstance())) in getUnaryCallMethod() [all …]
|
/aosp_15_r20/external/grpc-grpc-java/android-interop-testing/src/generated/debug/grpc/io/grpc/testing/integration/ |
H A D | TestServiceGrpc.java | 52 …private static volatile io.grpc.MethodDescriptor<io.grpc.testing.integration.Messages.SimpleReques… 53 io.grpc.testing.integration.Messages.SimpleResponse> getUnaryCallMethod; 57 requestType = io.grpc.testing.integration.Messages.SimpleRequest.class, 58 responseType = io.grpc.testing.integration.Messages.SimpleResponse.class, 60 public static io.grpc.MethodDescriptor<io.grpc.testing.integration.Messages.SimpleRequest, 61 io.grpc.testing.integration.Messages.SimpleResponse> getUnaryCallMethod() { in getUnaryCallMethod() 62 ….MethodDescriptor<io.grpc.testing.integration.Messages.SimpleRequest, io.grpc.testing.integration.… in getUnaryCallMethod() 67 …MethodDescriptor.<io.grpc.testing.integration.Messages.SimpleRequest, io.grpc.testing.integration.… in getUnaryCallMethod() 72 io.grpc.testing.integration.Messages.SimpleRequest.getDefaultInstance())) in getUnaryCallMethod() 74 io.grpc.testing.integration.Messages.SimpleResponse.getDefaultInstance())) in getUnaryCallMethod() [all …]
|
H A D | LoadBalancerStatsServiceGrpc.java | 21 …private static volatile io.grpc.MethodDescriptor<io.grpc.testing.integration.Messages.LoadBalancer… 22 io.grpc.testing.integration.Messages.LoadBalancerStatsResponse> getGetClientStatsMethod; 26 requestType = io.grpc.testing.integration.Messages.LoadBalancerStatsRequest.class, 27 responseType = io.grpc.testing.integration.Messages.LoadBalancerStatsResponse.class, 29 …public static io.grpc.MethodDescriptor<io.grpc.testing.integration.Messages.LoadBalancerStatsReque… 30 io.grpc.testing.integration.Messages.LoadBalancerStatsResponse> getGetClientStatsMethod() { in getGetClientStatsMethod() 31 …odDescriptor<io.grpc.testing.integration.Messages.LoadBalancerStatsRequest, io.grpc.testing.integr… in getGetClientStatsMethod() 36 …dDescriptor.<io.grpc.testing.integration.Messages.LoadBalancerStatsRequest, io.grpc.testing.integr… in getGetClientStatsMethod() 41 … io.grpc.testing.integration.Messages.LoadBalancerStatsRequest.getDefaultInstance())) in getGetClientStatsMethod() 43 … io.grpc.testing.integration.Messages.LoadBalancerStatsResponse.getDefaultInstance())) in getGetClientStatsMethod() [all …]
|
/aosp_15_r20/external/grpc-grpc-java/android-interop-testing/src/generated/release/grpc/io/grpc/testing/integration/ |
H A D | TestServiceGrpc.java | 52 …private static volatile io.grpc.MethodDescriptor<io.grpc.testing.integration.Messages.SimpleReques… 53 io.grpc.testing.integration.Messages.SimpleResponse> getUnaryCallMethod; 57 requestType = io.grpc.testing.integration.Messages.SimpleRequest.class, 58 responseType = io.grpc.testing.integration.Messages.SimpleResponse.class, 60 public static io.grpc.MethodDescriptor<io.grpc.testing.integration.Messages.SimpleRequest, 61 io.grpc.testing.integration.Messages.SimpleResponse> getUnaryCallMethod() { in getUnaryCallMethod() 62 ….MethodDescriptor<io.grpc.testing.integration.Messages.SimpleRequest, io.grpc.testing.integration.… in getUnaryCallMethod() 67 …MethodDescriptor.<io.grpc.testing.integration.Messages.SimpleRequest, io.grpc.testing.integration.… in getUnaryCallMethod() 72 io.grpc.testing.integration.Messages.SimpleRequest.getDefaultInstance())) in getUnaryCallMethod() 74 io.grpc.testing.integration.Messages.SimpleResponse.getDefaultInstance())) in getUnaryCallMethod() [all …]
|
H A D | LoadBalancerStatsServiceGrpc.java | 21 …private static volatile io.grpc.MethodDescriptor<io.grpc.testing.integration.Messages.LoadBalancer… 22 io.grpc.testing.integration.Messages.LoadBalancerStatsResponse> getGetClientStatsMethod; 26 requestType = io.grpc.testing.integration.Messages.LoadBalancerStatsRequest.class, 27 responseType = io.grpc.testing.integration.Messages.LoadBalancerStatsResponse.class, 29 …public static io.grpc.MethodDescriptor<io.grpc.testing.integration.Messages.LoadBalancerStatsReque… 30 io.grpc.testing.integration.Messages.LoadBalancerStatsResponse> getGetClientStatsMethod() { in getGetClientStatsMethod() 31 …odDescriptor<io.grpc.testing.integration.Messages.LoadBalancerStatsRequest, io.grpc.testing.integr… in getGetClientStatsMethod() 36 …dDescriptor.<io.grpc.testing.integration.Messages.LoadBalancerStatsRequest, io.grpc.testing.integr… in getGetClientStatsMethod() 41 … io.grpc.testing.integration.Messages.LoadBalancerStatsRequest.getDefaultInstance())) in getGetClientStatsMethod() 43 … io.grpc.testing.integration.Messages.LoadBalancerStatsResponse.getDefaultInstance())) in getGetClientStatsMethod() [all …]
|
/aosp_15_r20/external/python/apitools/apitools/base/py/ |
D | list_pager_test.py | 25 import fusiontables_v1_messages as messages unknown 73 messages.FusiontablesColumnListRequest( 78 messages.ColumnList( 80 messages.Column(name='c0'), 81 messages.Column(name='c1'), 82 messages.Column(name='c2'), 83 messages.Column(name='c3'), 88 messages.FusiontablesColumnListRequest( 93 messages.ColumnList( 95 messages.Column(name='c4'), [all …]
|
D | encoding_test.py | 23 from apitools.base.protorpclite import messages 30 class SimpleMessage(messages.Message): 31 field = messages.StringField(1) 32 repfield = messages.StringField(2, repeated=True) 35 class BytesMessage(messages.Message): 36 field = messages.BytesField(1) 37 repfield = messages.BytesField(2, repeated=True) 40 class TimeMessage(messages.Message): 45 class AdditionalPropertiesMessage(messages.Message): 47 class AdditionalProperty(messages.Message): [all …]
|
/aosp_15_r20/external/grpc-grpc-java/interop-testing/src/generated/main/grpc/io/grpc/testing/integration/ |
H A D | TestServiceGrpc.java | 53 …private static volatile io.grpc.MethodDescriptor<io.grpc.testing.integration.Messages.SimpleReques… 54 io.grpc.testing.integration.Messages.SimpleResponse> getUnaryCallMethod; 58 requestType = io.grpc.testing.integration.Messages.SimpleRequest.class, 59 responseType = io.grpc.testing.integration.Messages.SimpleResponse.class, 61 public static io.grpc.MethodDescriptor<io.grpc.testing.integration.Messages.SimpleRequest, 62 io.grpc.testing.integration.Messages.SimpleResponse> getUnaryCallMethod() { in getUnaryCallMethod() 63 ….MethodDescriptor<io.grpc.testing.integration.Messages.SimpleRequest, io.grpc.testing.integration.… in getUnaryCallMethod() 68 …MethodDescriptor.<io.grpc.testing.integration.Messages.SimpleRequest, io.grpc.testing.integration.… in getUnaryCallMethod() 73 io.grpc.testing.integration.Messages.SimpleRequest.getDefaultInstance())) in getUnaryCallMethod() 75 io.grpc.testing.integration.Messages.SimpleResponse.getDefaultInstance())) in getUnaryCallMethod() [all …]
|
H A D | LoadBalancerStatsServiceGrpc.java | 21 …private static volatile io.grpc.MethodDescriptor<io.grpc.testing.integration.Messages.LoadBalancer… 22 io.grpc.testing.integration.Messages.LoadBalancerStatsResponse> getGetClientStatsMethod; 26 requestType = io.grpc.testing.integration.Messages.LoadBalancerStatsRequest.class, 27 responseType = io.grpc.testing.integration.Messages.LoadBalancerStatsResponse.class, 29 …public static io.grpc.MethodDescriptor<io.grpc.testing.integration.Messages.LoadBalancerStatsReque… 30 io.grpc.testing.integration.Messages.LoadBalancerStatsResponse> getGetClientStatsMethod() { in getGetClientStatsMethod() 31 …odDescriptor<io.grpc.testing.integration.Messages.LoadBalancerStatsRequest, io.grpc.testing.integr… in getGetClientStatsMethod() 36 …dDescriptor.<io.grpc.testing.integration.Messages.LoadBalancerStatsRequest, io.grpc.testing.integr… in getGetClientStatsMethod() 41 … io.grpc.testing.integration.Messages.LoadBalancerStatsRequest.getDefaultInstance())) in getGetClientStatsMethod() 43 … io.grpc.testing.integration.Messages.LoadBalancerStatsResponse.getDefaultInstance())) in getGetClientStatsMethod() [all …]
|
/aosp_15_r20/external/skia/tests/ |
H A D | MessageBusTest.cpp | 42 // Send two messages. in DECLARE_SKMESSAGEBUS_MESSAGE() 49 TArray<TestMessage> messages; in DECLARE_SKMESSAGEBUS_MESSAGE() local 50 inbox1.poll(&messages); in DECLARE_SKMESSAGEBUS_MESSAGE() 51 REPORTER_ASSERT(r, 2 == messages.size()); in DECLARE_SKMESSAGEBUS_MESSAGE() 52 REPORTER_ASSERT(r, 5 == messages[0].x); in DECLARE_SKMESSAGEBUS_MESSAGE() 53 REPORTER_ASSERT(r, 6 == messages[1].x); in DECLARE_SKMESSAGEBUS_MESSAGE() 58 inbox1.poll(&messages); in DECLARE_SKMESSAGEBUS_MESSAGE() 59 REPORTER_ASSERT(r, 1 == messages.size()); in DECLARE_SKMESSAGEBUS_MESSAGE() 60 REPORTER_ASSERT(r, 1 == messages[0].x); in DECLARE_SKMESSAGEBUS_MESSAGE() 63 inbox1.poll(&messages); in DECLARE_SKMESSAGEBUS_MESSAGE() [all …]
|
/aosp_15_r20/external/cronet/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
H A D | RepeatedFieldBuilder.java | 44 * repeated field of other protocol messages. It supports the classical use case of adding immutable 51 * Logically, one can think of a tree of builders as converting the entire tree to messages when 54 * RepeatedFieldBuilder} classes cache messages that were created so that messages only need to be 71 // List of messages. Never null. It may be immutable, in which case 73 private List<MType> messages; field in RepeatedFieldBuilder 75 // Whether messages is an mutable array that can be modified. 82 // Here are the invariants for messages and builders: 83 // 1. messages is never null and its count corresponds to the number of items 85 // 2. If builders is non-null, messages and builders MUST always 88 // either a Message in messages or a builder in builders. [all …]
|
H A D | RepeatedFieldBuilderV3.java | 44 * repeated field of other protocol messages. It supports the classical use case of adding immutable 51 * Logically, one can think of a tree of builders as converting the entire tree to messages when 54 * RepeatedFieldBuilderV3} classes cache messages that were created so that messages only need to be 71 // List of messages. Never null. It may be immutable, in which case 73 private List<MType> messages; field in RepeatedFieldBuilderV3 75 // Whether messages is an mutable array that can be modified. 82 // Here are the invariants for messages and builders: 83 // 1. messages is never null and its count corresponds to the number of items 85 // 2. If builders is non-null, messages and builders MUST always 88 // either a Message in messages or a builder in builders. [all …]
|
/aosp_15_r20/external/protobuf/java/core/src/main/java/com/google/protobuf/ |
H A D | RepeatedFieldBuilderV3.java | 44 * repeated field of other protocol messages. It supports the classical use case of adding immutable 51 * Logically, one can think of a tree of builders as converting the entire tree to messages when 54 * RepeatedFieldBuilderV3} classes cache messages that were created so that messages only need to be 71 // List of messages. Never null. It may be immutable, in which case 73 private List<MType> messages; field in RepeatedFieldBuilderV3 75 // Whether messages is an mutable array that can be modified. 82 // Here are the invariants for messages and builders: 83 // 1. messages is never null and its count corresponds to the number of items 85 // 2. If builders is non-null, messages and builders MUST always 88 // either a Message in messages or a builder in builders. [all …]
|
H A D | RepeatedFieldBuilder.java | 44 * repeated field of other protocol messages. It supports the classical use case of adding immutable 51 * Logically, one can think of a tree of builders as converting the entire tree to messages when 54 * RepeatedFieldBuilder} classes cache messages that were created so that messages only need to be 71 // List of messages. Never null. It may be immutable, in which case 73 private List<MType> messages; field in RepeatedFieldBuilder 75 // Whether messages is an mutable array that can be modified. 82 // Here are the invariants for messages and builders: 83 // 1. messages is never null and its count corresponds to the number of items 85 // 2. If builders is non-null, messages and builders MUST always 88 // either a Message in messages or a builder in builders. [all …]
|
/aosp_15_r20/external/python/apitools/apitools/gen/ |
D | extended_descriptor.py | 38 from apitools.base.protorpclite import messages 42 class ExtendedEnumValueDescriptor(messages.Message): 51 name = messages.StringField(1) 52 number = messages.IntegerField(2, variant=messages.Variant.INT32) 54 description = messages.StringField(100) 57 class ExtendedEnumDescriptor(messages.Message): 69 class JsonEnumMapping(messages.Message): 72 python_name = messages.StringField(1) 73 json_name = messages.StringField(2) 75 name = messages.StringField(1) [all …]
|
/aosp_15_r20/out/soong/raw-aosp_shiba/3b/ |
D | 3b67f7998fa8ed3bd8ddff987ac67786756e10c2 | 99 …xcept-detail-messages/art-run-test-201-built-in-except-detail-messages/android_common/javac/art-ru… 100 …xcept-detail-messages/art-run-test-201-built-in-except-detail-messages/android_common/javac/art-ru… 127 …messages/art-run-test-201-built-in-except-detail-messages/android_common/lint-srcs.list.rsp __SBOX… 130 …termediates/art/test/201-built-in-except-detail-messages/art-run-test-201-built-in-except-detail-m… 134 …termediates/art/test/201-built-in-except-detail-messages/art-run-test-201-built-in-except-detail-m… 138 …termediates/art/test/201-built-in-except-detail-messages/art-run-test-201-built-in-except-detail-m… 142 …termediates/art/test/201-built-in-except-detail-messages/art-run-test-201-built-in-except-detail-m… 146 …termediates/art/test/201-built-in-except-detail-messages/art-run-test-201-built-in-except-detail-m… 150 …termediates/art/test/201-built-in-except-detail-messages/art-run-test-201-built-in-except-detail-m… 154 …termediates/art/test/201-built-in-except-detail-messages/art-run-test-201-built-in-except-detail-m… [all …]
|
/aosp_15_r20/external/anonymous-counting-tokens/act/act_v0/ |
H A D | act_v0_test.cc | 135 absl::Span<const std::string> messages) { in GenerateTranscript() argument 141 messages, GetSchemeParameters(), in GenerateTranscript() 156 messages, transcript.tokens_request, in GenerateTranscript() 399 std::vector<std::string> messages = {"message_1", "message_2", "message_3"}; in TEST_F() local 400 ASSERT_OK_AND_ASSIGN(Transcript transcript, GenerateTranscript(messages)); in TEST_F() 427 std::vector<std::string> messages = {"message_1", "message_2", "message_3"}; in TEST_F() local 428 ASSERT_OK_AND_ASSIGN(Transcript transcript, GenerateTranscript(messages)); in TEST_F() 442 std::vector<std::string> messages = {"message_1", "message_2", "message_3"}; in TEST_F() local 443 ASSERT_OK_AND_ASSIGN(Transcript transcript_1, GenerateTranscript(messages)); in TEST_F() 444 ASSERT_OK_AND_ASSIGN(Transcript transcript_2, GenerateTranscript(messages)); in TEST_F() [all …]
|
/aosp_15_r20/external/google-cloud-java/java-dialogflow/proto-google-cloud-dialogflow-v2beta1/src/main/java/com/google/cloud/dialogflow/v2beta1/ |
H A D | ListMessagesResponse.java | 80 * Required. The list of messages. There will be a maximum number of items 82 * `messages` is sorted by `create_time` in descending order. 85 * <code>repeated .google.cloud.dialogflow.v2beta1.Message messages = 1;</code> 95 * Required. The list of messages. There will be a maximum number of items 97 * `messages` is sorted by `create_time` in descending order. 100 * <code>repeated .google.cloud.dialogflow.v2beta1.Message messages = 1;</code> 111 * Required. The list of messages. There will be a maximum number of items 113 * `messages` is sorted by `create_time` in descending order. 116 * <code>repeated .google.cloud.dialogflow.v2beta1.Message messages = 1;</code> 126 * Required. The list of messages. There will be a maximum number of items [all …]
|
/aosp_15_r20/external/google-cloud-java/java-dialogflow/proto-google-cloud-dialogflow-v2/src/main/java/com/google/cloud/dialogflow/v2/ |
H A D | ListMessagesResponse.java | 80 * The list of messages. There will be a maximum number of items 82 * `messages` is sorted by `create_time` in descending order. 85 * <code>repeated .google.cloud.dialogflow.v2.Message messages = 1;</code> 95 * The list of messages. There will be a maximum number of items 97 * `messages` is sorted by `create_time` in descending order. 100 * <code>repeated .google.cloud.dialogflow.v2.Message messages = 1;</code> 111 * The list of messages. There will be a maximum number of items 113 * `messages` is sorted by `create_time` in descending order. 116 * <code>repeated .google.cloud.dialogflow.v2.Message messages = 1;</code> 126 * The list of messages. There will be a maximum number of items [all …]
|