HomeSort by: relevance | last modified time | path
    Searched defs:Enum (Results 1 - 25 of 34) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
TpiHashing.h 29 : FullRecordHash(Full), ForwardDeclHash(Forward), Enum(std::move(ER)) {
47 return Enum;
57 codeview::EnumRecord Enum;
64 /// Given a CVType referring to a class, structure, union, or enum, compute
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
cpsizeof.cc 35 enum Enum { A, B, C, D };
42 typedef Enum e12[12];
65 T (Enum);
rvalue-ref-sizeof.cc 39 enum Enum { A, B, C, D };
46 typedef Enum e12[12];
69 T (Enum);
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
cpsizeof.cc 35 enum Enum { A, B, C, D };
42 typedef Enum e12[12];
65 T (Enum);
rvalue-ref-sizeof.cc 39 enum Enum { A, B, C, D };
46 typedef Enum e12[12];
69 T (Enum);
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/
py-missing-debug.py 17 from enum import Enum
27 class Mode(Enum):
py-missing-objfile.py 18 from enum import Enum
51 # Enum used to configure the 'handler' class from the test script.
52 class Mode(Enum):
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.python/
py-missing-objfile.py 18 from enum import Enum
51 # Enum used to configure the 'handler' class from the test script.
52 class Mode(Enum):
  /src/external/apache2/llvm/dist/clang/docs/tools/
dump_format_style.py 39 self.enum = None
45 if self.enum and self.enum.values:
46 s += indent('\n\nPossible values:\n\n%s\n' % self.enum, 2)
71 class Enum(object):
132 enum = None
150 elif line.startswith('enum'):
152 name = re.sub(r'enum\s+(\w+)\s*(:((\s*\w+)+)\s*)?\{', '\\1', line)
153 enum = Enum(name, comment variable in class:read_options.State
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/MCParser/
MCAsmParser.h 37 enum IdKind {
43 // Represents an Enum value
61 EnumIdentifier Enum;
70 Enum.EnumVal = enumVal;
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
DirectiveEmitter.cpp 43 // Generate enum class
45 StringRef Enum, StringRef Prefix,
48 OS << "enum class " << Enum << " {\n";
55 OS << "static constexpr std::size_t " << Enum
58 // Make the enum values available in the defined namespace. This allows us to
60 // At the same time we do not loose the strong type guarantees of the enum
68 << "llvm::" << DirLang.getCppNamespace() << "::" << Enum
75 // Also generate function declarations for get<Enum>Name(StringRef Str).
93 OS << "enum class " << EnumName << " {\n"
    [all...]
SearchableTableEmitter.cpp 60 GenericEnum *Enum = nullptr;
107 enum TypeContext {
128 else if (Field.Enum) {
129 auto *Entry = Field.Enum->EntryMap[cast<DefInit>(I)->getDef()];
178 } else if (Field.Enum || Field.IsIntrinsic || Field.IsInstruction)
187 void emitGenericEnum(const GenericEnum &Enum, raw_ostream &OS);
198 void collectEnumEntries(GenericEnum &Enum, StringRef NameField,
212 if (Index.Fields[0].Enum) {
214 return Index.Fields[0].Enum->EntryMap[EnumEntry]->second;
261 } else if (Field.Enum) {
    [all...]
  /src/external/mpl/bind/dist/bin/tests/system/chain/ans4/
ans.py 16 from enum import Enum
228 class ChainAction(Enum):
  /src/external/bsd/jemalloc.old/dist/scripts/
gen_travis.py 4 from enum import Enum, auto
  /src/external/bsd/jemalloc/dist/scripts/
gen_gh_actions.py 4 from enum import Enum, auto
gen_travis.py 4 from enum import Enum, auto
  /src/external/apache2/llvm/dist/clang/include/clang/APINotes/
Types.h 20 enum class RetainCountConventionKind {
31 enum class EnumExtensibilityKind {
38 enum class SwiftNewTypeKind {
41 Enum,
  /src/external/apache2/llvm/dist/clang/include/clang/Index/
IndexSymbol.h 23 enum class SymbolKind : uint8_t {
31 Enum,
62 enum class SymbolLanguage : uint8_t {
70 enum class SymbolSubKind : uint8_t {
82 enum class SymbolProperty : SymbolPropertySet {
98 /// Low 9 bits of clang-c/include/Index.h CXSymbolRole mirrors this enum.
99 enum class SymbolRole : uint32_t {
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/Utils/
AArch64BaseInfo.h 9 // This file contains small standalone helper functions and enum definitions for
235 enum CondCode { // Meaning (integer) Meaning (floating-point)
296 enum { N = 8, Z = 4, C = 2, V = 1 };
433 int Enum;
465 enum ShiftExtSpecifiers {
486 enum VectorLayout {
584 /// Target Operand Flag enum.
585 enum TOF {
  /src/external/apache2/llvm/dist/llvm/lib/Target/BPF/
BPFAbstractMemberAccess.cpp 133 enum : uint32_t {
337 if (GV->getName().startswith("llvm.bpf.preserve.enum.value")) {
341 report_fatal_error("Missing metadata for llvm.preserve.enum.value intrinsic");
344 report_fatal_error("Incorrect flag for llvm.bpf.preserve.enum.value intrinsic");
663 // Only basic types and enum types have signedness.
950 const auto *Enum = cast<DIEnumerator>(Element);
951 if (Enum->getName() == EnumeratorStr) {
999 VarType = Type::getInt64Ty(BB->getContext()); // 64bit ptr or enum value
BTFDebug.cpp 170 const auto *Enum = cast<DIEnumerator>(Element);
173 BTFEnum.NameOff = BDebug.addString(Enum->getName());
174 // BTF enum value is 32bit, enforce it.
176 if (Enum->isUnsigned())
177 Value = static_cast<uint32_t>(Enum->getValue().getZExtValue());
179 Value = static_cast<uint32_t>(Enum->getValue().getSExtValue());
187 for (const auto &Enum : EnumValues) {
188 OS.emitInt32(Enum.NameOff);
189 OS.emitInt32(Enum.Val);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaCast.cpp 33 enum TryCastResult {
46 enum CastType {
524 enum CastAwayConstnessKind {
552 enum { None, Ptr, MemPtr, BlockPtr, Array };
969 enum {
1323 if (const EnumType *Enum = SrcType->getAs<EnumType>()) {
1324 if (Enum->getDecl()->isScoped()) {
1342 // The exception is the reverse of enum->integer, i.e. integer->enum (and
1343 // enum->enum). See also C++ 5.2.9p7
    [all...]
  /src/external/apache2/llvm/dist/llvm/bindings/ocaml/llvm/
llvm.ml 96 | Enum of llattrkind * int64
418 | AttrRepr.Enum(kind, value) -> llvm_create_enum_attr context kind value
423 AttrRepr.Enum(get_enum_attr_kind attr, get_enum_attr_value attr)
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/
PDBTypes.h 80 enum class PDB_ReaderType {
86 enum class PDB_TableType {
102 enum PDB_NameSearchFlags {
119 enum class PDB_Checksum { None = 0, MD5 = 1, SHA1 = 2, SHA256 = 3 };
125 enum class PDB_Machine {
151 // A struct with an inner unnamed enum with explicit underlying type resuls
152 // in an enum class that can implicitly convert to the underlying type, which
153 // is convenient for this enum.
155 enum : uint32_t {
228 enum class PDB_DataKind
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
DwarfUnit.cpp 964 // Ignore the size if it's a non-enum forward decl.
965 // TODO: Do we care about size for enum forward declarations?
1513 auto *Enum = dyn_cast_or_null<DIEnumerator>(E);
1514 if (Enum) {
1516 StringRef Name = Enum->getName();
1518 addConstantValue(Enumerator, Enum->getValue(), IsUnsigned);

Completed in 44 milliseconds

1 2