Searched refs:rest (Results 1 - 12 of 12) sorted by relevance
/inkscape/src/util/ |
H A D | list.h | 43 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...] |
H A D | list-container.h | 134 set_rest(added, rest(before)); 155 erase(position, rest(position)); 160 if ( !j || !rest(j) ) { 215 _head = rest(_head); 247 set_rest(added, rest(before)); 272 MutableList<T> removed=rest(before); 273 set_rest(before, rest(removed)); 286 if ( rest(iter) == position ) { 328 set_rest(temp._tail, rest(before));
|
/inkscape/src/2geom/ |
H A D | pathvector.cpp | 75 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...] |
H A D | pathvector.h | 225 Path &pathAt(Coord t, Coord *rest = NULL); 226 Path const &pathAt(Coord t, Coord *rest = NULL) const; 227 Curve const &curveAt(Coord t, Coord *rest = NULL) const;
|
H A D | coord.cpp | 1742 uint64_t rest, uint64_t ten_kappa, uint64_t unit) 1747 ASSERT(rest <= unsafe_interval); 1748 while (rest < small_distance && // Negated condition 1 1749 unsafe_interval - rest >= ten_kappa && // Negated condition 2 1750 (rest + ten_kappa < small_distance || // buffer{-1} > w_high 1751 small_distance - rest >= rest + ten_kappa - small_distance)) { 1753 rest += ten_kappa; 1756 if (rest < big_distance && 1757 unsafe_interval - rest > [all...] |
H A D | path.cpp | 345 // lie within the bbox of the rest of the path 362 // the closing path segment can be ignored, because it will always lie within the bbox of the rest of the path 423 Curve const &Path::curveAt(Coord t, Coord *rest) const 426 if (rest) { 427 *rest = pos.t;
|
H A D | path.h | 527 * @param rest Optional storage for the corresponding time value in the curve */ 528 Curve const &curveAt(Coord t, Coord *rest = NULL) const;
|
/inkscape/src/ |
H A D | unclump.cpp | 239 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...] |
/inkscape/po/ |
H A D | check-markup | 236 my ($s1, $s2, $rest) = ($1, $2, $3); 238 while ($rest =~ s/\A${com}*msgstr\[\d+\]\ (${str})\n${com}*//) { 241 $rest eq '' or die "BUG: unparsed plural entries `$rest'";
|
/inkscape/src/ui/widget/ |
H A D | layer-selector.cpp | 330 using Inkscape::Util::rest; 334 List<SPObject &> remainder=rest(hierarchy); 350 using Inkscape::Util::rest; 367 _buildSiblingEntries(depth+1, *layer, rest(hierarchy));
|
/inkscape/src/xml/ |
H A D | simple-node.cpp | 165 using Util::rest; 390 set_rest(ref, rest(existing)); 392 _attributes = rest(existing);
|
H A D | repr-css.cpp | 288 if (rest(iter)) {
|
Completed in 41 milliseconds