Home
last modified time | relevance | path

Searched refs:EntryType (Results 1 – 16 of 16) sorted by relevance

/openbsd-src/gnu/llvm/lldb/source/Core/
H A DFormatEntity.cpp83 using EntryType = FormatEntity::Entry::Type; typedef
88 Definition("*", EntryType::ParentString)};
91 Definition("load", EntryType::AddressLoad),
92 Definition("file", EntryType::AddressFile)};
95 Definition("basename", EntryType::ParentNumber, FileKind::Basename),
96 Definition("dirname", EntryType::ParentNumber, FileKind::Dirname),
97 Definition("fullpath", EntryType::ParentNumber, FileKind::Fullpath)};
100 Definition("index", EntryType::FrameIndex),
101 Definition("pc", EntryType::FrameRegisterPC),
102 Definition("fp", EntryType::FrameRegisterFP),
[all …]
/openbsd-src/gnu/llvm/lldb/include/lldb/Symbol/
H A DDebugMacros.h26 enum EntryType : uint8_t { enum
46 EntryType GetType() const { return static_cast<EntryType>(m_type); } in GetType()
59 DebugMacroEntry(EntryType type, uint32_t line, uint32_t debug_line_file_idx,
62 DebugMacroEntry(EntryType type, const DebugMacrosSP &debug_macros_sp);
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Utility/
H A DAuxVector.h26 enum EntryType { enum
65 std::optional<uint64_t> GetAuxValue(enum EntryType entry_type) const;
67 const char *GetEntryName(EntryType type) const;
H A DAuxVector.cpp34 AuxVector::GetAuxValue(enum EntryType entry_type) const { in GetAuxValue()
48 GetEntryName(static_cast<EntryType>(entry.first)), entry.first, in DumpToLog()
53 const char *AuxVector::GetEntryName(EntryType type) const { in GetEntryName()
/openbsd-src/gnu/llvm/llvm/include/llvm/ObjectYAML/
H A DDWARFYAML.h195 template <typename EntryType> struct ListEntries {
196 std::optional<std::vector<EntryType>> Entries;
200 template <typename EntryType> struct ListTable {
208 std::vector<ListEntries<EntryType>> Lists;
355 template <typename EntryType> in LLVM_YAML_IS_SEQUENCE_VECTOR()
356 struct MappingTraits<DWARFYAML::ListTable<EntryType>> { in LLVM_YAML_IS_SEQUENCE_VECTOR()
357 static void mapping(IO &IO, DWARFYAML::ListTable<EntryType> &ListTable); in LLVM_YAML_IS_SEQUENCE_VECTOR()
360 template <typename EntryType> in LLVM_YAML_IS_SEQUENCE_VECTOR()
361 struct MappingTraits<DWARFYAML::ListEntries<EntryType>> { in LLVM_YAML_IS_SEQUENCE_VECTOR()
362 static void mapping(IO &IO, DWARFYAML::ListEntries<EntryType> &ListEntries); in LLVM_YAML_IS_SEQUENCE_VECTOR()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/ObjectYAML/
H A DDWARFYAML.cpp299 template <typename EntryType>
300 void MappingTraits<DWARFYAML::ListEntries<EntryType>>::mapping( in mapping()
301 IO &IO, DWARFYAML::ListEntries<EntryType> &ListEntries) { in mapping()
306 template <typename EntryType>
307 std::string MappingTraits<DWARFYAML::ListEntries<EntryType>>::validate( in validate()
308 IO &IO, DWARFYAML::ListEntries<EntryType> &ListEntries) { in validate()
314 template <typename EntryType>
315 void MappingTraits<DWARFYAML::ListTable<EntryType>>::mapping( in mapping()
316 IO &IO, DWARFYAML::ListTable<EntryType> &ListTable) { in mapping()
H A DDWARFEmitter.cpp910 template <typename EntryType>
912 ArrayRef<DWARFYAML::ListTable<EntryType>> Tables, in writeDWARFLists()
914 for (const DWARFYAML::ListTable<EntryType> &Table : Tables) { in writeDWARFLists()
937 for (const DWARFYAML::ListEntries<EntryType> &List : Table.Lists) { in writeDWARFLists()
943 for (const EntryType &Entry : *List.Entries) { in writeDWARFLists()
/openbsd-src/gnu/llvm/lldb/source/Symbol/
H A DDebugMacros.cpp15 DebugMacroEntry::DebugMacroEntry(EntryType type, uint32_t line, in DebugMacroEntry()
20 DebugMacroEntry::DebugMacroEntry(EntryType type, in DebugMacroEntry()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DDeclTemplate.h781 template <typename EntryType> struct SpecEntryTraits {
782 using DeclType = EntryType;
784 static DeclType *getDecl(EntryType *D) { in getDecl()
788 static ArrayRef<TemplateArgument> getTemplateArgs(EntryType *D) { in getTemplateArgs()
793 template <typename EntryType, typename SETraits = SpecEntryTraits<EntryType>,
797 SpecIterator<EntryType, SETraits, DeclType>,
798 typename llvm::FoldingSetVector<EntryType>::iterator,
800 EntryType>::iterator>::iterator_category,
804 typename llvm::FoldingSetVector<EntryType>::iterator SetIter) in SpecIterator()
814 template <typename EntryType>
[all …]
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DDeclTemplate.cpp314 template<class EntryType, typename... ProfileArguments>
315 typename RedeclarableTemplateDecl::SpecEntryTraits<EntryType>::DeclType *
317 llvm::FoldingSetVector<EntryType> &Specs, void *&InsertPos, in findSpecializationImpl()
319 using SETraits = SpecEntryTraits<EntryType>; in findSpecializationImpl()
322 EntryType::Profile(ID, std::forward<ProfileArguments>(ProfileArgs)..., in findSpecializationImpl()
324 EntryType *Entry = Specs.FindNodeOrInsertPos(ID, InsertPos); in findSpecializationImpl()
328 template<class Derived, class EntryType>
330 llvm::FoldingSetVector<EntryType> &Specializations, EntryType *Entry, in addSpecializationImpl()
332 using SETraits = SpecEntryTraits<EntryType>; in addSpecializationImpl()
345 EntryType *Existing = Specializations.GetOrInsertNode(Entry); in addSpecializationImpl()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/POSIX/
H A DNativeProcessELF.h26 std::optional<uint64_t> GetAuxValue(enum AuxVector::EntryType type);
H A DNativeProcessELF.cpp17 NativeProcessELF::GetAuxValue(enum AuxVector::EntryType type) { in GetAuxValue()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/
H A DDebugLocEntry.h43 enum EntryType { enum
50 enum EntryType EntryKind;
/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFListTable.h38 using EntryType = ListEntryType; variable
39 using ListEntries = std::vector<EntryType>;
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTWriterDecl.cpp197 template <typename EntryType>
198 typename RedeclarableTemplateDecl::SpecEntryTraits<EntryType>::DeclType *
199 getSpecializationDecl(EntryType &T) { in getSpecializationDecl()
200 return RedeclarableTemplateDecl::SpecEntryTraits<EntryType>::getDecl(&T); in getSpecializationDecl()
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp784 using EntryType = DWARFUnitIndex::Entry::SectionContribution; in fixupIndex() typedef
785 using EntryMap = DenseMap<uint32_t, EntryType>; in fixupIndex()