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

/inkscape/src/
H A Dextract-uri.cpp70 gchar const* tail = se + 1; local
71 while ( ( *tail == ' ' ) ||
72 ( *tail == '\t' ) )
74 tail++;
76 if ( *tail == ')' ) {
78 *endptr = tail + 1;
/inkscape/src/util/
H A Dfilter-list.h27 ResultList tail; local
32 head = tail = ResultList(*start);
37 set_rest(tail, ResultList(*start));
38 ++tail;
/inkscape/cxxtest/cxxtest/
H A DLinkedList.cpp32 Link *List::tail() function in class:CxxTest::List
40 const Link *List::tail() const function in class:CxxTest::List
/inkscape/src/libcroco/
H A Dcr-prop-list.c382 CRPropList *tail = NULL, local
387 for (tail = a_this;
388 tail && PRIVATE (tail) && PRIVATE (tail)->next;
389 tail = cr_prop_list_get_next (tail)) ;
390 g_return_if_fail (tail);
392 cur = tail;
395 tail
[all...]
H A Dcr-sel-eng.c464 CRAdditionalSel *cur_add_sel = NULL, *tail = NULL ; local
467 for (tail = a_add_sel ;
468 tail && tail->next;
469 tail = tail->next) ;
471 g_return_val_if_fail (tail, FALSE) ;
473 for (cur_add_sel = tail ;
/inkscape/src/2geom/
H A Dd2-sbasis.cpp61 double tail_error(D2<SBasis> const & a, unsigned tail) { argument
62 return std::max(a[0].tailError(tail), a[1].tailError(tail));
/inkscape/src/svg/
H A Dpath-string.h46 std::string const &t = tail();
49 final += tail();
59 return commonbase + tail();
240 std::string const &tail() const { function in class:Inkscape::SVG::PathString::std
/inkscape/src/livarot/
H A DPathCutting.cpp33 void Path::DashPolyline(float head,float tail,float body,int nbD,float *dashs,bool stPlain,float stOffset) argument
47 DashSubPath(i-lastMI,lastMP, orig_pts, head,tail,body,nbD,dashs,stPlain,stOffset);
55 DashSubPath(orig_pts.size() - lastMI, lastMP, orig_pts, head, tail, body, nbD, dashs, stPlain, stOffset);
96 void Path::DashSubPath(int spL, int spP, std::vector<path_lineto> const &orig_pts, float head,float tail,float body,int nbD,float *dashs,bool stPlain,float stOffset) argument
113 if ( totLength <= head+tail ) return; // tout mange par la tete et la queue
173 if ( curLength >= head /*&& curLength+nl <= totLength-tail*/ ) {
174 while ( curLength <= totLength-tail && nl > 0 ) {
175 if ( enLength <= totLength-tail ) nl=enLength-curLength; else nl=totLength-tail-curLength;
240 if ( curLength <= totLength-tail
[all...]
/inkscape/src/libuemf/
H A Dupmf.c443 int tail; local
449 tail = oa->used;
459 memcpy(oa->accum + tail,data,size);

Completed in 74 milliseconds