Home
last modified time | relevance | path

Searched refs:BoolValue (Results 1 – 25 of 72) sorted by relevance

123

/third_party/flutter/skia/tests/
DJSONTest.cpp207 check_primitive<bool, BoolValue>(reporter, v, false, false); in DEF_TEST()
219 check_primitive<bool, BoolValue>(reporter, v, false, true); in DEF_TEST()
231 check_primitive<bool, BoolValue>(reporter, v, true, true); in DEF_TEST()
243 check_primitive<bool, BoolValue>(reporter, v, false, false); in DEF_TEST()
255 check_primitive<bool, BoolValue>(reporter, v, false, false); in DEF_TEST()
267 check_primitive<bool, BoolValue>(reporter, v, false, false); in DEF_TEST()
279 check_primitive<bool, BoolValue>(reporter, v, false, false); in DEF_TEST()
287 check_primitive<bool, BoolValue>(reporter, v.as<ArrayValue>()[1], true, true); in DEF_TEST()
295 check_primitive<bool, BoolValue>(reporter, v, false, false); in DEF_TEST()
309 check_primitive<bool, BoolValue>(reporter, m1.fValue, false, true); in DEF_TEST()
[all …]
/third_party/skia/tests/
DJSONTest.cpp207 check_primitive<bool, BoolValue>(reporter, v, false, false); in DEF_TEST()
219 check_primitive<bool, BoolValue>(reporter, v, false, true); in DEF_TEST()
231 check_primitive<bool, BoolValue>(reporter, v, true, true); in DEF_TEST()
243 check_primitive<bool, BoolValue>(reporter, v, false, false); in DEF_TEST()
255 check_primitive<bool, BoolValue>(reporter, v, false, false); in DEF_TEST()
267 check_primitive<bool, BoolValue>(reporter, v, false, false); in DEF_TEST()
279 check_primitive<bool, BoolValue>(reporter, v, false, false); in DEF_TEST()
287 check_primitive<bool, BoolValue>(reporter, v.as<ArrayValue>()[1], true, true); in DEF_TEST()
295 check_primitive<bool, BoolValue>(reporter, v, false, false); in DEF_TEST()
309 check_primitive<bool, BoolValue>(reporter, m1.fValue, false, true); in DEF_TEST()
[all …]
/third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
DStruct.cs291 case KindOneofCase.BoolValue: in Value()
292 BoolValue = other.BoolValue; in Value()
358 public bool BoolValue { property in Google.Protobuf.WellKnownTypes.Value
359 get { return kindCase_ == KindOneofCase.BoolValue ? (bool) kind_ : false; }
362 kindCase_ = KindOneofCase.BoolValue;
401 BoolValue = 4, enumerator
433 if (BoolValue != other.BoolValue) return false; in Equals()
446 if (kindCase_ == KindOneofCase.BoolValue) hash ^= BoolValue.GetHashCode(); in GetHashCode()
478 if (kindCase_ == KindOneofCase.BoolValue) { in WriteTo()
480 output.WriteBool(BoolValue); in WriteTo()
[all …]
DWrappers.cs46 …typeof(global::Google.Protobuf.WellKnownTypes.BoolValue), global::Google.Protobuf.WellKnownTypes.B… in WrappersReflection()
1140 public sealed partial class BoolValue : pb::IMessage<BoolValue> class
1145 …ivate static readonly pb::MessageParser<BoolValue> _parser = new pb::MessageParser<BoolValue>(() =…
1148 public static pb::MessageParser<BoolValue> Parser { get { return _parser; } }
1161 public BoolValue() { in BoolValue() method in Google.Protobuf.WellKnownTypes.BoolValue
1168 public BoolValue(BoolValue other) : this() { in BoolValue() method in Google.Protobuf.WellKnownTypes.BoolValue
1174 public BoolValue Clone() { in Clone()
1175 return new BoolValue(this); in Clone()
1194 return Equals(other as BoolValue); in Equals()
1198 public bool Equals(BoolValue other) { in Equals()
[all …]
DValuePartial.cs65 return new Value { BoolValue = value }; in ForBool()
/third_party/protobuf/src/google/protobuf/
Dwrappers.pb.cc44 ::PROTOBUF_NAMESPACE_ID::internal::ExplicitlyConstructed<BoolValue> _instance;
60 new (ptr) PROTOBUF_NAMESPACE_ID::BoolValue(); in InitDefaultsscc_info_BoolValue_google_2fprotobuf_2fwrappers_2eproto()
63 PROTOBUF_NAMESPACE_ID::BoolValue::InitAsDefaultInstance(); in InitDefaultsscc_info_BoolValue_google_2fprotobuf_2fwrappers_2eproto()
223 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::BoolValue, _internal_metadata_),
227 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::BoolValue, value_),
248 { 36, -1, sizeof(PROTOBUF_NAMESPACE_ID::BoolValue)},
1484 void BoolValue::InitAsDefaultInstance() { in InitAsDefaultInstance()
1486 class BoolValue::_Internal {
1490 BoolValue::BoolValue(::PROTOBUF_NAMESPACE_ID::Arena* arena) in BoolValue() function in BoolValue
1496 BoolValue::BoolValue(const BoolValue& from) in BoolValue() function in BoolValue
[all …]
Dwrappers.pb.h58 class BoolValue; variable
87 …<> PROTOBUF_EXPORT PROTOBUF_NAMESPACE_ID::BoolValue* Arena::CreateMaybeMessage<PROTOBUF_NAMESPACE_…
923 class PROTOBUF_EXPORT BoolValue PROTOBUF_FINAL :
926 inline BoolValue() : BoolValue(nullptr) {} in BoolValue() function
927 virtual ~BoolValue();
929 BoolValue(const BoolValue& from);
930 BoolValue(BoolValue&& from) noexcept in BoolValue() function
931 : BoolValue() { in BoolValue()
935 inline BoolValue& operator=(const BoolValue& from) {
939 inline BoolValue& operator=(BoolValue&& from) noexcept {
[all …]
Dunittest_well_known_types.proto39 google.protobuf.BoolValue bool_field = 16;
64 repeated google.protobuf.BoolValue bool_field = 16;
86 google.protobuf.BoolValue bool_field = 16;
111 map<int32,google.protobuf.BoolValue> bool_field = 16;
/third_party/protobuf/php/tests/
DWrapperTypeSettersTest.php7 use Google\Protobuf\BoolValue; alias
105 …[TestWrapperSetters::class, BoolValue::class, "setBoolValue", "setBoolValueUnwrapped", "getBoolVal…
106 [true, new BoolValue(["value" => true])],
107 [false, new BoolValue(["value" => false])],
193 [TestWrapperSetters::class, "setBoolValueUnwrapped", new BoolValue()],
224 [TestWrapperSetters::class, BoolValue::class, 'bool_value', 'getBoolValue', true],
/third_party/protobuf/ruby/tests/
Dbasic_test.proto138 google.protobuf.BoolValue bool = 7;
154 repeated google.protobuf.BoolValue repeated_bool = 17;
166 map<int32, google.protobuf.BoolValue> map_bool = 27;
179 google.protobuf.BoolValue oneof_bool = 37;
Dbasic_test_proto2.proto131 optional google.protobuf.BoolValue bool = 7;
147 repeated google.protobuf.BoolValue repeated_bool = 17;
160 google.protobuf.BoolValue oneof_bool = 37;
/third_party/grpc/src/objective-c/tests/RemoteTestClient/
Dmessages.proto26 message BoolValue { message
77 BoolValue response_compressed = 6;
83 BoolValue expect_compressed = 8;
106 BoolValue expect_compressed = 2;
130 BoolValue compressed = 3;
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/protos/src/google/protobuf/
Dunittest_well_known_types.proto39 google.protobuf.BoolValue bool_field = 16;
64 repeated google.protobuf.BoolValue bool_field = 16;
86 google.protobuf.BoolValue bool_field = 16;
111 map<int32,google.protobuf.BoolValue> bool_field = 16;
/third_party/flutter/engine/flutter/shell/platform/common/cpp/client_wrapper/
Dencodable_value_unittests.cc42 EXPECT_FALSE(value.BoolValue()); in TEST()
44 EXPECT_TRUE(value.BoolValue()); in TEST()
167 EXPECT_EQ(value.ListValue()[3].BoolValue(), true); in TEST()
188 EXPECT_EQ(map_value[EncodableValue(true)].BoolValue(), false); in TEST()
193 EXPECT_EQ(EncodableValue(EncodableValue::Type::kBool).BoolValue(), false); in TEST()
/third_party/flutter/engine/flutter/shell/platform/common/cpp/client_wrapper/testing/
Dencodable_value_utils.cc21 return a.BoolValue() == b.BoolValue(); in EncodableValuesAreEqual()
/third_party/grpc/src/csharp/Grpc.IntegrationTesting/
DMessages.cs101 … pbr::GeneratedClrTypeInfo(typeof(global::Grpc.Testing.BoolValue), global::Grpc.Testing.BoolValue.… in MessagesReflection()
167 public sealed partial class BoolValue : pb::IMessage<BoolValue> class
172 …ivate static readonly pb::MessageParser<BoolValue> _parser = new pb::MessageParser<BoolValue>(() =…
175 public static pb::MessageParser<BoolValue> Parser { get { return _parser; } }
188 public BoolValue() { in BoolValue() method in Grpc.Testing.BoolValue
195 public BoolValue(BoolValue other) : this() { in BoolValue() method in Grpc.Testing.BoolValue
201 public BoolValue Clone() { in Clone()
202 return new BoolValue(this); in Clone()
221 return Equals(other as BoolValue); in Equals()
225 public bool Equals(BoolValue other) { in Equals()
[all …]
DInteropClient.cs622 ExpectCompressed = new BoolValue in RunClientCompressedUnary()
634 ExpectCompressed = new BoolValue in RunClientCompressedUnary()
646 ExpectCompressed = new BoolValue in RunClientCompressedUnary()
667 ExpectCompressed = new BoolValue in RunClientCompressedStreamingAsync()
686 ExpectCompressed = new BoolValue in RunClientCompressedStreamingAsync()
696 ExpectCompressed = new BoolValue in RunClientCompressedStreamingAsync()
/third_party/grpc/src/php/tests/qps/generated_code/Grpc/Testing/
DSimpleRequest.php278 GPBUtil::checkMessage($var, \Grpc\Testing\BoolValue::class);
330 GPBUtil::checkMessage($var, \Grpc\Testing\BoolValue::class);
/third_party/grpc/src/php/tests/interop/Grpc/Testing/
DSimpleRequest.php298 GPBUtil::checkMessage($var, \Grpc\Testing\BoolValue::class);
370 GPBUtil::checkMessage($var, \Grpc\Testing\BoolValue::class);
DBoolValue.php18 class BoolValue extends \Google\Protobuf\Internal\Message class
/third_party/grpc/src/proto/grpc/testing/
Dmessages.proto25 message BoolValue { message
88 BoolValue response_compressed = 6;
94 BoolValue expect_compressed = 8;
132 BoolValue expect_compressed = 2;
156 BoolValue compressed = 3;
/third_party/flatbuffers/tests/FlatBuffers.Test/
DFuzzTestData.cs26 public static readonly bool BoolValue = true; field in FlatBuffers.Test.FuzzTestData
/third_party/flutter/skia/src/utils/
DSkJSON.cpp59 BoolValue::BoolValue(bool b) { in BoolValue() function in skjson::BoolValue
571 fValueStack.push_back(BoolValue(true)); in pushTrue()
575 fValueStack.push_back(BoolValue(false)); in pushFalse()
855 stream->writeText(*v.as<BoolValue>() ? "true" : "false"); in Write()
/third_party/skia/src/utils/
DSkJSON.cpp58 BoolValue::BoolValue(bool b) { in BoolValue() function in skjson::BoolValue
579 fValueStack.push_back(BoolValue(true)); in pushTrue()
583 fValueStack.push_back(BoolValue(false)); in pushFalse()
863 stream->writeText(*v.as<BoolValue>() ? "true" : "false"); in Write()
/third_party/protobuf/php/src/Google/Protobuf/
DBoolValue.php17 class BoolValue extends \Google\Protobuf\Internal\Message class

123