Searched defs:rest (Results 1 - 3 of 3) sorted by relevance

/inkscape/src/util/
H A Dlist.h43 List<T> const &rest(List<T> const &list);
46 MutableList<T> &rest(MutableList<T> const &list);
50 MutableList<T> const &rest);
90 friend List const &rest<>(List const &);
110 * cons() is synonymous with List<T>(first, rest), except that the
111 * compiler will usually be able to infer T from the type of \a rest.
145 friend List const &rest<>(List const &);
187 friend List const &rest<>(List const &);
198 * another later by using set_rest() or assignment through rest()
223 friend MutableList &rest<>(MutableLis
250 cons(typename Traits::Reference<T>::RValue first, List<T> const &rest) argument
280 cons(typename Traits::Reference<T>::RValue first, MutableList<T> const &rest) argument
343 inline List<T> const &rest(List<T> const &list) { function in namespace:Inkscape::Util
369 inline MutableList<T> &rest(MutableList<T> const &list) { function in namespace:Inkscape::Util
391 set_rest(MutableList<T> const &list, MutableList<T> const &rest) argument
[all...]
/inkscape/src/2geom/
H A Dpathvector.cpp75 Path &PathVector::pathAt(Coord t, Coord *rest) argument
77 return const_cast<Path &>(static_cast<PathVector const*>(this)->pathAt(t, rest));
79 Path const &PathVector::pathAt(Coord t, Coord *rest) const
82 if (rest) {
83 *rest = Coord(pos.curve_index) + pos.t;
87 Curve const &PathVector::curveAt(Coord t, Coord *rest) const
90 if (rest) {
91 *rest = pos.t;
298 Coord rest = 0; local
299 ret.t = modf(t, &rest);
[all...]
/inkscape/src/
H A Dunclump.cpp239 Removes from the \a rest list those items that are "behind" \a closest as seen from \a item,
244 unclump_remove_behind (SPItem *item, SPItem *closest, std::list<SPItem*> &rest) argument
262 for (std::list<SPItem*>::const_reverse_iterator i = rest.rbegin(); i != rest.rend();++i) {
344 std::list<SPItem*> rest; local
346 rest.push_front(items[items.size() - i - 1]);
348 rest.remove(item);
350 while (!rest.empty()) {
351 SPItem *closest = unclump_closest (item, rest);
354 rest
[all...]

Completed in 1390 milliseconds