/external/golang-protobuf/ptypes/wrappers/ |
D | wrappers.pb.go | 206 type Int32Value struct { struct 214 func (m *Int32Value) Reset() { *m = Int32Value{} } argument 215 func (m *Int32Value) String() string { return proto.CompactTextString(m) } argument 216 func (*Int32Value) ProtoMessage() {} argument 217 func (*Int32Value) Descriptor() ([]byte, []int) { argument 221 func (*Int32Value) XXX_WellKnownType() string { return "Int32Value" } argument 223 func (m *Int32Value) XXX_Unmarshal(b []byte) error { argument 226 func (m *Int32Value) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { argument 229 func (m *Int32Value) XXX_Merge(src proto.Message) { argument 232 func (m *Int32Value) XXX_Size() int { argument [all …]
|
D | wrappers.proto | 87 // The JSON representation for `Int32Value` is JSON number. 88 message Int32Value { message
|
/external/protobuf/php/tests/ |
D | wrapper_type_setters_test.php | 11 use Google\Protobuf\Int32Value; alias 90 …[TestWrapperSetters::class, Int32Value::class, "setInt32Value", "setInt32ValueUnwrapped", "getInt3… 91 [123, new Int32Value(["value" => 123])], 92 [-789, new Int32Value(["value" => -789])], 94 [0, new Int32Value()], 95 [5.5, new Int32Value(["value" => 5])], // Test conversion from float to int 183 [TestWrapperSetters::class, "setInt32ValueUnwrapped", new Int32Value()], 221 [TestWrapperSetters::class, Int32Value::class, 'int32_value', 'getInt32Value', 5],
|
D | encode_decode_test.php | 19 use Google\Protobuf\Int32Value; alias 88 $m = new Int32Value(); 95 $m = new Int32Value(); 1051 $packed = new Int32Value(); 1094 $packed = new Int32Value();
|
/external/protobuf/src/google/protobuf/ |
D | wrappers.pb.cc | 37 ::PROTOBUF_NAMESPACE_ID::internal::ExplicitlyConstructed<Int32Value> _instance; 117 new (ptr) PROTOBUF_NAMESPACE_ID::Int32Value(); in InitDefaultsscc_info_Int32Value_google_2fprotobuf_2fwrappers_2eproto() 120 PROTOBUF_NAMESPACE_ID::Int32Value::InitAsDefaultInstance(); in InitDefaultsscc_info_Int32Value_google_2fprotobuf_2fwrappers_2eproto() 212 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::Int32Value, _internal_metadata_), 216 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::Int32Value, value_), 247 { 24, -1, sizeof(PROTOBUF_NAMESPACE_ID::Int32Value)}, 1360 void Int32Value::InitAsDefaultInstance() { in InitAsDefaultInstance() 1362 class Int32Value::_Internal { 1366 Int32Value::Int32Value() in Int32Value() function in Int32Value 1371 Int32Value::Int32Value(::PROTOBUF_NAMESPACE_ID::Arena* arena) in Int32Value() function in Int32Value [all …]
|
D | wrappers.pb.h | 70 class Int32Value; variable 91 …> PROTOBUF_EXPORT PROTOBUF_NAMESPACE_ID::Int32Value* Arena::CreateMaybeMessage<PROTOBUF_NAMESPACE_… 717 class PROTOBUF_EXPORT Int32Value : 720 Int32Value(); 721 virtual ~Int32Value(); 723 Int32Value(const Int32Value& from); 724 Int32Value(Int32Value&& from) noexcept in Int32Value() function 725 : Int32Value() { in Int32Value() 729 inline Int32Value& operator=(const Int32Value& from) { 733 inline Int32Value& operator=(Int32Value&& from) noexcept { [all …]
|
D | unittest_well_known_types.proto | 37 google.protobuf.Int32Value int32_field = 14; 62 repeated google.protobuf.Int32Value int32_field = 14; 84 google.protobuf.Int32Value int32_field = 14; 109 map<int32,google.protobuf.Int32Value> int32_field = 14;
|
D | wrappers.proto | 87 // The JSON representation for `Int32Value` is JSON number. 88 message Int32Value { message
|
/external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/ |
D | Wrappers.cs | 44 …ypeof(global::Google.Protobuf.WellKnownTypes.Int32Value), global::Google.Protobuf.WellKnownTypes.I… in WrappersReflection() 608 public sealed partial class Int32Value : pb::IMessage<Int32Value> { class 609 …ate static readonly pb::MessageParser<Int32Value> _parser = new pb::MessageParser<Int32Value>(() =… 612 public static pb::MessageParser<Int32Value> Parser { get { return _parser; } } 625 public Int32Value() { in Int32Value() method in Google.Protobuf.WellKnownTypes.Int32Value 632 public Int32Value(Int32Value other) : this() { in Int32Value() method in Google.Protobuf.WellKnownTypes.Int32Value 638 public Int32Value Clone() { in Clone() 639 return new Int32Value(this); in Clone() 658 return Equals(other as Int32Value); in Equals() 662 public bool Equals(Int32Value other) { in Equals() [all …]
|
D | WrappersPartial.cs | 40 internal const int WrapperValueFieldNumber = Int32Value.ValueFieldNumber;
|
/external/rust/crates/protobuf/src/well_known_types/ |
D | wrappers.rs | 644 pub struct Int32Value { struct 654 impl<'a> ::std::default::Default for &'a Int32Value { argument 655 fn default() -> &'a Int32Value { in default() 656 <Int32Value as crate::Message>::default_instance() in default() 660 impl Int32Value { impl 661 pub fn new() -> Int32Value { in new() 681 impl crate::Message for Int32Value { implementation 751 fn new() -> Int32Value { in new() 752 Int32Value::new() in new() 761 |m: &Int32Value| { &m.value }, in descriptor_static() [all …]
|
/external/protobuf/csharp/compatibility_tests/v3.0.0/protos/src/google/protobuf/ |
D | unittest_well_known_types.proto | 37 google.protobuf.Int32Value int32_field = 14; 62 repeated google.protobuf.Int32Value int32_field = 14; 84 google.protobuf.Int32Value int32_field = 14; 109 map<int32,google.protobuf.Int32Value> int32_field = 14;
|
/external/flatbuffers/tests/FlatBuffers.Test/ |
D | FuzzTestData.cs | 31 public static readonly int Int32Value = BitConverter.ToInt32(_overflowInt32, 0); field in FlatBuffers.Test.FuzzTestData
|
/external/protobuf/php/src/Google/Protobuf/ |
D | Int32Value.php | 17 class Int32Value extends \Google\Protobuf\Internal\Message class
|
/external/protobuf/php/tests/proto/ |
D | test_wrapper_type_setters.proto | 12 google.protobuf.Int32Value int32_value = 5;
|
/external/protobuf/src/google/protobuf/util/ |
D | type_resolver_util.cc | 59 using google::protobuf::Int32Value; 200 value->PackFrom(WrapValue<Int32Value>( in ConvertOptionField() 234 value->PackFrom(WrapValue<Int32Value>(val->number())); in ConvertOptionField()
|
D | json_format_proto3.proto | 118 google.protobuf.Int32Value int32_value = 2; 128 repeated google.protobuf.Int32Value repeated_int32_value = 12;
|
/external/protobuf/csharp/src/Google.Protobuf.Test/ |
D | JsonParserTest.cs | 137 [TestCase(typeof(Int32Value), "32", 32)] 228 Assert.AreEqual(new Int32Value { Value = 1 }, Int32Value.Parser.ParseJson("1")); in IndividualWrapperTypes() 230 Assert.AreEqual(new Int32Value { Value = 1 }, Int32Value.Parser.ParseJson("\"1\"")); in IndividualWrapperTypes()
|
/external/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/ |
D | JsonParserTest.cs | 137 [TestCase(typeof(Int32Value), "32", 32)] 228 Assert.AreEqual(new Int32Value { Value = 1 }, Int32Value.Parser.ParseJson("1")); in IndividualWrapperTypes() 230 Assert.AreEqual(new Int32Value { Value = 1 }, Int32Value.Parser.ParseJson("\"1\"")); in IndividualWrapperTypes()
|
/external/protobuf/java/core/src/test/java/com/google/protobuf/ |
D | WrappersLiteOfMethodTest.java | 42 builder.setFieldInt32(Int32Value.of(2333)); in testOf()
|
D | WrappersOfMethodTest.java | 42 builder.setFieldInt32(Int32Value.of(2333)); in testOf()
|
/external/protobuf/src/google/protobuf/util/internal/testdata/ |
D | anys.proto | 81 google.protobuf.Int32Value i32 = 5; 90 google.protobuf.Int32Value int_wrapper = 5;
|
/external/protobuf/ruby/tests/ |
D | basic_test.proto | 120 google.protobuf.Int32Value int32 = 3;
|
/external/protobuf/java/core/src/test/proto/com/google/protobuf/ |
D | wrappers_test.proto | 46 .google.protobuf.Int32Value field_int32 = 6;
|
/external/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/WellKnownTypes/ |
D | WrappersTest.cs | 333 … var valueTag = WireFormat.MakeTag(Int32Value.ValueFieldNumber, WireFormat.WireType.Varint); in MergingStreamExplicitValue() 395 … var valueTag = WireFormat.MakeTag(Int32Value.ValueFieldNumber, WireFormat.WireType.Varint); in UnknownFieldInWrapper()
|