/external/llvm/include/llvm/DebugInfo/CodeView/ |
D | FieldListRecordBuilder.h | 23 MethodInfo(MemberAccess Access, MethodKind Kind, MethodOptions Options, in MethodInfo() 30 MethodOptions getOptions() const { return Options; } in getOptions() 37 MethodOptions Options;
|
D | TypeRecord.h | 39 return MemberAccess(unsigned(Attrs) & unsigned(MethodOptions::AccessMask)); in getAccess() 45 (unsigned(Attrs) & unsigned(MethodOptions::MethodKindMask)) >> in getMethodKind() 51 MethodOptions getFlags() const { in getFlags() 52 return MethodOptions( in getFlags() 54 ~unsigned(MethodOptions::AccessMask | MethodOptions::MethodKindMask)); in getFlags() 890 OneMethodRecord(TypeIndex Type, MethodKind Kind, MethodOptions Options, in OneMethodRecord() 905 MethodOptions getOptions() const { return Options; } in getOptions() 926 MethodOptions Options;
|
D | MethodListRecordBuilder.h | 28 void writeMethod(MemberAccess Access, MethodKind Kind, MethodOptions Options,
|
D | TypeDumper.h | 85 MethodOptions Options);
|
D | CodeView.h | 268 enum class MethodOptions : uint16_t { enum 278 CV_DEFINE_ENUM_CLASS_FLAGS_OPERATORS(MethodOptions)
|
/external/llvm/lib/DebugInfo/CodeView/ |
D | TypeDumper.cpp | 98 ENUM_ENTRY(MethodOptions, Pseudo), 99 ENUM_ENTRY(MethodOptions, NoInherit), 100 ENUM_ENTRY(MethodOptions, NoConstruct), 101 ENUM_ENTRY(MethodOptions, CompilerGenerated), 102 ENUM_ENTRY(MethodOptions, Sealed), 512 MethodOptions Options) { in printMemberAttributes() 518 if (Options != MethodOptions::None) { in printMemberAttributes() 569 MethodOptions::None); in visitDataMember() 580 MethodOptions::None); in visitStaticDataMember() 596 MethodOptions::None); in visitEnumerator() [all …]
|
D | MethodListRecordBuilder.cpp | 20 MethodOptions Options, TypeIndex Type, in writeMethod()
|
D | TypeRecord.cpp | 271 MethodOptions Options = L->Attrs.getFlags(); in deserialize() 292 MethodOptions Options = L->Attrs.getFlags(); in deserialize()
|
/external/protobuf/src/google/protobuf/ |
D | descriptor.pb.cc | 444 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(MethodOptions, deprecated_), in protobuf_AssignDesc_google_2fprotobuf_2fdescriptor_2eproto() 445 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(MethodOptions, uninterpreted_option_), in protobuf_AssignDesc_google_2fprotobuf_2fdescriptor_2eproto() 450 MethodOptions::default_instance_, in protobuf_AssignDesc_google_2fprotobuf_2fdescriptor_2eproto() 452 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(MethodOptions, _has_bits_[0]), in protobuf_AssignDesc_google_2fprotobuf_2fdescriptor_2eproto() 454 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(MethodOptions, _extensions_), in protobuf_AssignDesc_google_2fprotobuf_2fdescriptor_2eproto() 455 sizeof(MethodOptions), in protobuf_AssignDesc_google_2fprotobuf_2fdescriptor_2eproto() 456 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(MethodOptions, _internal_metadata_), in protobuf_AssignDesc_google_2fprotobuf_2fdescriptor_2eproto() 609 MethodOptions_descriptor_, &MethodOptions::default_instance()); in protobuf_RegisterTypes() 661 delete MethodOptions::default_instance_; in protobuf_ShutdownFile_google_2fprotobuf_2fdescriptor_2eproto() 832 MethodOptions::default_instance_ = new MethodOptions(); in protobuf_AddDesc_google_2fprotobuf_2fdescriptor_2eproto() [all …]
|
D | descriptor.pb.h | 57 class MethodOptions; variable 1777 const ::google::protobuf::MethodOptions& options() const; 1778 ::google::protobuf::MethodOptions* mutable_options(); 1779 ::google::protobuf::MethodOptions* release_options(); 1780 void set_allocated_options(::google::protobuf::MethodOptions* options); 1817 ::google::protobuf::MethodOptions* options_; 2788 class LIBPROTOBUF_EXPORT MethodOptions : public ::google::protobuf::Message { 2790 MethodOptions(); 2791 virtual ~MethodOptions(); 2793 MethodOptions(const MethodOptions& from); [all …]
|
D | descriptor.h | 101 class MethodOptions; variable 1100 const MethodOptions& options() const; 1120 typedef MethodOptions OptionsType; 1138 const MethodOptions* options_; 1741 PROTOBUF_DEFINE_OPTIONS_ACCESSOR(MethodDescriptor, MethodOptions) in PROTOBUF_DEFINE_STRING_ACCESSOR()
|
D | unittest_custom_options.proto | 89 extend google.protobuf.MethodOptions { 338 extend google.protobuf.MethodOptions { optional Aggregate methodopt = 15512713; }
|
D | descriptor.proto | 241 optional MethodOptions options = 4; 594 message MethodOptions { message
|
D | descriptor.cc | 1947 if (&options() != &MethodOptions::default_instance()) { in CopyTo() 5045 method->options_ = &MethodOptions::default_instance(); in CrossLinkMethod()
|
/external/protobuf/csharp/src/Google.Protobuf/Reflection/ |
D | Descriptor.cs | 160 …o(typeof(global::Google.Protobuf.Reflection.MethodOptions), global::Google.Protobuf.Reflection.Met… in DescriptorReflection() 2345 private global::Google.Protobuf.Reflection.MethodOptions options_; 2346 public global::Google.Protobuf.Reflection.MethodOptions Options { 2479 options_ = new global::Google.Protobuf.Reflection.MethodOptions(); in MergeFrom() 2512 options_ = new global::Google.Protobuf.Reflection.MethodOptions(); in MergeFrom() 4149 internal sealed partial class MethodOptions : pb::IMessage<MethodOptions> { class 4150 …static readonly pb::MessageParser<MethodOptions> _parser = new pb::MessageParser<MethodOptions>(()… 4151 public static pb::MessageParser<MethodOptions> Parser { get { return _parser; } } 4161 public MethodOptions() { in MethodOptions() method in Google.Protobuf.Reflection.MethodOptions 4167 public MethodOptions(MethodOptions other) : this() { in MethodOptions() method in Google.Protobuf.Reflection.MethodOptions [all …]
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | CodeViewDebug.cpp | 1351 static MethodOptions translateMethodOptionFlags(const DISubprogram *SP) { in translateMethodOptionFlags() 1353 return MethodOptions::CompilerGenerated; in translateMethodOptionFlags() 1357 return MethodOptions::None; in translateMethodOptionFlags()
|
/external/nanopb-c/generator/proto/google/protobuf/ |
D | descriptor.proto | 204 optional MethodOptions options = 4; 457 message MethodOptions { message
|
/external/protobuf/python/google/protobuf/internal/ |
D | descriptor_test.py | 134 descriptor_pb2.MethodOptions())
|
/external/ImageMagick/MagickCore/ |
D | option.c | 1402 MethodOptions[] = variable 2071 case MagickMethodOptions: return(MethodOptions); in GetOptionInfo()
|
/external/nanopb-c/generator/google/protobuf/ |
D | descriptor_pb2.py | 1315 class MethodOptions(_message.Message): class
|
/external/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | Descriptors.java | 1961 public MethodOptions getOptions() { return proto.getOptions(); } in getOptions()
|
/external/protobuf/ruby/ext/google/protobuf_c/ |
D | upb.h | 7212 class MethodOptions : public ::upb::reffed_ptr<const ::upb::MessageDef> { 7214 MethodOptions(const ::upb::MessageDef* m, const void *ref_donor = NULL) 7219 static MethodOptions get() { 7221 return MethodOptions(m, &m);
|
/external/protobuf/php/ext/google/protobuf/ |
D | upb.h | 6942 namespace MethodOptions {
|