/third_party/protobuf/php/tests/ |
D | WrapperTypeSettersTest.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 184 [TestWrapperSetters::class, "setInt32ValueUnwrapped", new Int32Value()], 222 [TestWrapperSetters::class, Int32Value::class, 'int32_value', 'getInt32Value', 5],
|
/third_party/protobuf/src/google/protobuf/ |
D | wrappers.pb.cc | 36 ::PROTOBUF_NAMESPACE_ID::internal::ExplicitlyConstructed<Int32Value> _instance; 116 new (ptr) PROTOBUF_NAMESPACE_ID::Int32Value(); in InitDefaultsscc_info_Int32Value_google_2fprotobuf_2fwrappers_2eproto() 119 PROTOBUF_NAMESPACE_ID::Int32Value::InitAsDefaultInstance(); in InitDefaultsscc_info_Int32Value_google_2fprotobuf_2fwrappers_2eproto() 211 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::Int32Value, _internal_metadata_), 215 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::Int32Value, value_), 246 { 24, -1, sizeof(PROTOBUF_NAMESPACE_ID::Int32Value)}, 1090 void Int32Value::InitAsDefaultInstance() { in InitAsDefaultInstance() 1092 class Int32Value::_Internal { 1096 Int32Value::Int32Value(::PROTOBUF_NAMESPACE_ID::Arena* arena) in Int32Value() function in Int32Value 1102 Int32Value::Int32Value(const Int32Value& from) 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_… 649 class PROTOBUF_EXPORT Int32Value PROTOBUF_FINAL : 652 inline Int32Value() : Int32Value(nullptr) {} in Int32Value() function 653 virtual ~Int32Value(); 655 Int32Value(const Int32Value& from); 656 Int32Value(Int32Value&& from) noexcept in Int32Value() function 657 : Int32Value() { in Int32Value() 661 inline Int32Value& operator=(const Int32Value& from) { 665 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;
|
/third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/ |
D | Wrappers.cs | 44 …ypeof(global::Google.Protobuf.WellKnownTypes.Int32Value), global::Google.Protobuf.WellKnownTypes.I… in WrappersReflection() 780 public sealed partial class Int32Value : pb::IMessage<Int32Value> class 785 …ate static readonly pb::MessageParser<Int32Value> _parser = new pb::MessageParser<Int32Value>(() =… 788 public static pb::MessageParser<Int32Value> Parser { get { return _parser; } } 801 public Int32Value() { in Int32Value() method in Google.Protobuf.WellKnownTypes.Int32Value 808 public Int32Value(Int32Value other) : this() { in Int32Value() method in Google.Protobuf.WellKnownTypes.Int32Value 814 public Int32Value Clone() { in Clone() 815 return new Int32Value(this); in Clone() 834 return Equals(other as Int32Value); in Equals() 838 public bool Equals(Int32Value other) { in Equals() [all …]
|
D | WrappersPartial.cs | 40 internal const int WrapperValueFieldNumber = Int32Value.ValueFieldNumber;
|
/third_party/node/src/ |
D | js_stream.cc | 64 !value->Int32Value(env()->context()).To(&value_int)) { in ReadStart() 79 !value->Int32Value(env()->context()).To(&value_int)) { in ReadStop() 101 !value->Int32Value(env()->context()).To(&value_int)) { in DoShutdown() 135 !value->Int32Value(env()->context()).To(&value_int)) { in DoWrite()
|
D | tty_wrap.cc | 72 if (!args[0]->Int32Value(env->context()).To(&fd)) return; in IsTTY() 120 if (!args[0]->Int32Value(env->context()).To(&fd)) return; in New()
|
D | tcp_wrap.cc | 177 if (!args[0]->Int32Value(env->context()).To(&enable)) return; in SetKeepAlive() 227 if (!args[1]->Int32Value(env->context()).To(&port)) return; in Bind() 261 if (!args[0]->Int32Value(env->context()).To(&backlog)) return; in Listen() 284 if (!args[2]->Int32Value(env->context()).To(&port)) return; in Connect6()
|
D | pipe_wrap.cc | 188 if (!args[0]->Int32Value(env->context()).To(&backlog)) return; in Listen() 203 if (!args[0]->Int32Value(env->context()).To(&fd)) return; in Open()
|
/third_party/protobuf/ruby/tests/ |
D | basic_test.proto | 134 google.protobuf.Int32Value int32 = 3; 150 repeated google.protobuf.Int32Value repeated_int32 = 13; 162 map<int32, google.protobuf.Int32Value> map_int32 = 23; 175 google.protobuf.Int32Value oneof_int32 = 33;
|
D | basic_test_proto2.proto | 127 optional google.protobuf.Int32Value int32 = 3; 143 repeated google.protobuf.Int32Value repeated_int32 = 13; 156 google.protobuf.Int32Value oneof_int32 = 33;
|
/third_party/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;
|
/third_party/skia/third_party/externals/dawn/src/dawn_node/interop/ |
D | Core.cpp | 49 out = value.ToNumber().Int32Value(); in FromJS() 71 out = value.ToNumber().Int32Value(); in FromJS() 93 out = value.ToNumber().Int32Value(); in FromJS()
|
/third_party/flatbuffers/tests/FlatBuffers.Test/ |
D | FuzzTestData.cs | 31 public static readonly int Int32Value = BitConverter.ToInt32(_overflowInt32, 0); field in FlatBuffers.Test.FuzzTestData
|
/third_party/protobuf/php/src/Google/Protobuf/ |
D | Int32Value.php | 17 class Int32Value extends \Google\Protobuf\Internal\Message class
|
/third_party/protobuf/php/tests/proto/ |
D | test_wrapper_type_setters.proto | 12 google.protobuf.Int32Value int32_value = 5;
|
D | test.proto | 240 google.protobuf.Int32Value field = 1; 241 repeated google.protobuf.Int32Value repeated_field = 2; 243 google.protobuf.Int32Value oneof_field = 3;
|
/third_party/protobuf/src/google/protobuf/util/ |
D | type_resolver_util.cc | 58 using google::protobuf::Int32Value; 199 value->PackFrom(WrapValue<Int32Value>( in ConvertOptionField() 233 value->PackFrom(WrapValue<Int32Value>(val->number())); in ConvertOptionField()
|
/third_party/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()
|
/third_party/node/src/api/ |
D | hooks.cc | 84 !code_v->Int32Value(env->context()).To(&code) || in EmitProcessExit() 88 !code_v->Int32Value(env->context()).To(&code)) { in EmitProcessExit()
|
/third_party/protobuf/src/google/protobuf/util/internal/testdata/ |
D | anys.proto | 81 google.protobuf.Int32Value i32 = 5; 90 google.protobuf.Int32Value int_wrapper = 5;
|
/third_party/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()
|
/third_party/protobuf/csharp/src/Google.Protobuf.Test/ |
D | JsonParserTest.cs | 139 [TestCase(typeof(Int32Value), "32", 32)] 230 Assert.AreEqual(new Int32Value { Value = 1 }, Int32Value.Parser.ParseJson("1")); in IndividualWrapperTypes() 232 Assert.AreEqual(new Int32Value { Value = 1 }, Int32Value.Parser.ParseJson("\"1\"")); in IndividualWrapperTypes()
|