Searched defs:replace (Results 1 - 2 of 2) sorted by relevance
/inkscape/src/ui/dialog/ |
H A D | find.cpp | 294 Glib::ustring Find::find_replace(const gchar *str, const gchar *find, const gchar *replace, bool exact, bool casematch, bool replaceall) argument 303 ustr.replace(n, ufind.length(), replace); 307 // Start the next search after the last replace character to avoid infinite loops (replace "a" with "aaa" etc) 308 n = find_strcmp_pos(ustr.c_str(), ufind.c_str(), exact, casematch, n + strlen(replace) + 1); 341 bool Find::item_text_match (SPItem *item, const gchar *find, bool exact, bool casematch, bool replace/*=false*/) 354 if (found && replace) { 386 bool Find::item_id_match (SPItem *item, const gchar *id, bool exact, bool casematch, bool replace/*=false*/) 403 if (found && replace) { [all...] |
/inkscape/src/2geom/ |
H A D | path.h | 704 replace(end_open(), other.begin(), other.end()); 707 void replace(iterator replaced, Curve const &curve); 708 void replace(iterator first, iterator last, Curve const &curve); 709 void replace(iterator replaced, Path const &path); 710 void replace(iterator first, iterator last, Path const &path); 713 void replace(iterator replaced, Iter first, Iter last) { function in class:Geom::Path 714 replace(replaced, replaced + 1, first, last); 718 void replace(iterator first_replaced, iterator last_replaced, Iter first, Iter last) { function in class:Geom::Path
|
Completed in 30 milliseconds