/third_party/protobuf/php/tests/ |
D | WrapperTypeSettersTest.php | 15 use Google\Protobuf\UInt64Value; alias 82 …[TestWrapperSetters::class, UInt64Value::class, "setUInt64Value", "setUInt64ValueUnwrapped", "getU… 83 [123, new UInt64Value(["value" => 123])], 84 [789, new UInt64Value(["value" => 789])], 86 [0, new UInt64Value()], 87 [5.5, new UInt64Value(["value" => 5])], // Test conversion from float to int 88 [-7, new UInt64Value(["value" => -7])], // Test conversion from -ve to +ve 179 [TestWrapperSetters::class, "setUInt64ValueUnwrapped", new UInt64Value()], 221 [TestWrapperSetters::class, UInt64Value::class, 'uint64_value', 'getUInt64Value', 4],
|
D | WellKnownTest.php | 36 use Google\Protobuf\UInt64Value; alias 373 $m = new UInt64Value();
|
D | EncodeDecodeTest.php | 29 use Google\Protobuf\UInt64Value; alias 151 $m = new UInt64Value(); 158 $m = new UInt64Value(); 165 $m = new UInt64Value();
|
/third_party/protobuf/src/google/protobuf/ |
D | wrappers.pb.cc | 32 ::PROTOBUF_NAMESPACE_ID::internal::ExplicitlyConstructed<UInt64Value> _instance; 172 new (ptr) PROTOBUF_NAMESPACE_ID::UInt64Value(); in InitDefaultsscc_info_UInt64Value_google_2fprotobuf_2fwrappers_2eproto() 175 PROTOBUF_NAMESPACE_ID::UInt64Value::InitAsDefaultInstance(); in InitDefaultsscc_info_UInt64Value_google_2fprotobuf_2fwrappers_2eproto() 205 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::UInt64Value, _internal_metadata_), 209 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::UInt64Value, value_), 245 { 18, -1, sizeof(PROTOBUF_NAMESPACE_ID::UInt64Value)}, 893 void UInt64Value::InitAsDefaultInstance() { in InitAsDefaultInstance() 895 class UInt64Value::_Internal { 899 UInt64Value::UInt64Value(::PROTOBUF_NAMESPACE_ID::Arena* arena) in UInt64Value() function in UInt64Value 905 UInt64Value::UInt64Value(const UInt64Value& from) in UInt64Value() function in UInt64Value [all …]
|
D | wrappers.pb.h | 82 class UInt64Value; variable 95 … PROTOBUF_EXPORT PROTOBUF_NAMESPACE_ID::UInt64Value* Arena::CreateMaybeMessage<PROTOBUF_NAMESPACE_… 512 class PROTOBUF_EXPORT UInt64Value PROTOBUF_FINAL : 515 inline UInt64Value() : UInt64Value(nullptr) {} in UInt64Value() function 516 virtual ~UInt64Value(); 518 UInt64Value(const UInt64Value& from); 519 UInt64Value(UInt64Value&& from) noexcept in UInt64Value() function 520 : UInt64Value() { in UInt64Value() 524 inline UInt64Value& operator=(const UInt64Value& from) { 528 inline UInt64Value& operator=(UInt64Value&& from) noexcept { [all …]
|
D | unittest_well_known_types.proto | 36 google.protobuf.UInt64Value uint64_field = 13; 61 repeated google.protobuf.UInt64Value uint64_field = 13; 83 google.protobuf.UInt64Value uint64_field = 13; 108 map<int32,google.protobuf.UInt64Value> uint64_field = 13;
|
D | wrappers.proto | 79 // The JSON representation for `UInt64Value` is JSON string. 80 message UInt64Value { message
|
D | test_messages_proto3.proto | 213 google.protobuf.UInt64Value optional_uint64_wrapper = 205; 223 repeated google.protobuf.UInt64Value repeated_uint64_wrapper = 215;
|
/third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/ |
D | Wrappers.cs | 43 …peof(global::Google.Protobuf.WellKnownTypes.UInt64Value), global::Google.Protobuf.WellKnownTypes.U… in WrappersReflection() 600 public sealed partial class UInt64Value : pb::IMessage<UInt64Value> class 605 …te static readonly pb::MessageParser<UInt64Value> _parser = new pb::MessageParser<UInt64Value>(() … 608 public static pb::MessageParser<UInt64Value> Parser { get { return _parser; } } 621 public UInt64Value() { in UInt64Value() method in Google.Protobuf.WellKnownTypes.UInt64Value 628 public UInt64Value(UInt64Value other) : this() { in UInt64Value() method in Google.Protobuf.WellKnownTypes.UInt64Value 634 public UInt64Value Clone() { in Clone() 635 return new UInt64Value(this); in Clone() 654 return Equals(other as UInt64Value); in Equals() 658 public bool Equals(UInt64Value other) { in Equals() [all …]
|
/third_party/protobuf/ruby/tests/ |
D | basic_test.proto | 137 google.protobuf.UInt64Value uint64 = 6; 153 repeated google.protobuf.UInt64Value repeated_uint64 = 16; 165 map<int32, google.protobuf.UInt64Value> map_uint64 = 26; 178 google.protobuf.UInt64Value oneof_uint64 = 36;
|
D | basic_test_proto2.proto | 130 optional google.protobuf.UInt64Value uint64 = 6; 146 repeated google.protobuf.UInt64Value repeated_uint64 = 16; 159 google.protobuf.UInt64Value oneof_uint64 = 36;
|
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/protos/src/google/protobuf/ |
D | unittest_well_known_types.proto | 36 google.protobuf.UInt64Value uint64_field = 13; 61 repeated google.protobuf.UInt64Value uint64_field = 13; 83 google.protobuf.UInt64Value uint64_field = 13; 108 map<int32,google.protobuf.UInt64Value> uint64_field = 13;
|
/third_party/flatbuffers/tests/FlatBuffers.Test/ |
D | FuzzTestData.cs | 34 public static readonly ulong UInt64Value = 0xFCCCCCCCCCCCCCCC; field in FlatBuffers.Test.FuzzTestData
|
D | FlatBuffersFuzzTests.cs | 706 builder.AddUlong(j, FuzzTestData.UInt64Value, 0); in CheckObjects() 788 Assert.AreEqual(FuzzTestData.UInt64Value, table.GetSlot(f, (ulong)0)); in CheckObjects()
|
/third_party/protobuf/php/src/Google/Protobuf/ |
D | UInt64Value.php | 17 class UInt64Value extends \Google\Protobuf\Internal\Message class
|
/third_party/protobuf/php/tests/proto/ |
D | test.proto | 267 google.protobuf.UInt64Value field = 1; 268 repeated google.protobuf.UInt64Value repeated_field = 2; 270 google.protobuf.UInt64Value oneof_field = 3;
|
D | test_wrapper_type_setters.proto | 11 google.protobuf.UInt64Value uint64_value = 4;
|
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/ |
D | WrappersLiteOfMethodTest.java | 45 builder.setFieldUint64(UInt64Value.of(23333333333333L)); in testOf()
|
D | WrappersOfMethodTest.java | 45 builder.setFieldUint64(UInt64Value.of(23333333333333L)); in testOf()
|
/third_party/protobuf/src/google/protobuf/util/ |
D | json_format_proto3.proto | 125 google.protobuf.UInt64Value uint64_value = 5; 135 repeated google.protobuf.UInt64Value repeated_uint64_value = 15;
|
D | type_resolver_util.cc | 64 using google::protobuf::UInt64Value; 193 value->PackFrom(WrapValue<UInt64Value>( in ConvertOptionField()
|
D | type_resolver_util_test.cc | 60 using google::protobuf::UInt64Value; 144 return HasOption<UInt64Value>(options, name, value); in HasUInt64Option()
|
/third_party/protobuf/java/core/src/test/proto/com/google/protobuf/ |
D | wrappers_test.proto | 45 .google.protobuf.UInt64Value field_uint64 = 5;
|
/third_party/protobuf/src/google/protobuf/util/internal/testdata/ |
D | wrappers.proto | 75 google.protobuf.UInt64Value uint64 = 1;
|
/third_party/protobuf/conformance/ |
D | Makefile.am | 66 com/google/protobuf/UInt64Value.java \ 135 Google/Protobuf/UInt64Value.php \
|