Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/unittests/Utility/
H A DRangeMapTest.cpp146 Map.Append(EntryT(0, 10, 50)); in TEST()
147 Map.Append(EntryT(0, 10, 52)); in TEST()
148 Map.Append(EntryT(0, 10, 53)); in TEST()
149 Map.Append(EntryT(0, 10, 51)); in TEST()
172 MapC.Append(EntryT(0, 10, 50)); in TEST()
173 MapC.Append(EntryT(0, 10, 52)); in TEST()
174 MapC.Append(EntryT(0, 10, 53)); in TEST()
175 MapC.Append(EntryT(0, 10, 51)); in TEST()
187 Map.Append(EntryT(0, 10, 10)); in TEST()
188 Map.Append(EntryT(10, 10, 11)); in TEST()
[all …]
/llvm-project-15.0.7/llvm/include/llvm/ObjectYAML/
H A DMinidumpYAML.h61 template <typename EntryT> struct ListStream : public Stream {
62 using entry_type = EntryT;
67 : Stream(EntryT::Kind, EntryT::Type), Entries(std::move(Entries)) {} in Stream()
69 static bool classof(const Stream *S) { return S->Kind == EntryT::Kind; } in classof()
/llvm-project-15.0.7/lldb/unittests/Core/
H A DUniqueCStringMapTest.cpp34 using EntryT = MapT::Entry; in TEST() typedef
43 testing::Pointee(testing::Field(&EntryT::value, NoDefault(42)))); in TEST()
/llvm-project-15.0.7/llvm/lib/ObjectYAML/
H A DMinidumpEmitter.cpp154 template <typename EntryT>
156 MinidumpYAML::detail::ListStream<EntryT> &S) { in layout()