Searched refs:end (Results 1 - 25 of 422) sorted by relevance

1234567891011>>

/inkscape/src/util/
H A Dfind-if-before.h25 ForwardIterator end,
28 ForwardIterator before=end;
29 while ( start != end && !pred(*start) ) {
33 return ( start != end ) ? before : end;
24 find_if_before(ForwardIterator start, ForwardIterator end, UnaryPredicate pred) argument
H A Dfind-last-if.h22 inline ForwardIterator find_last_if(ForwardIterator start, ForwardIterator end, argument
25 ForwardIterator last_found(end);
26 while ( start != end ) {
27 start = std::find_if(start, end, pred);
28 if ( start != end ) {
H A Dlongest-common-suffix.h35 ForwardIterator end)
38 return longest_common_suffix(a, b, end, std::equal_to<value_type>());
43 ForwardIterator end, BinaryPredicate pred)
45 if ( a == end || b == end ) {
46 return end;
72 for ( ForwardIterator iter(lists[i]) ; iter != end ; ++iter ) {
86 ForwardIterator longest_common(end);
34 longest_common_suffix(ForwardIterator a, ForwardIterator b, ForwardIterator end) argument
42 longest_common_suffix(ForwardIterator a, ForwardIterator b, ForwardIterator end, BinaryPredicate pred) argument
H A Dreverse-list.h24 reverse_list(InputIterator start, InputIterator end) { argument
26 while ( start != end ) {
42 MutableList<T> end=MutableList<T>())
44 MutableList<T> reversed(end);
45 while ( start != end ) {
41 reverse_list_in_place(MutableList<T> start, MutableList<T> end=MutableList<T>()) argument
H A Dfilter-list.h24 filter_list(UnaryPredicate p, InputIterator start, InputIterator end) { argument
28 while ( start != end && !p(*start) ) {
31 if ( start != end ) {
35 while ( start != end ) {
H A Dmap-list.h24 map_list(UnaryFunction f, InputIterator start, InputIterator end) argument
26 if ( start != end ) {
29 while ( ++start != end ) {
48 List<T> end=List<T>())
50 std::transform(start, end, start, f);
47 map_list_in_place(UnaryFunction f, List<T> start, List<T> end=List<T>()) argument
H A Dege-tags.cpp111 for ( std::vector<Tag>::iterator it = tags.begin(); (it != tags.end()) && !present; ++it ) {
115 for ( std::vector<Label>::const_iterator it2 = tag.labels.begin(); it2 != tag.labels.end(); ++it2 ) {
116 std::vector<Label>::iterator itOld = std::find_if( it->labels.begin(), it->labels.end(), std::bind2nd(sameLang(), *it2) );
117 if (itOld != it->labels.end()) {
143 if ( counts.find(key) != counts.end() ) {
151 if ( counts.find(key) != counts.end() ) {
162 if ( counts.find(key) != counts.end() ) {
/inkscape/src/
H A Dknot-ptr.cpp9 if (std::find(deleted_knots.begin(), deleted_knots.end(), knot) == deleted_knots.end()) {
15 std::list<void*>::iterator it = std::find(deleted_knots.begin(), deleted_knots.end(), knot);
16 if (it != deleted_knots.end()) {
22 if (std::find(deleted_knots.begin(), deleted_knots.end(), knot) != deleted_knots.end()) {
H A Dhelper-fns.h36 char *end; local
37 double ret = g_ascii_strtod(value, &end);
38 if (*end) {
75 char *end; local
76 double ret = g_ascii_strtod(beg, &end);
77 if (end==beg){
86 beg = end;
H A Dprofile-manager.cpp38 for (std::set<SPObject *>::const_iterator i = current.begin(); i != current.end(); ++i)
41 sort( newList.begin(), newList.end() );
44 std::set_difference( _knownProfiles.begin(), _knownProfiles.end(), newList.begin(), newList.end(),
48 std::set_difference( newList.begin(), newList.end(), _knownProfiles.begin(), _knownProfiles.end(),
52 for ( std::vector<SPObject*>::iterator it = diff1.begin(); it < diff1.end(); ++it ) {
54 _knownProfiles.erase( remove(_knownProfiles.begin(), _knownProfiles.end(), tmp), _knownProfiles.end() );
62 for ( std::vector<SPObject*>::iterator it = diff2.begin(); it < diff2.end();
[all...]
H A Dsp-item-update-cns.cpp22 fiEnd(found_cns.end());
27 item.constraints.end(),
29 == item.constraints.end() )
H A Dcomposite-undo-stack-observer.cpp47 for(UndoObserverRecordList::iterator i = this->_active.begin(); i != _active.end(); ++i) {
60 for(UndoObserverRecordList::iterator i = this->_active.begin(); i != _active.end(); ++i) {
72 for(UndoObserverRecordList::iterator i = this->_active.begin(); i != _active.end(); ++i) {
84 for(UndoObserverRecordList::iterator i = this->_active.begin(); i != _active.end(); ++i) {
96 for(UndoObserverRecordList::iterator i = this->_active.begin(); i != _active.end(); ++i) {
109 UndoObserverRecordList::iterator i = std::find_if(list.begin(), list.end(), std::bind1st(std::equal_to< UndoStackObserverRecord >(), eq_comp));
111 if (i != list.end()) {
124 UndoObserverRecordList::iterator i = std::find_if(list.begin(), list.end(), std::bind1st(std::equal_to< UndoStackObserverRecord >(), eq_comp));
126 if (i != list.end()) {
160 this->_active.insert(this->_active.end(), thi
[all...]
H A Dprefix.cpp107 unsigned long start, end; local
114 sscanf (line, "%lx-%lx ", &start, &end);
115 if (symbol >= (void *) start && symbol < (void *) end)
349 const char *end; local
354 end = strrchr (path, '/');
355 if (!end) return strdup (".");
357 while (end > path && *end == '/')
358 end--;
359 result = br_strndup ((char *) path, end
385 const char *end; local
[all...]
H A Dunicoderange.h9 char* end; member in struct:Urange
H A Dobject-test.h28 clock_t begin, end; local
82 end = clock();
91 std::cout << "Took " << double(end - begin) / double(CLOCKS_PER_SEC) << " seconds to construct the test document\n";
126 clock_t begin, end; local
154 end = clock();
156 std::cout << "Took " << double(end - begin) / double(CLOCKS_PER_SEC) << " seconds to write " << num_clones << " clones of a path\n";
163 end = clock();
165 std::cout << "Took " << double(end - begin) / double(CLOCKS_PER_SEC) << " seconds to remove " << num_clones << " clones of a path\n";
170 clock_t begin, end; local
199 end
[all...]
H A Dtext-editing.h47 std::vector<Geom::Point> sp_te_create_selection_quads(SPItem const *item, Inkscape::Text::Layout::iterator const &start, Inkscape::Text::Layout::iterator const &end, Geom::Affine const &transform);
57 Inkscape::Text::Layout::iterator sp_te_replace(SPItem *item, Inkscape::Text::Layout::iterator const &start, Inkscape::Text::Layout::iterator const &end, char const *utf8);
59 bool sp_te_delete (SPItem *item, Inkscape::Text::Layout::iterator const &start, Inkscape::Text::Layout::iterator const &end, iterator_pair &iter_pair);
62 Glib::ustring sp_te_get_string_multiline(SPItem const *text, Inkscape::Text::Layout::iterator const &start, Inkscape::Text::Layout::iterator const &end);
68 void sp_te_adjust_kerning_screen(SPItem *text, Inkscape::Text::Layout::iterator const &start, Inkscape::Text::Layout::iterator const &end, SPDesktop *desktop, Geom::Point by);
69 void sp_te_adjust_dx (SPItem *item, Inkscape::Text::Layout::iterator const &start, Inkscape::Text::Layout::iterator const &end, SPDesktop *desktop, double delta);
70 void sp_te_adjust_dy (SPItem *item, Inkscape::Text::Layout::iterator const &start, Inkscape::Text::Layout::iterator const &end, SPDesktop *desktop, double delta);
72 void sp_te_adjust_rotation_screen(SPItem *text, Inkscape::Text::Layout::iterator const &start, Inkscape::Text::Layout::iterator const &end, SPDesktop *desktop, double pixels);
73 void sp_te_adjust_rotation(SPItem *text, Inkscape::Text::Layout::iterator const &start, Inkscape::Text::Layout::iterator const &end, SPDesktop *desktop, double degrees);
74 void sp_te_set_rotation(SPItem *text, Inkscape::Text::Layout::iterator const &start, Inkscape::Text::Layout::iterator const &end, SPDeskto
[all...]
H A Dunicoderange.cpp51 r.end = (gchar*) malloc((i+1)*sizeof(gchar));
52 strncpy(r.end, val, i);
53 r.end[i] = '\0';
57 r.end=NULL;
84 if (r.end){
85 if (unival >= hex2int(r.start) && unival <= hex2int(r.end)) return true;
112 if (this->range[i].end) result += "-" + Glib::ustring(this->range[i].end);
/inkscape/src/libdepixelize/priv/
H A Dintegral.h37 Geom::Coord integral(F f, T begin, T end, unsigned samples) argument
40 const T width = (end - begin) / samples;
H A Dsplines-kopf2011.h56 for ( iterator end = source.end() ; it != end ; ++it ) {
73 Point<T> next = (it + 1 == end) ? source.front() : *(it + 1);
104 it = source.holes.begin(), end = source.holes.end()
105 ; it != end ; ++it ) {
118 it = diagram.begin() , end = diagram.end() ; it != end ;
[all...]
/inkscape/src/libdepixelize/
H A Dsplines.h81 iterator end() function in class:Tracer::Splines
83 return _paths.end();
86 const_iterator end() const function in class:Tracer::Splines
88 return _paths.end();
/inkscape/share/extensions/
H A Dinterp.py59 def tweenstylefloat(property, start, end, time):
61 ep = float(end[property])
63 def tweenstylecolor(property, start, end, time):
65 er,eg,eb = parsecolor(end[property])
111 def tweenstyleunit(self, property, start, end, time): # moved here so we can call 'unittouu'
113 ep = self.unittouu(end[property])
150 end = copy.deepcopy(paths[sorted_ids[i]])
193 elengths, etotal = csplength(end)
232 if not end[0]:
233 e.append(end
[all...]
/inkscape/src/display/
H A Ddrawing-group.cpp78 for (ChildrenList::iterator i = _children.begin(); i != _children.end(); ++i) {
83 for (ChildrenList::iterator i = _children.begin(); i != _children.end(); ++i) {
97 for (ChildrenList::iterator i = _children.begin(); i != _children.end(); ++i) {
102 for (ChildrenList::iterator i = _children.begin(); i != _children.end(); ++i) {
120 for (ChildrenList::iterator i = _children.begin(); i != _children.end(); ++i) {
128 for (ChildrenList::iterator i = _children.begin(); i != _children.end(); ++i) {
148 } // end namespace Inkscape
H A Dcanvas-temporary-item-list.cpp28 for ( std::list<TemporaryItem*>::iterator it = itemlist.begin(); it != itemlist.end(); ++it ) {
51 for ( std::list<TemporaryItem*>::iterator it = itemlist.begin(); it != itemlist.end(); ++it ) {
/inkscape/src/libvpsc/
H A Dsolve_VPSC.cpp34 for(ConstraintList::iterator i=inactive.begin();i!=inactive.end();++i) {
53 for(set<Block*>::iterator i=bs->begin();i!=bs->end();++i) {
65 for(list<Variable*>::iterator i=vs->begin();i!=vs->end();++i) {
93 for(set<Block*>::const_iterator i=bs->begin();i!=bs->end();++i) {
98 for(set<Block*>::const_iterator i=bs->begin();i!=bs->end();++i) {
200 for(set<Block*>::const_iterator i(bs->begin());i!=bs->end();++i) {
216 for(set<Block*>::const_iterator i(bs->begin());i!=bs->end();++i) {
254 ConstraintList::iterator end = l.end(); local
255 ConstraintList::iterator deletePoint = end;
[all...]
/inkscape/src/ui/widget/
H A Dcolor-entry.cpp64 gchar *end = 0; local
65 guint64 rgba = g_ascii_strtoull(str, &end, 16);
66 if (end != str) {
67 ptrdiff_t len = end - str;

Completed in 518 milliseconds

1234567891011>>