/inkscape/src/ |
H A D | unicoderange.h | 8 char* start; member in struct:Urange
|
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 | rubberband.cpp | 47 void Inkscape::Rubberband::start(SPDesktop *d, Geom::Point const &p) function in class:Inkscape::Rubberband
|
/inkscape/src/util/ |
H A D | find-last-if.h | 22 inline ForwardIterator find_last_if(ForwardIterator start, ForwardIterator end, argument 26 while ( start != end ) { 27 start = std::find_if(start, end, pred); 28 if ( start != end ) { 29 last_found = start; 30 ++start;
|
H A D | find-if-before.h | 24 inline ForwardIterator find_if_before(ForwardIterator start, argument 29 while ( start != end && !pred(*start) ) { 30 before = start; 31 ++start; 33 return ( start != end ) ? before : end;
|
H A D | map-list.h | 24 map_list(UnaryFunction f, InputIterator start, InputIterator end) argument 26 if ( start != end ) { 27 MutableList<T> head(f(*start)); 29 while ( ++start != end ) { 30 MutableList<T> cell(f(*start)); 47 map_list_in_place(UnaryFunction f, List<T> start, argument 50 std::transform(start, end, start, f); 51 return start;
|
H A D | reverse-list.h | 24 reverse_list(InputIterator start, InputIterator end) { argument 26 while ( start != end ) { 27 head = cons(*start, head); 28 ++start; 41 reverse_list_in_place(MutableList<T> start, argument 45 while ( start != end ) { 46 MutableList<T> temp(start); 47 ++start;
|
H A D | filter-list.h | 24 filter_list(UnaryPredicate p, InputIterator start, InputIterator end) { argument 28 while ( start != end && !p(*start) ) { 29 ++start; 31 if ( start != end ) { 32 head = tail = ResultList(*start); 33 ++start; 35 while ( start != end ) { 36 if (p(*start)) { 37 set_rest(tail, ResultList(*start)); [all...] |
/inkscape/src/libnrtype/ |
H A D | text-boundary.h | 24 /** Index of the boundary in the text: first char of the text chunk if 'start' boundary, char 29 bool start; ///< Indicates whether this marks the beginning or end of a chunk. member in struct:text_boundary
|
/inkscape/src/ui/ |
H A D | draw-anchor.cpp | 32 SPDrawAnchor *sp_draw_anchor_new(Inkscape::UI::Tools::FreehandBase *dc, SPCurve *curve, bool start, Geom::Point delta) argument 44 a->start = start;
|
H A D | draw-anchor.h | 28 unsigned int start : 1; member in struct:SPDrawAnchor 35 SPDrawAnchor *sp_draw_anchor_new(Inkscape::UI::Tools::FreehandBase *dc, SPCurve *curve, bool start,
|
/inkscape/src/debug/ |
H A D | logger.h | 26 inline static void start() { function in class:Inkscape::Debug::Logger 37 inline static void start(A const &a) { function in class:Inkscape::Debug::Logger 48 inline static void start(A const &a, B const &b) { function in class:Inkscape::Debug::Logger 59 inline static void start(A const &a, B const &b, C const &c) { function in class:Inkscape::Debug::Logger 71 inline static void start(A const &a, B const &b, C const &c, D const &d) { function in class:Inkscape::Debug::Logger 83 inline static void start(A const &a, B const &b, C const &c, function in class:Inkscape::Debug::Logger 97 inline static void start(A const &a, B const &b, C const &c, function in class:Inkscape::Debug::Logger 112 inline static void start(A const &a, B const &b, C const &c, D const &d, function in class:Inkscape::Debug::Logger 127 inline static void start(A const &a, B const &b, C const &c, D const &d, function in class:Inkscape::Debug::Logger 147 start<EventTyp [all...] |
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]; 91 char const *start; local 93 start = end = filter; 96 if ( start != end ) { 116 if (equal_range(iter->name, start, end)) { 122 g_warning("Unknown debugging category %*s", (int)(end - start), start); 71 equal_range(char const *c_string, char const *start, char const *end) argument [all...] |
/inkscape/src/libavoid/ |
H A D | timer.cpp | 58 void Timer::Register(const TimerIndex t, const bool start) argument 71 if (start)
|
/inkscape/src/live_effects/ |
H A D | lpe-transform_2pts.h | 58 PointParam start; member in class:Inkscape::LivePathEffect::LPETransform2Pts
|
/inkscape/src/2geom/ |
H A D | generic-interval.h | 77 * @param start Beginning 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); 83 CInterval result(*start++); 84 for (; start != end; ++start) result.expandTo(*start); 279 * @param start Beginning of the range 281 * @return Interval that contains all values from [start, en [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/livarot/ |
H A D | float-line.h | 39 bool start; ///< is the beginning of the coverage portion? member in struct:float_ligne_bord 40 float val; ///< amount of coverage (ie vst if start==true, and ven if start==false) 45 int pend_ind; ///< bords[i].pend_ind is the index of the float_ligne_bord that is the start of the 101 if ( d1.start && !(d2.start) ) { 104 if ( !(d1.start) && d2.start ) {
|
H A D | int-line.h | 24 bool start; member in struct:int_ligne_bord 79 if ( d1->start && !(d2->start) ) { 82 if ( !(d1->start) && d2->start ) {
|
H A D | path-description.h | 108 : PathDescr(descr_cubicto), p(pp), start(s), end(e) {} 116 Geom::Point start; member in struct:PathDescrCubicTo
|
/inkscape/share/extensions/ink2canvas/ |
H A D | svg.py | 118 def start(self, gradient): member in class:AbstractShape
|
/inkscape/src/ui/dialog/ |
H A D | object-properties.cpp | 504 Gtk::TextBuffer::iterator start, end; local 505 _tv_description.get_buffer()->get_bounds(start, end); 506 Glib::ustring desc = _tv_description.get_buffer()->get_text(start, end, TRUE);
|
/inkscape/src/ui/widget/ |
H A D | color-wheel-selector.cpp | 244 guint32 start = color.toRGBA32(0x00); local 249 wheelSelector->_slider->setColors(start, mid, end); 273 guint32 start = _color.color().toRGBA32(0x00); local 277 _slider->setColors(start, mid, end);
|
/inkscape/src/libcola/ |
H A D | straightener.h | 40 Edge(unsigned id, unsigned start, unsigned end, Route* route) argument 41 : id(id), openInd(0), startNode(start), endNode(end), route(route)
|