Lines Matching defs:it

19 // That's how it should be, but we need to work around compiler bugs
360 ReferenceIterator it = fReferenceMap.find(key);
361 if (it != fReferenceMap.end())
362 fReferenceMap.erase(it);
761 Iterator it = v.IteratorForIndex(i);
762 Key key = it->Key();
763 const Value &value = it->Value();
943 Iterator it = v.Find(key);
945 CHK(it->Key() == key);
946 CHK(it->Key() == cit->Key());
947 CHK((*it).Key() == (*it).Key());
948 CHK(&it->Value() == &cit->Value());
949 CHK(&(*it).Value() == &(*it).Value());
954 Iterator it = v.Find(key);
956 if (it != v.End()) {
957 CHK(it->Key() == key);
958 CHK(it->Key() == cit->Key());
959 CHK((*it).Key() == (*it).Key());
960 CHK(&it->Value() == &cit->Value());
961 CHK(&(*it).Value() == &(*it).Value());
1006 Iterator it = v.FindClose(key, true);
1008 CHK(it->Key() == key);
1009 CHK(it->Key() == cit->Key());
1010 CHK((*it).Key() == (*it).Key());
1011 CHK(&it->Value() == &cit->Value());
1012 CHK(&(*it).Value() == &(*it).Value());
1014 it = v.FindClose(key, false);
1016 CHK(it->Key() == key);
1017 CHK(it->Key() == cit->Key());
1018 CHK((*it).Key() == (*it).Key());
1019 CHK(&it->Value() == &cit->Value());
1020 CHK(&(*it).Value() == &(*it).Value());
1026 Iterator it = v.FindClose(key, true);
1028 if (it != v.End()) {
1029 CHK(it->Key() == cit->Key());
1030 CHK((*it).Key() == (*it).Key());
1031 CHK(&it->Value() == &cit->Value());
1032 CHK(&(*it).Value() == &(*it).Value());
1035 it = v.FindClose(key, false);
1037 if (it != v.End()) {
1038 CHK(it->Key() == cit->Key());
1039 CHK((*it).Key() == (*it).Key());
1040 CHK(&it->Value() == &cit->Value());
1041 CHK(&(*it).Value() == &(*it).Value());
1081 Iterator it = v.Begin();
1083 for (; it != v.End(); ++it, ++cit) {
1084 CHK(it->Key() == cit->Key());
1085 CHK(&it->Value() == &cit->Value());
1086 CHK(it->Key() == (*it).Key());
1088 CHK(&it->Value() == &(*it).Value());
1090 CHK(it->Key() == it.operator->().Key());
1091 CHK(&it->Value() == &it.operator->().Value());
1094 CHK(it);
1098 while (it != v.Begin()) {
1099 --it;
1101 CHK(it->Key() == cit->Key());
1102 CHK(&it->Value() == &cit->Value());
1103 CHK(it->Key() == (*it).Key());
1105 CHK(&it->Value() == &(*it).Value());
1107 CHK(it->Key() == it.operator->().Key());
1108 CHK(&it->Value() == &it.operator->().Value());
1111 CHK(it);