Home
last modified time | relevance | path

Searched refs:BoolValue (Results 1 - 25 of 27) sorted by relevance

12

/third_party/skia/tests/
H A 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>(reporte in DEF_TEST()
[all...]
/third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
H A DStruct.cs46 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.WellKnownTypes.Value), global::Google.Protobuf.WellKnownTypes.Value.Parser, new[]{ "NullValue", "NumberValue", "StringValue", "BoolValue", "StructValue", "ListValue" }, new[]{ "Kind" }, null, null, null), in StructReflection()
291 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) retur in Equals()
[all...]
H A DWrappers.cs46 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.WellKnownTypes.BoolValue), global::Google.Protobuf.WellKnownTypes.BoolValue.Parser, new[]{ "Value" }, null, null, null, null), in WrappersReflection()
1138 /// The JSON representation for `BoolValue` is JSON `true` and `false`.
1140 public sealed partial class BoolValue : pb::IMessage<BoolValue> class
1145 private static readonly pb::MessageParser<BoolValue> _parser = new pb::MessageParser<BoolValue>(() => new 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() { BoolValue() method in Google.Protobuf.WellKnownTypes.BoolValue
[all...]
H A DValuePartial.cs61 /// <param name="value">Value to set for the BoolValue property.</param>
65 return new Value { BoolValue = value }; in ForBool()
/third_party/protobuf/src/google/protobuf/
H A 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( function in BoolValue
1496 BoolValue::BoolValue(const BoolValue& from) BoolValue() function in BoolValue
[all...]
H A Dwrappers.pb.h58 class BoolValue;
87 template<> PROTOBUF_EXPORT PROTOBUF_NAMESPACE_ID::BoolValue* Arena::CreateMaybeMessage<PROTOBUF_NAMESPACE_ID::BoolValue>(Arena*);
923 class PROTOBUF_EXPORT BoolValue PROTOBUF_FINAL :
924 public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:google.protobuf.BoolValue) */ {
926 inline BoolValue() : BoolValue(nullptr) {} in BoolValue() function in PROTOBUF_FINAL
927 virtual ~BoolValue();
929 BoolValue(const BoolValue
931 : BoolValue() { BoolValue() function in PROTOBUF_FINAL
[all...]
/third_party/protobuf/php/tests/
H A DWrapperTypeSettersTest.php7 use Google\Protobuf\BoolValue;
105 [TestWrapperSetters::class, BoolValue::class, "setBoolValue", "setBoolValueUnwrapped", "getBoolValue", "getBoolValueUnwrapped", [
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],
H A DWellKnownTest.php10 use Google\Protobuf\BoolValue;
385 $m = new BoolValue();
H A DEncodeDecodeTest.php30 use Google\Protobuf\BoolValue;
49 $m = new BoolValue();
60 $m = new BoolValue();
/third_party/protobuf/php/src/Google/Protobuf/
H A DBoolValue.php13 * The JSON representation for `BoolValue` is JSON `true` and `false`.
15 * Generated from protobuf message <code>google.protobuf.BoolValue</code>
17 class BoolValue extends \Google\Protobuf\Internal\Message class
/third_party/skia/src/utils/
H A 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()
H A DSkJSON.h219 class BoolValue final : public Value {
223 explicit BoolValue(bool);
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
H A DWrappersLiteOfMethodTest.java46 builder.setFieldBool(BoolValue.of(true)); in testOf()
H A DWrappersOfMethodTest.java46 builder.setFieldBool(BoolValue.of(true)); in testOf()
/third_party/protobuf/ruby/tests/
H A Dbasic.rb275 map_bool: {0 => Google::Protobuf::BoolValue.new(value: true)},
317 map_bool: {0 => Google::Protobuf::BoolValue.new(value: false)},
359 map_bool: {0 => Google::Protobuf::BoolValue.new()},
H A Dcommon_tests.rb1288 bool: Google::Protobuf::BoolValue.new(value: false),
1345 bool: Google::Protobuf::BoolValue.new(value: true),
1392 repeated_bool: [Google::Protobuf::BoolValue.new(value: true)],
1484 run_test.call(Google::Protobuf::BoolValue, true)
1511 assert_equal Google::Protobuf::BoolValue.new(value: false), m.bool
1557 bool: Google::Protobuf::BoolValue.new(value: true),
1590 m.bool = Google::Protobuf::BoolValue.new(value: false)
1592 assert_equal Google::Protobuf::BoolValue.new(value: false), m.bool
1639 bool: Google::Protobuf::BoolValue.new(value: true),
/third_party/skia/modules/skottie/src/
H A DSkottieJson.cpp47 *b = *v.as<BoolValue>(); in Parse()
/third_party/protobuf/src/google/protobuf/util/
H A Dtype_resolver_util.cc51 using google::protobuf::BoolValue;
211 value->PackFrom(WrapValue<BoolValue>( in ConvertOptionField()
H A Dtype_resolver_util_test.cc53 using google::protobuf::BoolValue;
134 return HasOption<BoolValue>(options, name, value); in HasBoolOption()
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/
H A DJsonParserTest.cs136 [TestCase(typeof(BoolValue), "true", true)]
688 Assert.AreEqual(new Value { BoolValue = true }, Value.Parser.ParseJson("true")); in StructValue_Bool()
689 Assert.AreEqual(new Value { BoolValue = false }, Value.Parser.ParseJson("false")); in StructValue_Bool()
/third_party/protobuf/csharp/src/Google.Protobuf.Test/
H A DJsonParserTest.cs138 [TestCase(typeof(BoolValue), "true", true)]
690 Assert.AreEqual(new Value { BoolValue = true }, Value.Parser.ParseJson("true")); in StructValue_Bool()
691 Assert.AreEqual(new Value { BoolValue = false }, Value.Parser.ParseJson("false")); in StructValue_Bool()
/third_party/skia/modules/particles/include/
H A DSkParticleSerialization.h172 b = *v.as<skjson::BoolValue>(); in TryParse()
/third_party/skia/experimental/skrive/src/reader/
H A DJsonReader.cpp90 const auto* jbool = this->readProp<skjson::BoolValue>(label);
/third_party/protobuf/src/google/protobuf/util/internal/
H A Dutility.cc104 google::protobuf::BoolValue b; in GetBoolFromAny()
340 "google.protobuf.BoolValue", "google.protobuf.StringValue",
/third_party/protobuf/java/util/src/main/java/com/google/protobuf/util/
H A DJsonFormat.java47 import com.google.protobuf.BoolValue;
798 printers.put(BoolValue.getDescriptor().getFullName(), wrappersPrinter); in buildWellKnownTypePrinters()
1380 parsers.put(BoolValue.getDescriptor().getFullName(), wrappersPrinter); in buildWellKnownTypeParsers()

Completed in 27 milliseconds

12