/external/protobuf/php/tests/ |
D | wrapper_type_setters_test.php | 8 use Google\Protobuf\BytesValue; alias 120 …[TestWrapperSetters::class, BytesValue::class, "setBytesValue", "setBytesValueUnwrapped", "getByte… 121 ["asdf", new BytesValue(["value" => "asdf"])], 122 ["", new BytesValue(["value" => ""])], 124 ["", new BytesValue()], 125 [5, new BytesValue(["value" => "5"])], // Test conversion from number to bytes 126 [5.5, new BytesValue(["value" => "5.5"])], // Test conversion from number to bytes 127 [-7, new BytesValue(["value" => "-7"])], // Test conversion from number to bytes 128 [-7.5, new BytesValue(["value" => "-7.5"])], // Test conversion from number to bytes 200 [TestWrapperSetters::class, "setBytesValueUnwrapped", new BytesValue()], [all …]
|
D | encode_decode_test.php | 25 use Google\Protobuf\BytesValue; alias 158 $m = new BytesValue(); 165 $m = new BytesValue(); 180 $m = new BytesValue();
|
D | well_known_test.php | 10 use Google\Protobuf\BytesValue; alias 392 $m = new BytesValue();
|
/external/golang-protobuf/ptypes/wrappers/ |
D | wrappers.pb.go | 386 type BytesValue struct { struct 394 func (m *BytesValue) Reset() { *m = BytesValue{} } argument 395 func (m *BytesValue) String() string { return proto.CompactTextString(m) } argument 396 func (*BytesValue) ProtoMessage() {} argument 397 func (*BytesValue) Descriptor() ([]byte, []int) { argument 401 func (*BytesValue) XXX_WellKnownType() string { return "BytesValue" } argument 403 func (m *BytesValue) XXX_Unmarshal(b []byte) error { argument 406 func (m *BytesValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { argument 409 func (m *BytesValue) XXX_Merge(src proto.Message) { argument 412 func (m *BytesValue) XXX_Size() int { argument [all …]
|
D | wrappers.proto | 119 // The JSON representation for `BytesValue` is JSON string. 120 message BytesValue { message
|
/external/protobuf/src/google/protobuf/ |
D | wrappers.pb.h | 61 class BytesValue; variable 88 …> PROTOBUF_EXPORT PROTOBUF_NAMESPACE_ID::BytesValue* Arena::CreateMaybeMessage<PROTOBUF_NAMESPACE_… 1348 class PROTOBUF_EXPORT BytesValue : 1351 BytesValue(); 1352 virtual ~BytesValue(); 1354 BytesValue(const BytesValue& from); 1355 BytesValue(BytesValue&& from) noexcept in BytesValue() function 1356 : BytesValue() { in BytesValue() 1360 inline BytesValue& operator=(const BytesValue& from) { 1364 inline BytesValue& operator=(BytesValue&& from) noexcept { [all …]
|
D | wrappers.pb.cc | 53 ::PROTOBUF_NAMESPACE_ID::internal::ExplicitlyConstructed<BytesValue> _instance; 75 new (ptr) PROTOBUF_NAMESPACE_ID::BytesValue(); in InitDefaultsscc_info_BytesValue_google_2fprotobuf_2fwrappers_2eproto() 78 PROTOBUF_NAMESPACE_ID::BytesValue::InitAsDefaultInstance(); in InitDefaultsscc_info_BytesValue_google_2fprotobuf_2fwrappers_2eproto() 236 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::BytesValue, _internal_metadata_), 240 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::BytesValue, value_), 251 { 48, -1, sizeof(PROTOBUF_NAMESPACE_ID::BytesValue)}, 2434 void BytesValue::InitAsDefaultInstance() { in InitAsDefaultInstance() 2436 class BytesValue::_Internal { 2440 BytesValue::BytesValue() in BytesValue() function in BytesValue 2445 BytesValue::BytesValue(::PROTOBUF_NAMESPACE_ID::Arena* arena) in BytesValue() function in BytesValue [all …]
|
D | unittest_well_known_types.proto | 41 google.protobuf.BytesValue bytes_field = 18; 66 repeated google.protobuf.BytesValue bytes_field = 18; 88 google.protobuf.BytesValue bytes_field = 18; 113 map<int32,google.protobuf.BytesValue> bytes_field = 18;
|
D | wrappers.proto | 119 // The JSON representation for `BytesValue` is JSON string. 120 message BytesValue { message
|
D | test_messages_proto3.proto | 184 google.protobuf.BytesValue optional_bytes_wrapper = 209; 194 repeated google.protobuf.BytesValue repeated_bytes_wrapper = 219;
|
/external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/ |
D | Wrappers.cs | 48 …ypeof(global::Google.Protobuf.WellKnownTypes.BytesValue), global::Google.Protobuf.WellKnownTypes.B… in WrappersReflection() 1156 public sealed partial class BytesValue : pb::IMessage<BytesValue> { class 1157 …ate static readonly pb::MessageParser<BytesValue> _parser = new pb::MessageParser<BytesValue>(() =… 1160 public static pb::MessageParser<BytesValue> Parser { get { return _parser; } } 1173 public BytesValue() { in BytesValue() method in Google.Protobuf.WellKnownTypes.BytesValue 1180 public BytesValue(BytesValue other) : this() { in BytesValue() method in Google.Protobuf.WellKnownTypes.BytesValue 1186 public BytesValue Clone() { in Clone() 1187 return new BytesValue(this); in Clone() 1206 return Equals(other as BytesValue); in Equals() 1210 public bool Equals(BytesValue other) { in Equals() [all …]
|
/external/rust/crates/protobuf/src/well_known_types/ |
D | wrappers.rs | 1271 pub struct BytesValue { struct 1281 impl<'a> ::std::default::Default for &'a BytesValue { argument 1282 fn default() -> &'a BytesValue { in default() 1283 <BytesValue as crate::Message>::default_instance() in default() 1287 impl BytesValue { implementation 1288 pub fn new() -> BytesValue { in new() 1319 impl crate::Message for BytesValue { implementation 1385 fn new() -> BytesValue { in new() 1386 BytesValue::new() in new() 1395 |m: &BytesValue| { &m.value }, in descriptor_static() [all …]
|
/external/protobuf/csharp/compatibility_tests/v3.0.0/protos/src/google/protobuf/ |
D | unittest_well_known_types.proto | 41 google.protobuf.BytesValue bytes_field = 18; 66 repeated google.protobuf.BytesValue bytes_field = 18; 88 google.protobuf.BytesValue bytes_field = 18; 113 map<int32,google.protobuf.BytesValue> bytes_field = 18;
|
/external/protobuf/php/src/Google/Protobuf/ |
D | BytesValue.php | 17 class BytesValue extends \Google\Protobuf\Internal\Message class
|
/external/protobuf/php/tests/proto/ |
D | test_wrapper_type_setters.proto | 16 google.protobuf.BytesValue bytes_value = 9;
|
/external/protobuf/java/core/src/test/java/com/google/protobuf/ |
D | WrappersLiteOfMethodTest.java | 48 builder.setFieldBytes(BytesValue.of(ByteString.wrap("233".getBytes(Internal.UTF_8)))); in testOf()
|
D | WrappersOfMethodTest.java | 48 builder.setFieldBytes(BytesValue.of(ByteString.wrap("233".getBytes(Internal.UTF_8)))); in testOf()
|
/external/protobuf/src/google/protobuf/util/ |
D | json_format_proto3.proto | 125 google.protobuf.BytesValue bytes_value = 9; 135 repeated google.protobuf.BytesValue repeated_bytes_value = 19;
|
D | type_resolver_util.cc | 53 using google::protobuf::BytesValue; 225 value->PackFrom(WrapValue<BytesValue>(val)); in ConvertOptionField()
|
/external/protobuf/ruby/tests/ |
D | basic_test.proto | 126 google.protobuf.BytesValue bytes = 9;
|
D | basic_test_proto2.proto | 133 optional google.protobuf.BytesValue bytes = 9;
|
/external/protobuf/java/core/src/test/proto/com/google/protobuf/ |
D | wrappers_test.proto | 50 .google.protobuf.BytesValue field_bytes = 10;
|
/external/protobuf/php/ext/google/protobuf/ |
D | protobuf.h | 582 struct BytesValue; 627 typedef struct BytesValue BytesValue; typedef 1259 PHP_METHOD(BytesValue, __construct); 1260 PHP_METHOD(BytesValue, getValue); 1261 PHP_METHOD(BytesValue, setValue);
|
/external/protobuf/src/google/protobuf/util/internal/testdata/ |
D | wrappers.proto | 95 google.protobuf.BytesValue bytes = 1;
|
/external/protobuf/conformance/ |
D | Makefile.am | 36 com/google/protobuf/BytesValue.java \ 122 Google/Protobuf/BytesValue.php \
|