Lines Matching defs:it
96 * as the marker is removed from the tree, even if it is still referenced
106 std::map<unsigned int, SPMarkerView>::iterator it;
107 for (it = views_map.begin(); it != views_map.end(); ++it) {
108 SPGroup::hide( it->first );
219 std::map<unsigned int, SPMarkerView>::iterator it;
220 for (it = views_map.begin(); it != views_map.end(); ++it) {
221 for (unsigned i = 0 ; i < it->second.items.size() ; ++i) {
222 if (it->second.items[i]) {
223 Inkscape::DrawingGroup *g = dynamic_cast<Inkscape::DrawingGroup *>(it->second.items[i]);
282 //XML Tree being used directly here while it shouldn't be....
284 //XML Tree being used directly here while it shouldn't be....
321 * it with the marker's list of views for future updates.
332 std::map<unsigned int, SPMarkerView>::iterator it = marker->views_map.find(key);
333 if (it != marker->views_map.end()) {
334 if (it->second.items.size() != size ) {
337 it->second.items.clear();
339 it->second.items.push_back(NULL);
366 std::map<unsigned int, SPMarkerView>::iterator it = marker->views_map.find(key);
367 if (it == marker->views_map.end()) {
372 SPMarkerView *view = &(it->second);
484 // Turn off garbage-collectable or it might be collected before we can use it