/inkscape/src/util/ |
H A D | list-container.h | 154 void erase(const_iterator position) { function in class:Inkscape::Util::ListContainer 155 erase(position, rest(position)); 157 void erase(const_iterator i, const_iterator j) { function in class:Inkscape::Util::ListContainer
|
/inkscape/src/2geom/ |
H A D | pathvector.h | 187 iterator erase(iterator i) { function in class:Geom::PathVector 188 return _data.erase(i); 191 iterator erase(iterator first, iterator last) { function in class:Geom::PathVector 192 return _data.erase(first, last);
|
H A D | toposweep.cpp | 20 void TopoGraph::Vertex::erase(unsigned ix) { function in class:Geom::TopoGraph::Vertex 23 enters.erase(enters.begin() + ix); 25 exits.erase(exits.begin() + (ix - enters.size())); 48 v.erase(jx); 51 v.erase(v.find_section(ret.section)); 97 while(are_near(splits.back(), t)) splits.erase(splits.end() - 1); 102 while(!splits.empty() && splits.front() != f) splits.erase(splits.begin()); 103 while(!splits.empty() && splits.back() != t) splits.erase(splits.end() - 1); 305 b.erase(b.end()); 408 context.erase(contex [all...] |
/inkscape/src/ui/tool/ |
H A D | node.h | 432 void pop_front() { erase(begin()); } 434 void pop_back() { erase(--end()); } 436 iterator erase(iterator pos); 437 iterator erase(iterator first, iterator last) { function in class:Inkscape::UI::NodeList 439 while (first != last) ret = erase(first++);
|
H A D | control-point-selection.cpp | 100 void ControlPointSelection::erase(iterator pos) function in class:Inkscape::UI::ControlPointSelection 104 _points.erase(pos); 108 ControlPointSelection::size_type ControlPointSelection::erase(const key_type &k, bool notify) function in class:Inkscape::UI::ControlPointSelection 112 erase(pos); 119 void ControlPointSelection::erase(iterator first, iterator last) function in class:Inkscape::UI::ControlPointSelection 122 while (first != last) erase(first++); 131 erase(i++); 166 erase(*i); 204 else erase(match);
|
H A D | node.cpp | 1130 if (t) _selection.erase(t.ptr()); 1640 to_clear[nodes[i].second]->erase(nodes[i].first, false); 1657 erase (i++); 1660 NodeList::iterator NodeList::erase(iterator i) function in class:Inkscape::UI::NodeList 1679 _list.erase(i);
|
/inkscape/src/extension/internal/filter/ |
H A D | paint.h | 338 "<param name=\"erase\" gui-text=\"" N_("Erase") "\" type=\"float\" indent=\"1\" appearance=\"full\" min=\"0\" max=\"60\">0</param>\n" 379 std::ostringstream erase; local 401 erase << (ext->get_param_float("erase") / 10); 466 "</filter>\n", simply.str().c_str(), clean.str().c_str(), erase.str().c_str(), smooth.str().c_str(), dilat.str().c_str(), erosion.str().c_str(), blur.str().c_str(), bdilat.str().c_str(), berosion.str().c_str(), stroker.str().c_str(), strokeg.str().c_str(), strokeb.str().c_str(), ios.str().c_str(), strokea.str().c_str(), offset.str().c_str(), offset.str().c_str(), fillr.str().c_str(), fillg.str().c_str(), fillb.str().c_str(), iof.str().c_str(), filla.str().c_str(), translucent.str().c_str()); 709 "<param name=\"erase\" gui-text=\"" N_("Erase") "\" type=\"float\" appearance=\"full\" precision=\"2\" min=\"0\" max=\"1\">0</param>\n" 749 std::ostringstream erase; local 771 erase << ext->get_param_float("erase"); 813 lightness.str().c_str(), grain.str().c_str(), erase [all...] |
/inkscape/src/ |
H A D | sp-text.cpp | 489 shape_url.erase(0,5); 490 shape_url.erase(shape_url.size()-1,1); 885 void TextTagAttributes::erase(unsigned start_index, unsigned n) function in class:TextTagAttributes 901 attr_vector->erase(attr_vector->begin() + start_index, attr_vector->end()); 903 attr_vector->erase(attr_vector->begin() + start_index, attr_vector->begin() + start_index + n);
|