Home
last modified time | relevance | path

Searched refs:EntryT (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DMinidumpYAML.h62 template <typename EntryT> struct ListStream : public Stream {
63 using entry_type = EntryT;
68 : Stream(EntryT::Kind, EntryT::Type), Entries(std::move(Entries)) {} in Stream()
70 static bool classof(const Stream *S) { return S->Kind == EntryT::Kind; } in classof()
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/
H A DTextStubV5.cpp90 using EntryT = std::pair<std::string, TargetList>; typedef in __anon8456efec0111::InOrderAttrToTargets
93 void insert(EntryT &&Entry) { in insert()
98 const EntryT *begin() { return Container.begin(); } in begin()
99 const EntryT *end() { return Container.end(); } in end()
102 EntryT &get(std::string &Key) { in get()
104 [&Key](EntryT &Input) { return Input.first == Key; }); in get()
107 Container.push_back(EntryT(Key, {})); in get()
110 llvm::SmallVector<EntryT> Container;
807 template <typename ValueT, typename EntryT = ValueT>
812 Object ScalarObj({Object::KV({Keys[Key], EntryT(Value)})}); in serializeScalar()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DMinidumpEmitter.cpp179 template <typename EntryT>
181 MinidumpYAML::detail::ListStream<EntryT> &S) { in layout()