HomeSort by relevance Sort by last modified time
    Searched refs:BoolValue (Results 1 - 25 of 28) sorted by null

1 2

  /external/flatbuffers/tests/FlatBuffers.Test/
FuzzTestData.cs 26 public static readonly bool BoolValue = true;
FlatBuffersFuzzTests.cs 597 builder.AddBool(j, FuzzTestData.BoolValue, false);
679 Assert.AreEqual(FuzzTestData.BoolValue, table.GetSlot(f, false));
  /external/protobuf/src/google/protobuf/
wrappers.pb.cc 154 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(BoolValue, value_),
159 BoolValue::default_instance_,
164 sizeof(BoolValue),
165 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(BoolValue, _internal_metadata_),
166 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(BoolValue, _is_default_instance_));
222 BoolValue_descriptor_, &BoolValue::default_instance());
244 delete BoolValue::default_instance_;
279 BoolValue::default_instance_ = new BoolValue();
288 BoolValue::default_instance_->InitAsDefaultInstance()
    [all...]
wrappers.pb.h 40 class BoolValue;
598 class LIBPROTOBUF_EXPORT BoolValue : public ::google::protobuf::Message {
600 BoolValue();
601 virtual ~BoolValue();
603 BoolValue(const BoolValue& from);
605 inline BoolValue& operator=(const BoolValue& from) {
615 static const BoolValue& default_instance();
617 void UnsafeArenaSwap(BoolValue* other)
    [all...]
  /external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
Struct.cs 45 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),
215 case KindOneofCase.BoolValue:
216 BoolValue = other.BoolValue;
276 public bool BoolValue {
277 get { return kindCase_ == KindOneofCase.BoolValue ? (bool) kind_ : false; }
280 kindCase_ = KindOneofCase.BoolValue;
317 BoolValue = 4,
345 if (BoolValue != other.BoolValue) return false
    [all...]
Wrappers.cs 45 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.WellKnownTypes.BoolValue), global::Google.Protobuf.WellKnownTypes.BoolValue.Parser, new[]{ "Value" }, null, null, null),
723 /// The JSON representation for `BoolValue` is JSON `true` and `false`.
726 public sealed partial class BoolValue : pb::IMessage<BoolValue> {
727 private static readonly pb::MessageParser<BoolValue> _parser = new pb::MessageParser<BoolValue>(() => new BoolValue());
728 public static pb::MessageParser<BoolValue> Parser { get { return _parser; } }
738 public BoolValue() {
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
wrappers.pb.h 40 class BoolValue;
598 class LIBPROTOBUF_EXPORT BoolValue : public ::google::protobuf::Message {
600 BoolValue();
601 virtual ~BoolValue();
603 BoolValue(const BoolValue& from);
605 inline BoolValue& operator=(const BoolValue& from) {
615 static const BoolValue& default_instance();
617 void UnsafeArenaSwap(BoolValue* other)
    [all...]
  /external/golang-protobuf/ptypes/wrappers/
wrappers.pb.go 17 BoolValue
166 // The JSON representation for `BoolValue` is JSON `true` and `false`.
167 type BoolValue struct {
172 func (m *BoolValue) Reset() { *m = BoolValue{} }
173 func (m *BoolValue) String() string { return proto.CompactTextString(m) }
174 func (*BoolValue) ProtoMessage() {}
175 func (*BoolValue) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} }
176 func (*BoolValue) XXX_WellKnownType() string { return "BoolValue" }
    [all...]
  /external/protobuf/src/google/protobuf/util/
type_resolver_util.cc 46 using google::protobuf::BoolValue;
139 BoolValue value;
type_resolver_util_test.cc 59 using google::protobuf::BoolValue;
136 BoolValue bool_value;
  /external/clang/unittests/ASTMatchers/Dynamic/
RegistryTest.cpp 131 Matcher<Stmt> BoolValue =
140 EXPECT_TRUE(matches(BoolSnippet, BoolValue));
141 EXPECT_FALSE(matches(ClassSnippet, BoolValue));
  /external/golang-protobuf/ptypes/struct/
struct.pb.go 121 BoolValue bool `protobuf:"varint,4,opt,name=bool_value,json=boolValue,oneof"`
167 return x.BoolValue
213 if x.BoolValue {
  /external/protobuf/conformance/
Makefile.am 27 com/google/protobuf/BoolValue.java \
91 lite/com/google/protobuf/BoolValue.java \
  /external/protobuf/src/google/protobuf/util/internal/
utility.cc 107 google::protobuf::BoolValue b;
289 "google.protobuf.BoolValue", "google.protobuf.StringValue",
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/
GenC.py 907 BoolValue = Value.upper()
908 if BoolValue == 'TRUE' or BoolValue == '1':
910 elif BoolValue == 'FALSE' or BoolValue == '0':
    [all...]
  /external/golang-protobuf/jsonpb/
jsonpb_test.go 449 {"BoolValue", marshaler, &pb.KnownTypes{Bool: &wpb.BoolValue{Value: true}}, `{"bool":true}`},
612 {"BoolValue", Unmarshaler{}, `{"bool":true}`, &pb.KnownTypes{Bool: &wpb.BoolValue{Value: true}}},
623 {"null BoolValue", Unmarshaler{}, `{"bool":null}`, &pb.KnownTypes{Bool: nil}},
jsonpb.go 159 "Int32Value", "UInt32Value", "BoolValue", "StringValue", "BytesValue":
660 "Int32Value", "UInt32Value", "BoolValue", "StringValue", "BytesValue":
  /external/protobuf/java/util/src/test/java/com/google/protobuf/util/
JsonFormatTest.java 34 import com.google.protobuf.BoolValue;
678 + " \"boolValue\": false,\n"
704 + " \"boolValue\": true,\n"
    [all...]
  /external/protobuf/java/util/src/main/java/com/google/protobuf/util/
JsonFormat.java 44 import com.google.protobuf.BoolValue;
492 printers.put(BoolValue.getDescriptor().getFullName(), wrappersPrinter);
    [all...]
  /external/golang-protobuf/jsonpb/jsonpb_test_proto/
test_objects.pb.go 635 Bool *google_protobuf4.BoolValue `protobuf:"bytes,9,opt,name=bool" json:"bool,omitempty"`
730 func (m *KnownTypes) GetBool() *google_protobuf4.BoolValue {
  /external/tinyxml2/
tinyxml2.h     [all...]
xmltest.cpp 949 XMLTest("attrib-bool", true, attrib->BoolValue(), true);
    [all...]
  /external/golang-protobuf/_conformance/conformance_proto/
conformance.pb.go 546 OptionalBoolWrapper *google_protobuf5.BoolValue `protobuf:"bytes,201,opt,name=optional_bool_wrapper,json=optionalBoolWrapper" json:"optional_bool_wrapper,omitempty"`
555 RepeatedBoolWrapper []*google_protobuf5.BoolValue `protobuf:"bytes,211,rep,name=repeated_bool_wrapper,json=repeatedBoolWrapper" json:"repeated_bool_wrapper,omitempty"`
    [all...]
  /prebuilts/tools/common/m2/repository/com/google/protobuf/protobuf-java/3.0.0/
protobuf-java-3.0.0.jar 
  /prebuilts/tools/common/m2/repository/com/google/protobuf/protobuf-java/3.0.0-beta-2/
protobuf-java-3.0.0-beta-2.jar 

Completed in 949 milliseconds

1 2