/aosp_15_r20/external/golang-protobuf/types/known/typepb/ |
H A D | type.pb.go | 580 type EnumValue struct { struct 581 state protoimpl.MessageState 582 sizeCache protoimpl.SizeCache 583 unknownFields protoimpl.UnknownFields 586 Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` 588 Number int32 `protobuf:"varint,2,opt,name=number,proto3" json:"number,omitempty"` 590 Options []*Option `protobuf:"bytes,3,rep,name=options,proto3" json:"options,omitempty"` 593 func (x *EnumValue) Reset() { 602 func (x *EnumValue) String() string { 606 func (*EnumValue) ProtoMessage() {} [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/drm/src/control/ |
D | property.rs | 235 pub fn as_enum(&self) -> Option<&'a EnumValue> { in as_enum() 288 pub struct EnumValue(ffi::drm_mode_property_enum); struct 290 impl EnumValue { impl 302 impl From<ffi::drm_mode_property_enum> for EnumValue { implementation 308 impl std::fmt::Debug for EnumValue { implementation 326 pub fn values(&self) -> (&[RawValue], &[EnumValue]) { in values() 332 pub fn get_value_from_raw_value(&self, value: RawValue) -> Option<&EnumValue> { in get_value_from_raw_value()
|
/aosp_15_r20/system/tools/hidl/ |
D | EnumType.h | 151 struct EnumValue : public LocalIdentifier, DocCommentable { struct 172 DISALLOW_COPY_AND_ASSIGN(EnumValue); argument
|
/aosp_15_r20/external/rust/android-crates-io/crates/protobuf/src/well_known_types/ |
D | type_.rs | 939 pub struct EnumValue { struct 945 // @@protoc_insertion_point(field:google.protobuf.EnumValue.number) argument 948 // @@protoc_insertion_point(field:google.protobuf.EnumValue.options) argument 951 // @@protoc_insertion_point(special_field:google.protobuf.EnumValue.special_fields) argument 955 impl<'a> ::std::default::Default for &'a EnumValue { argument 961 impl EnumValue { impl 992 impl crate::Message for EnumValue { implementation 1082 impl crate::MessageFull for EnumValue { implementation 1089 impl ::std::fmt::Display for EnumValue { implementation 1095 impl crate::reflect::ProtobufValue for EnumValue { implementation
|
/aosp_15_r20/external/rust/android-crates-io/extra_versions/crates/protobuf/src/well_known_types/ |
D | type_pb.rs | 1130 pub fn get_enumvalue(&self) -> &[EnumValue] { in get_enumvalue() 1138 pub fn set_enumvalue(&mut self, v: crate::RepeatedField<EnumValue>) { in set_enumvalue() 1143 pub fn mut_enumvalue(&mut self) -> &mut crate::RepeatedField<EnumValue> { in mut_enumvalue() 1148 pub fn take_enumvalue(&mut self) -> crate::RepeatedField<EnumValue> { in take_enumvalue() 1424 pub struct EnumValue { struct 1436 impl<'a> ::std::default::Default for &'a EnumValue { argument 1442 impl EnumValue { impl 1514 impl crate::Message for EnumValue { implementation 1647 impl crate::Clear for EnumValue { implementation 1656 impl ::std::fmt::Debug for EnumValue { implementation [all …]
|
/aosp_15_r20/external/golang-protobuf/compiler/protogen/ |
H A D | protogen.go | 537 type EnumValue struct { struct 538 Desc protoreflect.EnumValueDescriptor 540 GoIdent GoIdent // name of the generated Go declaration 542 Parent *Enum // enum in which this value is declared 544 Location Location // location of this enum value 545 Comments CommentSet // comments associated with this enum value
|
/aosp_15_r20/external/golang-protobuf/internal/filedesc/ |
H A D | desc.go | 128 EnumValue struct { struct 129 Base 130 L1 EnumValueL1 159 func (ed *EnumValue) Options() protoreflect.ProtoMessage { 165 func (ed *EnumValue) Number() protoreflect.EnumNumber { return ed.L1.Number } 166 func (ed *EnumValue) Format(s fmt.State, r rune) { descfmt.FormatDesc(s, r, ed) } 167 func (ed *EnumValue) ProtoType(protoreflect.EnumValueDescriptor) {}
|
/aosp_15_r20/external/google-cloud-java/java-contentwarehouse/proto-google-cloud-contentwarehouse-v1/src/main/java/com/google/cloud/contentwarehouse/v1/ |
H A D | EnumValue.java | 30 public final class EnumValue extends com.google.protobuf.GeneratedMessageV3 class 36 private EnumValue(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) { in EnumValue() method in EnumValue 40 private EnumValue() { in EnumValue() method in EnumValue
|
/aosp_15_r20/external/googleapis/google/cloud/datacatalog/v1beta1/ |
H A D | tags.proto | 87 message EnumValue { message 214 message EnumValue { message
|
/aosp_15_r20/external/google-cloud-java/java-datacatalog/proto-google-cloud-datacatalog-v1beta1/src/main/proto/google/cloud/datacatalog/v1beta1/ |
H A D | tags.proto | 86 message EnumValue { message 190 message EnumValue { message
|
/aosp_15_r20/external/google-cloud-java/java-datacatalog/proto-google-cloud-datacatalog-v1/src/main/proto/google/cloud/datacatalog/v1/ |
H A D | tags.proto | 88 message EnumValue { message 253 message EnumValue { message
|
/aosp_15_r20/external/googleapis/google/cloud/datacatalog/v1/ |
H A D | tags.proto | 88 message EnumValue { message 253 message EnumValue { message
|
/aosp_15_r20/external/cronet/third_party/libc++/src/benchmarks/ |
H A D | CartesianBenchmarks.h | 20 struct EnumValue : std::integral_constant<E, static_cast<E>(I)> { struct 26 return std::make_tuple(EnumValue<D, E, Idxs>{}...); in makeEnumValueTuple() argument
|
/aosp_15_r20/external/rust/android-crates-io/crates/protobuf-parse/src/pure/ |
D | model.rs | 303 pub(crate) struct EnumValue { struct 318 pub values: Vec<EnumValue>, argument
|
/aosp_15_r20/external/libcxx/benchmarks/ |
H A D | CartesianBenchmarks.hpp | 22 struct EnumValue : std::integral_constant<E, static_cast<E>(I)> { struct 23 static std::string name() { return std::string("_") + D::Names[I]; } in name()
|
/aosp_15_r20/prebuilts/go/linux-x86/src/debug/dwarf/ |
D | type.go | 288 type EnumValue struct { struct 289 Name string 290 Val int64
|
/aosp_15_r20/external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/ |
H A D | Type.cs | 1468 public sealed partial class EnumValue : pb::IMessage<EnumValue> class 1493 public EnumValue() { in EnumValue() method in Google.Protobuf.WellKnownTypes.EnumValue 1501 public EnumValue(EnumValue other) : this() { in EnumValue() method in Google.Protobuf.WellKnownTypes.EnumValue
|
/aosp_15_r20/external/cronet/third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/ |
H A D | Type.cs | 1468 public sealed partial class EnumValue : pb::IMessage<EnumValue> class 1493 public EnumValue() { in EnumValue() method in Google.Protobuf.WellKnownTypes.EnumValue 1501 public EnumValue(EnumValue other) : this() { in EnumValue() method in Google.Protobuf.WellKnownTypes.EnumValue
|
/aosp_15_r20/external/shaderc/spirv-headers/tools/buildHeaders/ |
D | jsonToSpirv.h | 176 EnumValue() : value(0), desc(nullptr) {} in EnumValue() function 177 EnumValue(unsigned int the_value, const std::string& the_name, EnumCaps&& the_caps, in EnumValue() function
|
/aosp_15_r20/external/swiftshader/third_party/SPIRV-Headers/tools/buildHeaders/ |
H A D | jsonToSpirv.h | 206 EnumValue() : value(0), desc(nullptr) {} in EnumValue() function 207 EnumValue(unsigned int the_value, const std::string& the_name, EnumCaps&& the_caps, in EnumValue() function
|
/aosp_15_r20/external/deqp-deps/SPIRV-Headers/tools/buildHeaders/ |
D | jsonToSpirv.h | 204 EnumValue() : value(0), desc(nullptr) {} in EnumValue() function 205 EnumValue(unsigned int the_value, const std::string& the_name, EnumCaps&& the_caps, in EnumValue() function
|
/aosp_15_r20/external/angle/third_party/spirv-headers/src/tools/buildHeaders/ |
H A D | jsonToSpirv.h | 213 EnumValue() : value(0), desc(nullptr) {} in EnumValue() function 214 …EnumValue(unsigned int the_value, const std::string& the_name, Aliases&& the_aliases, EnumCaps&& t… in EnumValue() function
|
/aosp_15_r20/external/google-cloud-java/java-datacatalog/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/ |
H A D | TagField.java | 110 public static final class EnumValue extends com.google.protobuf.GeneratedMessageV3 class in TagField 116 private EnumValue(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) { in EnumValue() method in TagField.EnumValue 120 private EnumValue() { in EnumValue() method in TagField.EnumValue
|
/aosp_15_r20/external/llvm/tools/llvm-pdbdump/ |
H A D | EnumDumper.cpp | 39 while (auto EnumValue = EnumValues->getNext()) { in start() local
|
/aosp_15_r20/external/golang-protobuf/internal/descopts/ |
H A D | options.go | 22 EnumValue pref.ProtoMessage var
|