Lines Matching defs:Entry
30 struct Entry {
31 Entry() = default;
32 Entry(dw_tag_t t, const char *n) : tag(t), name(n) {}
34 bool NameMatches(const Entry &rhs) const {
55 DWARFDeclContext(llvm::ArrayRef<Entry> entries) {
60 m_entries.push_back(Entry(tag, name));
68 Entry &operator[](uint32_t idx) {
73 const Entry &operator[](uint32_t idx) const {
95 for (const Entry &e : ctx.m_entries) {
103 typedef std::vector<Entry> collection;