Searched defs:CustomMapIterator (Results 1 – 1 of 1) sorted by relevance
51 struct CustomMapIterator in TEST() struct57 int mapElement(int X) const { return X + 1; } in TEST()71 struct CustomMapIterator in TEST() struct74 CustomMapIterator(std::vector<int>::iterator it, S *P) : BaseT(it), P(P) {} in TEST() argument77 S &mapElement(int X) const { return *(P + X); } in TEST()79 S *P; in TEST()93 struct CustomMapIterator in TEST() struct96 CustomMapIterator(std::vector<int>::iterator it, std::map<int, int> &M) in TEST() function100 int &mapElement(int X) const { return M[X]; } in TEST()102 std::map<int, int> &M; in TEST()