| /third_party/protobuf/php/tests/ |
| H A D | WrapperTypeSettersTest.php | 14 use Google\Protobuf\UInt32Value; 97 [TestWrapperSetters::class, UInt32Value::class, "setUInt32Value", "setUInt32ValueUnwrapped", "getUInt32Value", "getUInt32ValueUnwrapped", [ 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],
|
| H A D | WellKnownTest.php | 35 use Google\Protobuf\UInt32Value; 381 $m = new UInt32Value();
|
| H A D | EncodeDecodeTest.php | 27 use Google\Protobuf\UInt32Value; 116 $m = new UInt32Value(); 123 $m = new UInt32Value();
|
| /third_party/protobuf/src/google/protobuf/ |
| H A 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)}, 271 "UInt32Value\022\r\n\005value\030\001 \001(\r\"\032\n\tBoolValue\022" 1287 void UInt32Value::InitAsDefaultInstance() { in InitAsDefaultInstance() 1289 class UInt32Value::_Internal { 1293 UInt32Value function in UInt32Value 1299 UInt32Value::UInt32Value(const UInt32Value& from) UInt32Value() function in UInt32Value [all...] |
| H A D | wrappers.pb.h | 79 class UInt32Value; 94 template<> PROTOBUF_EXPORT PROTOBUF_NAMESPACE_ID::UInt32Value* Arena::CreateMaybeMessage<PROTOBUF_NAMESPACE_ID::UInt32Value>(Arena*); 786 class PROTOBUF_EXPORT UInt32Value PROTOBUF_FINAL : 787 public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:google.protobuf.UInt32Value) */ { 789 inline UInt32Value() : UInt32Value(nullptr) {} in UInt32Value() function in PROTOBUF_FINAL 790 virtual ~UInt32Value(); 792 UInt32Value(const UInt32Value 794 : UInt32Value() { UInt32Value() function in PROTOBUF_FINAL [all...] |
| /third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/ |
| H A D | Wrappers.cs | 45 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.WellKnownTypes.UInt32Value), global::Google.Protobuf.WellKnownTypes.UInt32Value.Parser, new[]{ "Value" }, null, null, null, null), in WrappersReflection() 958 /// The JSON representation for `UInt32Value` is JSON number. 960 public sealed partial class UInt32Value : pb::IMessage<UInt32Value> class 965 private static readonly pb::MessageParser<UInt32Value> _parser = new pb::MessageParser<UInt32Value>(() => new 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() { UInt32Value() method in Google.Protobuf.WellKnownTypes.UInt32Value [all...] |
| /third_party/protobuf/php/src/Google/Protobuf/ |
| H A D | UInt32Value.php | 13 * The JSON representation for `UInt32Value` is JSON number. 15 * Generated from protobuf message <code>google.protobuf.UInt32Value</code> 17 class UInt32Value extends \Google\Protobuf\Internal\Message class
|
| /third_party/protobuf/java/core/src/test/java/com/google/protobuf/ |
| H A D | WrappersLiteOfMethodTest.java | 44 builder.setFieldUint32(UInt32Value.of(2333)); in testOf()
|
| H A D | WrappersOfMethodTest.java | 44 builder.setFieldUint32(UInt32Value.of(2333)); in testOf()
|
| /third_party/protobuf/ruby/tests/ |
| H A D | basic.rb | 273 map_uint32: {0 => Google::Protobuf::UInt32Value.new(value: 5)}, 315 map_uint32: {0 => Google::Protobuf::UInt32Value.new(value: 0)}, 357 map_uint32: {0 => Google::Protobuf::UInt32Value.new()},
|
| H A D | common_tests.rb | 1286 uint32: Google::Protobuf::UInt32Value.new(value: 0), 1343 uint32: Google::Protobuf::UInt32Value.new(value: 5), 1390 repeated_uint32: [Google::Protobuf::UInt32Value.new(value: 5)], 1482 run_test.call(Google::Protobuf::UInt32Value, 5) 1505 assert_equal Google::Protobuf::UInt32Value.new(value: 50), m.uint32 1555 uint32: Google::Protobuf::UInt32Value.new(value: 5), 1584 m.uint32 = Google::Protobuf::UInt32Value.new(value: 50) 1586 assert_equal Google::Protobuf::UInt32Value.new(value: 50), m.uint32 1637 uint32: Google::Protobuf::UInt32Value.new(value: 5),
|
| /third_party/protobuf/src/google/protobuf/util/ |
| H A D | type_resolver_util.cc | 63 using google::protobuf::UInt32Value; 205 value->PackFrom(WrapValue<UInt32Value>( in ConvertOptionField()
|
| /third_party/protobuf/java/util/src/main/java/com/google/protobuf/util/ |
| H A D | JsonFormat.java | 72 import com.google.protobuf.UInt32Value; 800 printers.put(UInt32Value.getDescriptor().getFullName(), wrappersPrinter); in buildWellKnownTypePrinters() 1382 parsers.put(UInt32Value.getDescriptor().getFullName(), wrappersPrinter); in buildWellKnownTypeParsers()
|
| /third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/ |
| H A D | JsonParserTest.cs | 140 [TestCase(typeof(UInt32Value), "32", 32U)]
|
| /third_party/protobuf/csharp/src/Google.Protobuf.Test/ |
| H A D | JsonParserTest.cs | 142 [TestCase(typeof(UInt32Value), "32", 32U)]
|
| /third_party/protobuf/java/util/src/test/java/com/google/protobuf/util/ |
| H A D | JsonFormatTest.java | 50 import com.google.protobuf.UInt32Value; 962 anyMessage = Any.pack(UInt32Value.newBuilder().setValue(12345).build()); in testAnyFields() 965 + " \"@type\": \"type.googleapis.com/google.protobuf.UInt32Value\",\n" in testAnyFields()
|
| /third_party/protobuf/php/ext/google/protobuf/ |
| H A D | php-upb.c | 3759 } else if (!strcmp(name, "google.protobuf.UInt32Value")) { in assign_msg_wellknowntype()
|