Home
last modified time | relevance | path

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

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf/WellKnownTypes/
DStruct.cs232 case KindOneofCase.BoolValue: in Value()
233 BoolValue = other.BoolValue; in Value()
298 public bool BoolValue { property in Google.Protobuf.WellKnownTypes.Value
299 get { return kindCase_ == KindOneofCase.BoolValue ? (bool) kind_ : false; }
302 kindCase_ = KindOneofCase.BoolValue;
341 BoolValue = 4, enumerator
373 if (BoolValue != other.BoolValue) return false; in Equals()
386 if (kindCase_ == KindOneofCase.BoolValue) hash ^= BoolValue.GetHashCode(); in GetHashCode()
412 if (kindCase_ == KindOneofCase.BoolValue) { in WriteTo()
414 output.WriteBool(BoolValue); in WriteTo()
[all …]
DWrappers.cs44 …typeof(global::Google.Protobuf.WellKnownTypes.BoolValue), global::Google.Protobuf.WellKnownTypes.B… in WrappersReflection()
808 public sealed partial class BoolValue : pb::IMessage<BoolValue> { class
809 …ivate static readonly pb::MessageParser<BoolValue> _parser = new pb::MessageParser<BoolValue>(() =…
811 public static pb::MessageParser<BoolValue> Parser { get { return _parser; } }
824 public BoolValue() { in BoolValue() method in Google.Protobuf.WellKnownTypes.BoolValue
831 public BoolValue(BoolValue other) : this() { in BoolValue() method in Google.Protobuf.WellKnownTypes.BoolValue
836 public BoolValue Clone() { in Clone()
837 return new BoolValue(this); in Clone()
856 return Equals(other as BoolValue); in Equals()
860 public bool Equals(BoolValue other) { in Equals()
[all …]
DValuePartial.cs65 return new Value { BoolValue = value }; in ForBool()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/
Dwrappers.pb.cc155 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(BoolValue, value_), in protobuf_AssignDesc_google_2fprotobuf_2fwrappers_2eproto()
160 BoolValue::default_instance_, in protobuf_AssignDesc_google_2fprotobuf_2fwrappers_2eproto()
165 sizeof(BoolValue), in protobuf_AssignDesc_google_2fprotobuf_2fwrappers_2eproto()
166 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(BoolValue, _internal_metadata_), in protobuf_AssignDesc_google_2fprotobuf_2fwrappers_2eproto()
167 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(BoolValue, _is_default_instance_)); in protobuf_AssignDesc_google_2fprotobuf_2fwrappers_2eproto()
224 BoolValue_descriptor_, &BoolValue::default_instance()); in protobuf_RegisterTypes()
246 delete BoolValue::default_instance_; in protobuf_ShutdownFile_google_2fprotobuf_2fwrappers_2eproto()
282 BoolValue::default_instance_ = new BoolValue(); in protobuf_AddDesc_google_2fprotobuf_2fwrappers_2eproto()
291 BoolValue::default_instance_->InitAsDefaultInstance(); in protobuf_AddDesc_google_2fprotobuf_2fwrappers_2eproto()
1887 const int BoolValue::kValueFieldNumber;
[all …]
Dwrappers.pb.h40 class BoolValue; variable
622 class LIBPROTOBUF_EXPORT BoolValue : public ::google::protobuf::Message /* @@protoc_insertion_point…
624 BoolValue();
625 virtual ~BoolValue();
627 BoolValue(const BoolValue& from);
629 inline BoolValue& operator=(const BoolValue& from) {
639 static const BoolValue& default_instance();
641 void UnsafeArenaSwap(BoolValue* other);
642 void Swap(BoolValue* other);
646 inline BoolValue* New() const { return New(NULL); } in New()
[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;
Dwrappers.proto99 // The JSON representation for `BoolValue` is JSON `true` and `false`.
100 message BoolValue { message
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/util/
Dtype_resolver_util.cc46 using google::protobuf::BoolValue;
139 BoolValue value; in ConvertMessageOptions()
Djson_format_proto3.proto115 google.protobuf.BoolValue bool_value = 1;
125 repeated google.protobuf.BoolValue repeated_bool_value = 11;
Dtype_resolver_util_test.cc59 using google::protobuf::BoolValue;
136 BoolValue bool_value; in HasBoolOption()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/util/internal/testdata/
Dwrappers.proto87 google.protobuf.BoolValue bool = 1;
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf.Test/
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()
DJsonFormatterTest.cs518 [TestCase(typeof(BoolValue), true, "true")]
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/conformance/
Dconformance.proto216 google.protobuf.BoolValue optional_bool_wrapper = 201;
226 repeated google.protobuf.BoolValue repeated_bool_wrapper = 211;
DMakefile.am27 com/google/protobuf/BoolValue.java \
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/util/internal/
Dutility.cc107 google::protobuf::BoolValue b; in GetBoolFromAny()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/util/src/test/java/com/google/protobuf/util/
DJsonFormatTest.java34 import com.google.protobuf.BoolValue;
886 anyMessage = Any.pack(BoolValue.newBuilder().setValue(true).build()); in testAnyFields()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/util/src/test/proto/com/google/protobuf/util/
Djson_test.proto173 google.protobuf.BoolValue bool_value = 7;
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/util/src/main/java/com/google/protobuf/util/
DJsonFormat.java44 import com.google.protobuf.BoolValue;
564 printers.put(BoolValue.getDescriptor().getFullName(), wrappersPrinter); in buildWellKnownTypePrinters()
1081 parsers.put(BoolValue.getDescriptor().getFullName(), wrappersPrinter); in buildWellKnownTypeParsers()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf/
DJsonParser.cs90 { BoolValue.Descriptor.FullName, MergeWrapperField }