Lines Matching defs:it

109     for (std::set<Glib::ustring>::iterator it = _keywords.begin() ; it != _keywords.end() ; ++it){
110 _keywords_combo.append(*it);
157 for (std::map<Glib::ustring, TemplateData>::iterator it = _tdata.begin() ; it != _tdata.end() ; ++it) {
160 row[_columns.textValue] = it->first;
166 for (std::map<Glib::ustring, TemplateData>::iterator it = _tdata.begin() ; it != _tdata.end() ; ++it) {
167 if (it->second.keywords.count(_current_keyword.lowercase()) != 0){
170 row[_columns.textValue] = it->first;
177 for (std::map<Glib::ustring, TemplateData>::iterator it = _tdata.begin() ; it != _tdata.end() ; ++it) {
178 if (it->second.keywords.count(_current_keyword.lowercase()) != 0 ||
179 it->second.display_name.lowercase().find(_current_keyword.lowercase()) != Glib::ustring::npos ||
180 it->second.author.lowercase().find(_current_keyword.lowercase()) != Glib::ustring::npos ||
181 it->second.short_description.lowercase().find(_current_keyword.lowercase()) != Glib::ustring::npos ||
182 it->second.long_description.lowercase().find(_current_keyword.lowercase()) != Glib::ustring::npos )
186 row[_columns.textValue] = it->first;
195 for (Gtk::TreeModel::Children::iterator it = _tlist_store->children().begin(); it != _tlist_store->children().end(); ++it) {
196 Gtk::TreeModel::Row row = *it;
198 item_to_select = new Gtk::TreeIter(it);
288 std::list<Inkscape::Extension::Effect *>::iterator it = effects.begin();
289 while (it != effects.end()){
291 myRoot = (*it)->get_repr();
296 result.display_name = (*it)->get_name();
299 result.tpl_effect = *it;
304 ++it;