Searched refs:head (Results 1 - 9 of 9) sorted by relevance

/inkscape/src/util/
H A Dreverse-list.h25 typename Traits::ListCopy<InputIterator>::ResultList head; local
27 head = cons(*start, head);
30 return head;
H A Dfilter-list.h26 ResultList head; local
32 head = tail = ResultList(*start);
42 return head;
H A Dmap-list.h27 MutableList<T> head(f(*start));
28 MutableList<T> tail(head);
34 return head;
/inkscape/cxxtest/cxxtest/
H A DLinkedList.h18 Link *head();
19 const Link *head() const;
H A DGlobalFixture.cpp16 GlobalFixture *GlobalFixture::firstGlobalFixture() { return (GlobalFixture *)_list.head(); }
H A DLinkedList.cpp16 Link *List::head() function in class:CxxTest::List
24 const Link *List::head() const function in class:CxxTest::List
56 for ( const Link *l = head(); l != 0; l = l->next() )
63 Link *l = head();
77 for ( Link *l = head(); l != 0; l = l->next() )
H A DRealDescriptions.cpp127 TestDescription *RealSuiteDescription::firstTest() { return (RealTestDescription *)_tests->head(); }
128 const TestDescription *RealSuiteDescription::firstTest() const { return (const RealTestDescription *)_tests->head(); }
228 return (RealSuiteDescription *)suites().head();
233 return (const RealSuiteDescription *)suites().head();
/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
139 if ( curLength <= head && curLength+nl > head ) {
140 nl-=head-curLength;
141 curLength=head;
173 if ( curLength >= head /*
[all...]
H A DPath.h179 void DashPolyline(float head,float tail,float body,int nbD,float *dashs,bool stPlain,float stOffset);
238 // creation of dashes: take the polyline given by spP (length spL) and dash it according to head, body, etc. put the result in
240 void 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);

Completed in 44 milliseconds