Lines Matching defs:iter
204 std::set<std::string>::const_iterator iter =
206 for (; iter != current_case_->skipped_tests().end(); ++iter) {
207 errors_.append(*iter);
217 std::map<std::string, bool>::const_iterator iter =
219 for (; iter != current_case_->remaining_tests().end(); ++iter) {
220 errors_.append(iter->first);
239 TestCaseFactory* iter = TestCaseFactory::head_;
240 while (iter != NULL) {
241 if (case_name == iter->name_)
242 return iter->method_(this);
243 iter = iter->next_;
263 TestCaseFactory* iter = TestCaseFactory::head_;
264 while (iter != NULL) {
265 test_cases.push_back(iter->name_);
266 iter = iter->next_;