Home
last modified time | relevance | path

Searched defs:CustomMapIterator (Results 1 – 1 of 1) sorted by relevance

/llvm-project/llvm/unittests/ADT/
H A DMappedIteratorTest.cpp242 struct CustomMapIterator in TEST() struct
248 int mapElement(int X) const { return X + 1; } in TEST()
262 struct CustomMapIterator in TEST() struct
265 CustomMapIterator(std::vector<int>::iterator it, S *P) : BaseT(it), P(P) {} in TEST() argument
268 S &mapElement(int X) const { return *(P + X); } in TEST()
270 S *P; in TEST()
284 struct CustomMapIterator in TEST() struct
287 CustomMapIterator(std::vector<int>::iterator it, std::map<int, int> &M) in TEST() argument
291 int &mapElement(int X) const { return M[X]; } in TEST()
293 std::map<int, int> &M; in TEST()