Searched defs:before (Results 1 - 9 of 9) sorted by relevance

/inkscape/src/util/
H A Dfind-if-before.h2 * Inkscape::Algorithms::find_if_before - finds the position before
28 ForwardIterator before=end; local
30 before = start;
33 return ( start != end ) ? before : end;
H A Dlist-container.h133 MutableList<T> before=_before(position); local
134 set_rest(added, rest(before));
135 set_rest(before, added);
164 MutableList<T> before=_before(i); local
166 set_rest(before, static_cast<MutableList<T> &>(j));
168 set_rest(before, MutableList<T>());
169 _tail = before;
177 MutableList<T> before; local
180 before = iter;
193 if (before) {
246 MutableList<T> before=static_cast<MutableList<T> &>(pos); local
271 MutableList<T> before=static_cast<MutableList<T> &>(position); local
304 MutableList<T> before=_before(pos); local
327 MutableList<T> before=static_cast<MutableList<T> &>(pos); local
[all...]
/inkscape/src/livarot/
H A DAlphaLigne.h32 // the value of the pixel "just before the visible portion of the line"
36 // before is the step containing the delta relative to a pixel infinitely far on the left of the line
37 // thus the initial pixel coverage is before.delta
38 alpha_step before,after; member in class:AlphaLigne
60 // sorts the steps in increasing order. needed before you raster the line
H A DPathOutline.cpp1077 Path::TangentOnCubAt (double at, Geom::Point const &iS, PathDescrCubicTo const &fin, bool before, argument
1111 if (before) {
1118 if (before) {
1133 PathDescrBezierTo & fin, bool before, Geom::Point & pos,
1158 if (before) {
1131 TangentOnBezAt(double at, Geom::Point const &iS, PathDescrIntermBezierTo & mid, PathDescrBezierTo & fin, bool before, Geom::Point & pos, Geom::Point & tgt, double &len, double &rad) argument
/inkscape/src/ui/tool/
H A Dnode.h408 iterator before(double t, double *fracpart = NULL);
409 iterator before(Geom::PathTime const &pvp);
410 const_iterator before(double t, double *fracpart = NULL) const { function in class:Inkscape::UI::NodeList
411 return const_iterator(before(t, fracpart)._node);
413 const_iterator before(Geom::PathTime const &pvp) const { function in class:Inkscape::UI::NodeList
414 return const_iterator(before(pvp)._node);
419 /** insert a node before pos. */
H A Dnode.cpp1537 NodeList::iterator NodeList::before(double t, double *fracpart) function in class:Inkscape::UI::NodeList
1548 NodeList::iterator NodeList::before(Geom::PathTime const &pvp) function in class:Inkscape::UI::NodeList
/inkscape/src/ui/dialog/
H A Dxml-tree.cpp640 // skip to the child just before the current repr
1063 Inkscape::XML::Node *before = parent->firstChild(); local
1064 while (before && (before->next() != selected_repr)) {
1065 ref = before;
1066 before = before->next();
H A Dfilter-effects-dialog.cpp2515 // Ensure that the target comes before the selected primitive
2622 bool before = true; local
2627 before = false;
2630 if(before)
/inkscape/src/widgets/
H A Dsp-xmlview-tree.cpp34 static GtkTreeRowReference * add_node (SPXMLViewTree * tree, GtkTreeIter * parent, GtkTreeIter * before, Inkscape::XML::Node * repr);
173 add_node (SPXMLViewTree * tree, GtkTreeIter *parent, GtkTreeIter *before, Inkscape::XML::Node * repr) argument
182 if (before && !gtk_tree_store_iter_is_valid(tree->store, before)) {
183 before = NULL;
187 gtk_tree_store_insert_before (tree->store, &iter, parent, before);
236 GtkTreeIter before; local
240 if (!ref_to_sibling (data, ref, &before)) {
246 add_node (data->tree, &data_iter, &before, child);
292 GtkTreeIter before, nod local
[all...]

Completed in 68 milliseconds