/inkscape/src/ |
H A D | unicoderange.h | 9 char* end; member in struct:Urange
|
H A D | helper-fns.h | 36 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 D | sp-ellipse.h | 51 double start, end; member in class:SPGenericEllipse 72 * @brief Makes sure that start and end lie between 0 and 2 * PI.
|
H A D | object-test.h | 28 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...] |
/inkscape/src/util/ |
H A D | find-last-if.h | 22 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 D | find-if-before.h | 25 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 D | longest-common-suffix.h | 35 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 D | map-list.h | 24 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 D | reverse-list.h | 24 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 D | filter-list.h | 24 filter_list(UnaryPredicate p, InputIterator start, InputIterator end) { argument 28 while ( start != end && !p(*start) ) { 31 if ( start != end ) { 35 while ( start != end ) {
|
/inkscape/packaging/wix/ |
H A D | wixenv.bat | 19 :end
label
|
/inkscape/src/libdepixelize/priv/ |
H A D | integral.h | 37 Geom::Coord integral(F f, T begin, T end, unsigned samples) argument 40 const T width = (end - begin) / samples;
|
H A D | optimization-kopf2011.h | 87 typename std::vector< Point<T> >::iterator end) 89 for ( ++it ; it != end ; ++it ) { 93 return end; 102 typename std::vector< Point<T> >::iterator end) 106 if ( end - it < 4 ) 113 if ( it == end ) 117 it = skip1visible<T>(it, end); 123 if ( it == end ) 127 for ( it = skip1visible<T>(it, end) ; it != end 86 skip1visible(typename std::vector< Point<T> >::iterator it, typename std::vector< Point<T> >::iterator end) argument 101 border_detection(typename std::vector< Point<T> >::iterator it, typename std::vector< Point<T> >::iterator end) argument [all...] |
/inkscape/src/libdepixelize/ |
H A D | splines.h | 81 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/src/livarot/ |
H A D | path-description.cpp | 83 << p[Geom::X] - end[0] / 3 << " " 84 << p[Geom::Y] - end[1] / 3 << " " 100 << end[Geom::X] << " " << end[Geom::Y] << " "; local 108 end = end * tr;
|
/inkscape/src/ui/widget/ |
H A D | color-entry.cpp | 64 gchar *end = 0; local 65 guint64 rgba = g_ascii_strtoull(str, &end, 16); 66 if (end != str) { 67 ptrdiff_t len = end - str;
|
/inkscape/src/live_effects/ |
H A D | lpe-transform_2pts.h | 59 PointParam end; member in class:Inkscape::LivePathEffect::LPETransform2Pts
|
/inkscape/src/svg/ |
H A D | svg-color-test.h | 66 gchar const* end = 0; local 67 guint32 result = sp_svg_read_color( val[i], &end, 0x3 ); 69 TS_ASSERT_LESS_THAN( val[i], end );
|
/inkscape/src/2geom/ |
H A D | generic-interval.h | 78 * @param end End of the range 79 * @return Interval that contains all values from [start, end). */ 81 static CInterval from_range(InputIterator start, InputIterator end) { argument 82 assert(start != end); 84 for (; start != end; ++start) result.expandTo(*start); 107 /// Return the closer end of the interval. 280 * @param end End of the range 281 * @return Interval that contains all values from [start, end), or nothing if the range 284 static GenericOptInterval<C> from_range(InputIterator start, InputIterator end) { 285 if (start == end) { [all...] |
/inkscape/src/display/ |
H A D | sp-ctrlline.cpp | 161 void SPCtrlLine::setCoords(Geom::Point const &start, Geom::Point const &end) argument 163 setCoords(start[0], start[1], end[0], end[1]);
|
/inkscape/src/widgets/ |
H A D | sp-xmlview-content.cpp | 142 GtkTextIter start, end; local 145 gtk_text_buffer_get_bounds (tb, &start, &end); 146 data = gtk_text_buffer_get_text (tb, &start, &end, TRUE);
|
/inkscape/src/debug/ |
H A D | logger.cpp | 72 char const *start, char const *end) 74 return !std::strncmp(start, c_string, end - start) && 75 !c_string[end - start]; 92 char const *end; local 93 start = end = filter; 94 while (*end) { 95 while ( *end && *end != ',' ) { end++; } 96 if ( start != end ) { 71 equal_range(char const *c_string, char const *start, char const *end) argument [all...] |
/inkscape/src/extension/internal/ |
H A D | gimpgrad.cpp | 190 gchar *end = NULL; local 191 double const xi = g_ascii_strtod(p, &end); 192 if (!end || end == p || !g_ascii_isspace(*end)) { 199 p = end + 1;
|
/inkscape/src/ui/tool/ |
H A D | control-point-selection.h | 62 iterator end() { return _points.end(); } function in class:Inkscape::UI::ControlPointSelection 63 const_iterator end() const { return _points.end(); } function in class:Inkscape::UI::ControlPointSelection
|
/inkscape/share/extensions/ink2canvas/ |
H A D | svg.py | 138 def end(self): member in class:AbstractShape
|