Searched refs:head (Results 1 - 9 of 9) sorted by relevance
/inkscape/src/util/ |
H A D | reverse-list.h | 25 typename Traits::ListCopy<InputIterator>::ResultList head; local 27 head = cons(*start, head); 30 return head;
|
H A D | filter-list.h | 26 ResultList head; local 32 head = tail = ResultList(*start); 42 return head;
|
H A D | map-list.h | 27 MutableList<T> head(f(*start)); 28 MutableList<T> tail(head); 34 return head;
|
/inkscape/cxxtest/cxxtest/ |
H A D | LinkedList.h | 18 Link *head(); 19 const Link *head() const;
|
H A D | GlobalFixture.cpp | 16 GlobalFixture *GlobalFixture::firstGlobalFixture() { return (GlobalFixture *)_list.head(); }
|
H A D | LinkedList.cpp | 16 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 D | RealDescriptions.cpp | 127 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 D | PathCutting.cpp | 33 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 D | Path.h | 179 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