/third_party/protobuf/php/tests/ |
D | WrapperTypeSettersTest.php | 14 use Google\Protobuf\UInt32Value; alias 97 …[TestWrapperSetters::class, UInt32Value::class, "setUInt32Value", "setUInt32ValueUnwrapped", "getU… 98 [123, new UInt32Value(["value" => 123])], 99 [789, new UInt32Value(["value" => 789])], 101 [0, new UInt32Value()], 102 [5.5, new UInt32Value(["value" => 5])], // Test conversion from float to int 103 [-7, new UInt32Value(["value" => -7])], // Test conversion from -ve to +ve 189 [TestWrapperSetters::class, "setUInt32ValueUnwrapped", new UInt32Value()], 223 [TestWrapperSetters::class, UInt32Value::class, 'uint32_value', 'getUInt32Value', 6],
|
D | WellKnownTest.php | 35 use Google\Protobuf\UInt32Value; alias 381 $m = new UInt32Value();
|
D | EncodeDecodeTest.php | 27 use Google\Protobuf\UInt32Value; alias 116 $m = new UInt32Value(); 123 $m = new UInt32Value();
|
/third_party/protobuf/src/google/protobuf/ |
D | wrappers.pb.cc | 40 ::PROTOBUF_NAMESPACE_ID::internal::ExplicitlyConstructed<UInt32Value> _instance; 158 new (ptr) PROTOBUF_NAMESPACE_ID::UInt32Value(); in InitDefaultsscc_info_UInt32Value_google_2fprotobuf_2fwrappers_2eproto() 161 PROTOBUF_NAMESPACE_ID::UInt32Value::InitAsDefaultInstance(); in InitDefaultsscc_info_UInt32Value_google_2fprotobuf_2fwrappers_2eproto() 217 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::UInt32Value, _internal_metadata_), 221 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::UInt32Value, value_), 247 { 30, -1, sizeof(PROTOBUF_NAMESPACE_ID::UInt32Value)}, 1287 void UInt32Value::InitAsDefaultInstance() { in InitAsDefaultInstance() 1289 class UInt32Value::_Internal { 1293 UInt32Value::UInt32Value(::PROTOBUF_NAMESPACE_ID::Arena* arena) in UInt32Value() function in UInt32Value 1299 UInt32Value::UInt32Value(const UInt32Value& from) in UInt32Value() function in UInt32Value [all …]
|
D | wrappers.pb.h | 79 class UInt32Value; variable 94 … PROTOBUF_EXPORT PROTOBUF_NAMESPACE_ID::UInt32Value* Arena::CreateMaybeMessage<PROTOBUF_NAMESPACE_… 786 class PROTOBUF_EXPORT UInt32Value PROTOBUF_FINAL : 789 inline UInt32Value() : UInt32Value(nullptr) {} in UInt32Value() function 790 virtual ~UInt32Value(); 792 UInt32Value(const UInt32Value& from); 793 UInt32Value(UInt32Value&& from) noexcept in UInt32Value() function 794 : UInt32Value() { in UInt32Value() 798 inline UInt32Value& operator=(const UInt32Value& from) { 802 inline UInt32Value& operator=(UInt32Value&& from) noexcept { [all …]
|
D | unittest_well_known_types.proto | 38 google.protobuf.UInt32Value uint32_field = 15; 63 repeated google.protobuf.UInt32Value uint32_field = 15; 85 google.protobuf.UInt32Value uint32_field = 15; 110 map<int32,google.protobuf.UInt32Value> uint32_field = 15;
|
D | wrappers.proto | 95 // The JSON representation for `UInt32Value` is JSON number. 96 message UInt32Value { message
|
D | test_messages_proto3.proto | 212 google.protobuf.UInt32Value optional_uint32_wrapper = 204; 222 repeated google.protobuf.UInt32Value repeated_uint32_wrapper = 214;
|
/third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/ |
D | Wrappers.cs | 45 …peof(global::Google.Protobuf.WellKnownTypes.UInt32Value), global::Google.Protobuf.WellKnownTypes.U… in WrappersReflection() 960 public sealed partial class UInt32Value : pb::IMessage<UInt32Value> class 965 …te static readonly pb::MessageParser<UInt32Value> _parser = new pb::MessageParser<UInt32Value>(() … 968 public static pb::MessageParser<UInt32Value> Parser { get { return _parser; } } 981 public UInt32Value() { in UInt32Value() method in Google.Protobuf.WellKnownTypes.UInt32Value 988 public UInt32Value(UInt32Value other) : this() { in UInt32Value() method in Google.Protobuf.WellKnownTypes.UInt32Value 994 public UInt32Value Clone() { in Clone() 995 return new UInt32Value(this); in Clone() 1014 return Equals(other as UInt32Value); in Equals() 1018 public bool Equals(UInt32Value other) { in Equals() [all …]
|
/third_party/protobuf/ruby/tests/ |
D | basic_test.proto | 136 google.protobuf.UInt32Value uint32 = 5; 152 repeated google.protobuf.UInt32Value repeated_uint32 = 15; 164 map<int32, google.protobuf.UInt32Value> map_uint32 = 25; 177 google.protobuf.UInt32Value oneof_uint32 = 35;
|
D | basic_test_proto2.proto | 129 optional google.protobuf.UInt32Value uint32 = 5; 145 repeated google.protobuf.UInt32Value repeated_uint32 = 15; 158 google.protobuf.UInt32Value oneof_uint32 = 35;
|
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/protos/src/google/protobuf/ |
D | unittest_well_known_types.proto | 38 google.protobuf.UInt32Value uint32_field = 15; 63 repeated google.protobuf.UInt32Value uint32_field = 15; 85 google.protobuf.UInt32Value uint32_field = 15; 110 map<int32,google.protobuf.UInt32Value> uint32_field = 15;
|
/third_party/flatbuffers/tests/FlatBuffers.Test/ |
D | FuzzTestData.cs | 32 public static readonly uint UInt32Value = 0xFDDDDDDD; field in FlatBuffers.Test.FuzzTestData
|
D | FlatBuffersFuzzTests.cs | 696 builder.AddUint(j, FuzzTestData.UInt32Value, 0); in CheckObjects() 778 Assert.AreEqual(FuzzTestData.UInt32Value, table.GetSlot(f, (uint)0)); in CheckObjects()
|
/third_party/protobuf/php/src/Google/Protobuf/ |
D | UInt32Value.php | 17 class UInt32Value extends \Google\Protobuf\Internal\Message class
|
/third_party/protobuf/php/tests/proto/ |
D | test_wrapper_type_setters.proto | 13 google.protobuf.UInt32Value uint32_value = 6;
|
D | test.proto | 258 google.protobuf.UInt32Value field = 1; 259 repeated google.protobuf.UInt32Value repeated_field = 2; 261 google.protobuf.UInt32Value oneof_field = 3;
|
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/ |
D | WrappersLiteOfMethodTest.java | 44 builder.setFieldUint32(UInt32Value.of(2333)); in testOf()
|
D | WrappersOfMethodTest.java | 44 builder.setFieldUint32(UInt32Value.of(2333)); in testOf()
|
/third_party/grpc/src/proto/grpc/testing/xds/ |
D | lds_rds_for_test.proto | 35 google.protobuf.UInt32Value max_program_size = 1; 94 google.protobuf.UInt32Value weight = 2; 97 google.protobuf.UInt32Value total_weight = 3;
|
/third_party/protobuf/src/google/protobuf/util/ |
D | json_format_proto3.proto | 124 google.protobuf.UInt32Value uint32_value = 4; 134 repeated google.protobuf.UInt32Value repeated_uint32_value = 14;
|
D | type_resolver_util.cc | 63 using google::protobuf::UInt32Value; 205 value->PackFrom(WrapValue<UInt32Value>( in ConvertOptionField()
|
/third_party/protobuf/java/core/src/test/proto/com/google/protobuf/ |
D | wrappers_test.proto | 47 .google.protobuf.UInt32Value field_uint32 = 7;
|
/third_party/protobuf/src/google/protobuf/util/internal/testdata/ |
D | wrappers.proto | 83 google.protobuf.UInt32Value uint32 = 1;
|
/third_party/protobuf/conformance/ |
D | Makefile.am | 64 com/google/protobuf/UInt32Value.java \ 134 Google/Protobuf/UInt32Value.php \
|