Home | History | Annotate | Download | only in pcre

Lines Matching refs:iter

47   TestMap::const_iterator iter = map.begin();
48 CHECK(iter->second == 1);
49 ++iter;
50 CHECK(iter->second == 2);
51 ++iter;
52 CHECK(iter->second == 0);
53 ++iter;
54 CHECK(iter == map.end());
65 iter = map.begin();
66 CHECK(iter->second == 2);
67 ++iter;
68 CHECK(iter->second == 0);
69 ++iter;
70 CHECK(iter == map.end());