/third_party/protobuf/php/tests/ |
H A D | WrapperTypeSettersTest.php | 15 use Google\Protobuf\UInt64Value; 82 [TestWrapperSetters::class, UInt64Value::class, "setUInt64Value", "setUInt64ValueUnwrapped", "getUInt64Value", "getUInt64ValueUnwrapped", [ 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],
|
H A D | WellKnownTest.php | 36 use Google\Protobuf\UInt64Value; 373 $m = new UInt64Value();
|
H A D | EncodeDecodeTest.php | 29 use Google\Protobuf\UInt64Value; 151 $m = new UInt64Value(); 158 $m = new UInt64Value(); 165 $m = new UInt64Value();
|
/third_party/protobuf/src/google/protobuf/ |
H A 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)}, 269 "ue\022\r\n\005value\030\001 \001(\003\"\034\n\013UInt64Value\022\r\n\005valu" 893 void UInt64Value::InitAsDefaultInstance() { in InitAsDefaultInstance() 895 class UInt64Value::_Internal { 899 UInt64Value function in UInt64Value 905 UInt64Value::UInt64Value(const UInt64Value& from) UInt64Value() function in UInt64Value [all...] |
H A D | wrappers.pb.h | 82 class UInt64Value; 95 template<> PROTOBUF_EXPORT PROTOBUF_NAMESPACE_ID::UInt64Value* Arena::CreateMaybeMessage<PROTOBUF_NAMESPACE_ID::UInt64Value>(Arena*); 512 class PROTOBUF_EXPORT UInt64Value PROTOBUF_FINAL : 513 public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:google.protobuf.UInt64Value) */ { 515 inline UInt64Value() : UInt64Value(nullptr) {} in UInt64Value() function in PROTOBUF_FINAL 516 virtual ~UInt64Value(); 518 UInt64Value(const UInt64Value 520 : UInt64Value() { UInt64Value() function in PROTOBUF_FINAL [all...] |
/third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/ |
H A D | Wrappers.cs | 43 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.WellKnownTypes.UInt64Value), global::Google.Protobuf.WellKnownTypes.UInt64Value.Parser, new[]{ "Value" }, null, null, null, null), in WrappersReflection() 598 /// The JSON representation for `UInt64Value` is JSON string. 600 public sealed partial class UInt64Value : pb::IMessage<UInt64Value> class 605 private static readonly pb::MessageParser<UInt64Value> _parser = new pb::MessageParser<UInt64Value>(() => new 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() { UInt64Value() method in Google.Protobuf.WellKnownTypes.UInt64Value [all...] |
/third_party/protobuf/php/src/Google/Protobuf/ |
H A D | UInt64Value.php | 13 * The JSON representation for `UInt64Value` is JSON string. 15 * Generated from protobuf message <code>google.protobuf.UInt64Value</code> 17 class UInt64Value extends \Google\Protobuf\Internal\Message class
|
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/ |
H A D | WrappersLiteOfMethodTest.java | 45 builder.setFieldUint64(UInt64Value.of(23333333333333L)); in testOf()
|
H A D | WrappersOfMethodTest.java | 45 builder.setFieldUint64(UInt64Value.of(23333333333333L)); in testOf()
|
/third_party/protobuf/ruby/tests/ |
H A D | basic.rb | 274 map_uint64: {0 => Google::Protobuf::UInt64Value.new(value: 6)}, 316 map_uint64: {0 => Google::Protobuf::UInt64Value.new(value: 0)}, 358 map_uint64: {0 => Google::Protobuf::UInt64Value.new()},
|
H A D | common_tests.rb | 1287 uint64: Google::Protobuf::UInt64Value.new(value: 0), 1344 uint64: Google::Protobuf::UInt64Value.new(value: 6), 1391 repeated_uint64: [Google::Protobuf::UInt64Value.new(value: 6)], 1483 run_test.call(Google::Protobuf::UInt64Value, 6) 1508 assert_equal Google::Protobuf::UInt64Value.new(value: 500), m.uint64 1556 uint64: Google::Protobuf::UInt64Value.new(value: 6), 1587 m.uint64 = Google::Protobuf::UInt64Value.new(value: 500) 1589 assert_equal Google::Protobuf::UInt64Value.new(value: 500), m.uint64 1638 uint64: Google::Protobuf::UInt64Value.new(value: 6),
|
/third_party/protobuf/src/google/protobuf/util/ |
H A D | type_resolver_util.cc | 64 using google::protobuf::UInt64Value; 193 value->PackFrom(WrapValue<UInt64Value>( in ConvertOptionField()
|
H A D | type_resolver_util_test.cc | 60 using google::protobuf::UInt64Value; 144 return HasOption<UInt64Value>(options, name, value); in HasUInt64Option()
|
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/ |
H A D | JsonParserTest.cs | 141 [TestCase(typeof(UInt64Value), "\"32\"", 32UL)] 142 [TestCase(typeof(UInt64Value), "32", 32UL)]
|
/third_party/protobuf/csharp/src/Google.Protobuf.Test/ |
H A D | JsonParserTest.cs | 143 [TestCase(typeof(UInt64Value), "\"32\"", 32UL)] 144 [TestCase(typeof(UInt64Value), "32", 32UL)]
|
/third_party/protobuf/java/util/src/main/java/com/google/protobuf/util/ |
H A D | JsonFormat.java | 73 import com.google.protobuf.UInt64Value; 802 printers.put(UInt64Value.getDescriptor().getFullName(), wrappersPrinter); in buildWellKnownTypePrinters() 1384 parsers.put(UInt64Value.getDescriptor().getFullName(), wrappersPrinter); in buildWellKnownTypeParsers()
|
/third_party/protobuf/java/util/src/test/java/com/google/protobuf/util/ |
H A D | JsonFormatTest.java | 51 import com.google.protobuf.UInt64Value; 978 anyMessage = Any.pack(UInt64Value.newBuilder().setValue(12345).build()); in testAnyFields() 981 + " \"@type\": \"type.googleapis.com/google.protobuf.UInt64Value\",\n" in testAnyFields()
|
/third_party/protobuf/php/ext/google/protobuf/ |
H A D | php-upb.c | 3755 } else if (!strcmp(name, "google.protobuf.UInt64Value")) { in assign_msg_wellknowntype()
|