Searched refs:before (Results 1 - 17 of 17) 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/
H A Dfix-roff-punct81 my ($before, $s, $after) = ($1, $2, $3);
82 return frob($before) . $s . frob($after);
/inkscape/src/livarot/
H A DAlphaLigne.cpp24 before.x=min-1;
25 before.delta=0;
52 before.x=min-1;
53 before.delta=0;
80 // total amount of change in pixel coverage from before the right to after the run
86 before.delta+=needC;
97 before.delta+=needC;
113 before.delta+=needC;
144 before.delta+=stC+bfd;
157 before
[all...]
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 DPath.h173 // last control point before the command i (i included)
178 // the result is stored in the polyline, so you lose the original. make a copy before if needed
331 static void TangentOnCubAt (double at, Geom::Point const &iS, PathDescrCubicTo const &fin, bool before,
335 PathDescrBezierTo & fin, bool before,
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/packaging/macosx/Resources/
H A Dalert_fccache.sh9 The first time this version of Inkscape is run it may take several minutes before the main window is displayed while font caches are built." buttons {"OK"} default button 1 with title "Inkscape on OS X" with icon POSIX file icon_path
/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...]
/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
H A Dpath-manipulator.cpp375 // nodes that were selected before this operation without deselecting
393 // select the new end node instead of the node just before it
643 * the shape before deletion
1337 * \param alert_LPE if true, first the LPE is warned what the new path is going to be before updating it
1682 NodeList::iterator first = (*spi)->before(pvp->asPathTime());
/inkscape/share/extensions/
H A Dsvgcalendar.py327 # add a line before the first week (Feb 2009)
331 # How mutch before month days will be showed:
333 before = True
365 if before:
373 before = False
/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/2geom/
H A Dsbasis.h105 void insert(iterator before, const_iterator src_begin, const_iterator src_end) { d.insert(before, src_begin, src_end);}
107 //void insert(Linear* before, int& n, Linear const &l) { d.insert(std::vector<Linear>::iterator(before), n, l);}
H A Dtoposweep.cpp283 2) find all of the to-values before the beginning of this section
515 void add_edge_at(TopoGraph &g, unsigned ix, boost::shared_ptr<Section> s, TopoGraph::Edge jx, bool before = true) {
519 v.enters.insert(v.enters.begin() + (before ? i : i + 1), jx);
525 v.exits.insert(v.exits.begin() + (before ? i : i + 1), jx);
604 //std::vector<std::vector<bool> > before(visited);
628 //} else visited = before;

Completed in 67 milliseconds