reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/ObjectYAML/COFFYAML.h
   41 inline DLLCharacteristics operator|(DLLCharacteristics a,
   41 inline DLLCharacteristics operator|(DLLCharacteristics a,
   42                                     DLLCharacteristics b) {
  195   static void bitset(IO &IO, COFF::DLLCharacteristics &Value);
include/llvm/Support/ScopedPrinter.h
   33   T Value;
   34   EnumEntry(StringRef N, StringRef A, T V) : Name(N), AltName(A), Value(V) {}
   35   EnumEntry(StringRef N, T V) : Name(N), AltName(N), Value(V) {}
   92   template <typename T> HexNumber hex(T Value) { return HexNumber(Value); }
  115   void printFlags(StringRef Label, T Value, ArrayRef<EnumEntry<TFlag>> Flags,
  116                   TFlag EnumMask1 = {}, TFlag EnumMask2 = {},
  116                   TFlag EnumMask1 = {}, TFlag EnumMask2 = {},
  117                   TFlag EnumMask3 = {}) {
  118     typedef EnumEntry<TFlag> FlagEntry;
  126       TFlag EnumMask{};
  140     llvm::sort(SetFlags, &flagName<TFlag>);
  341   static bool flagName(const EnumEntry<T> &lhs, const EnumEntry<T> &rhs) {
  341   static bool flagName(const EnumEntry<T> &lhs, const EnumEntry<T> &rhs) {
include/llvm/Support/YAMLTraits.h
  313   using Signature_enumeration = void (*)(class IO&, T&);
  322     (sizeof(test<ScalarEnumerationTraits<T>>(nullptr)) == 1);
  329   using Signature_bitset = void (*)(class IO&, T&);
  337   static bool const value = (sizeof(test<ScalarBitSetTraits<T>>(nullptr)) == 1);
  344   using Signature_input = StringRef (*)(StringRef, void*, T&);
  345   using Signature_output = void (*)(const T&, void*, raw_ostream&);
  357       (sizeof(test<ScalarTraits<T>>(nullptr, nullptr, nullptr)) == 1);
  364   using Signature_input = StringRef (*)(StringRef, void *, T &);
  365   using Signature_output = void (*)(const T &, void *, raw_ostream &);
  375       (sizeof(test<BlockScalarTraits<T>>(nullptr, nullptr)) == 1);
  380   using Signature_input = StringRef (*)(StringRef, StringRef, void *, T &);
  381   using Signature_output = void (*)(const T &, void *, raw_ostream &,
  383   using Signature_mustQuote = QuotingType (*)(const T &, StringRef);
  393       (sizeof(test<TaggedScalarTraits<T>>(nullptr, nullptr, nullptr)) == 1);
  412   using Signature_mapping = void (*)(class IO &, T &);
  419   static bool const value = (sizeof(test<MappingTraits<T>>(nullptr)) == 1);
  438   using Signature_validate = StringRef (*)(class IO &, T &);
  445   static bool const value = (sizeof(test<MappingTraits<T>>(nullptr)) == 1);
  452   using Signature_size = size_t (*)(class IO&, T&);
  460   static bool const value =  (sizeof(test<SequenceTraits<T>>(nullptr)) == 1);
  467   using Signature_input = void (*)(IO &io, StringRef key, T &v);
  476       (sizeof(test<CustomMappingTraits<T>>(nullptr)) == 1);
  516   using Signature_size = size_t (*)(class IO &, T &);
  524   static bool const value = (sizeof(test<DocumentListTraits<T>>(nullptr))==1);
  528   using Signature_getKind = NodeKind (*)(const T &);
  535   static bool const value = (sizeof(test<PolymorphicTraits<T>>(nullptr)) == 1);
  819   void bitSetCase(T &Val, const char* Str, const T ConstVal) {
  819   void bitSetCase(T &Val, const char* Str, const T ConstVal) {
  827   void bitSetCase(T &Val, const char* Str, const uint32_t ConstVal) {
  849   template <typename T> void mapRequired(const char *Key, T &Val) {
  941   void processKey(const char *Key, T &Val, bool Required, Context &Ctx) {
  976 typename std::enable_if<has_ScalarBitSetTraits<T>::value, void>::type
  977 yamlize(IO &io, T &Val, bool, EmptyContext &Ctx) {
  982     ScalarBitSetTraits<T>::bitset(io, Val);
lib/ObjectYAML/COFFYAML.cpp
  289     IO &IO, COFF::DLLCharacteristics &Value) {
  404   COFF::DLLCharacteristics Characteristics;
tools/llvm-readobj/COFFDumper.cpp
  398 static const EnumEntry<COFF::DLLCharacteristics> PEDLLCharacteristics[] = {