/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf/WellKnownTypes/ |
D | Struct.cs | 232 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 …]
|
D | Wrappers.cs | 44 …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 …]
|
D | ValuePartial.cs | 65 return new Value { BoolValue = value }; in ForBool()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/ |
D | wrappers.pb.cc | 155 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 …]
|
D | wrappers.pb.h | 40 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 …]
|
D | unittest_well_known_types.proto | 39 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;
|
D | wrappers.proto | 99 // 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/ |
D | type_resolver_util.cc | 46 using google::protobuf::BoolValue; 139 BoolValue value; in ConvertMessageOptions()
|
D | json_format_proto3.proto | 115 google.protobuf.BoolValue bool_value = 1; 125 repeated google.protobuf.BoolValue repeated_bool_value = 11;
|
D | type_resolver_util_test.cc | 59 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/ |
D | wrappers.proto | 87 google.protobuf.BoolValue bool = 1;
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf.Test/ |
D | JsonParserTest.cs | 136 [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()
|
D | JsonFormatterTest.cs | 518 [TestCase(typeof(BoolValue), true, "true")]
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/conformance/ |
D | conformance.proto | 216 google.protobuf.BoolValue optional_bool_wrapper = 201; 226 repeated google.protobuf.BoolValue repeated_bool_wrapper = 211;
|
D | Makefile.am | 27 com/google/protobuf/BoolValue.java \
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/util/internal/ |
D | utility.cc | 107 google::protobuf::BoolValue b; in GetBoolFromAny()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/util/src/test/java/com/google/protobuf/util/ |
D | JsonFormatTest.java | 34 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/ |
D | json_test.proto | 173 google.protobuf.BoolValue bool_value = 7;
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/util/src/main/java/com/google/protobuf/util/ |
D | JsonFormat.java | 44 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/ |
D | JsonParser.cs | 90 { BoolValue.Descriptor.FullName, MergeWrapperField }
|