Lines Matching refs:it
150 for (map<string, string>::const_iterator it = variables.begin(); in replace_variables() local
151 it != variables.end(); ++it) { in replace_variables()
153 while((pos = result.find(it->first, pos)) != string::npos) { in replace_variables()
154 result = result.replace(pos, it->first.length(), it->second); in replace_variables()
155 pos += it->second.length(); in replace_variables()
164 for (map<string, string>::const_iterator it = variables.begin(); in replace_variables() local
165 it != variables.end(); ++it) { in replace_variables()
167 it->first.c_str(), it->second.c_str()); in replace_variables()
272 for (vector<string>::iterator it = words.begin(); it != words.end(); ++it) { in read_list_file() local
273 const string& word = *it; in read_list_file()
343 for (vector<string>::const_iterator it=search.begin(); in locate() local
344 it!=search.end(); it++) { in locate()
345 string full = path_append(*it, rec->sourceName); in locate()
349 rec->sourceBase = *it; in locate()
414 for (vector<string>::const_iterator it=excludes.begin(); in matches_excludes() local
415 it!=excludes.end(); it++) { in matches_excludes()
416 if (0 == fnmatch(it->c_str(), file, FNM_PERIOD)) { in matches_excludes()
465 for (vector<string>::iterator it=dirs.begin(); it!=dirs.end(); it++) { in list_dir() local
466 list_dir(*it, rec, excludes, more); in list_dir()