| /inkscape/src/2geom/ |
| H A D | sweep-bounds.h | 38 #include <vector> 43 std::vector<std::vector<unsigned> > 44 sweep_bounds(std::vector<Rect>, Dim2 dim = X); 46 std::vector<std::vector<unsigned> > 47 sweep_bounds(std::vector<Rect>, std::vector<Rect>, Dim2 dim = X);
|
| H A D | basic-intersection.h | 44 #include <vector> 52 void find_intersections(std::vector<std::pair<double, double> > &xs, 57 void find_intersections(std::vector<std::pair<double, double> > &xs, 62 void find_intersections(std::vector< std::pair<double, double> > &xs, 63 std::vector<Point> const &A, 64 std::vector<Point> const &B, 67 void find_self_intersections(std::vector<std::pair<double, double> > &xs, 71 void find_self_intersections(std::vector<std::pair<double, double> > &xs, 86 void find_intersections_bezier_clipping (std::vector< std::pair<double, double> > & xs, 87 std::vector<Poin [all...] |
| H A D | solver.h | 40 #include <vector> 54 std::vector<double> & solutions, /* RETURN candidate t-values */ 67 std::vector<double> & solutions, /* RETURN candidate t-values */ 74 find_bernstein_roots(std::vector<double> &solutions, /* RETURN candidate t-values */
|
| /inkscape/src/ |
| H A D | sp-gradient-vector.h | 4 #include <vector> 22 * The effective gradient vector, after copying stops from the referenced gradient if necessary. 26 std::vector<SPGradientStop> stops;
|
| H A D | unclump.h | 15 void unclump(std::vector<SPItem*> &items);
|
| H A D | removeoverlap.h | 16 void removeoverlap(std::vector<SPItem*> const &items, double xGap, double yGap);
|
| H A D | satisfied-guide-cns.h | 5 #include <vector> 12 std::vector<Inkscape::SnapCandidatePoint> const &snappoints, 13 std::vector<SPGuideConstraint> &cns);
|
| H A D | unicoderange.h | 2 #include <vector> 21 std::vector<Urange> range; 22 std::vector<gunichar> unichars;
|
| H A D | remove-last.h | 5 #include <vector> 9 inline void remove_last(std::vector<T> &seq, T const &elem) 11 typename std::vector<T>::reverse_iterator i(find(seq.rbegin(), seq.rend(), elem));
|
| H A D | graphlayout.h | 21 void graphlayout(std::vector<SPItem*> const &items); 25 void filterConnectors(std::vector<SPItem*> const &items, std::list<SPItem *> &filtered);
|
| H A D | desktop-style.h | 71 gdouble stroke_average_width (const std::vector<SPItem*> &objects); 73 int objects_query_fillstroke (const std::vector<SPItem*> &objects, SPStyle *style_res, bool const isfill); 74 int objects_query_fontnumbers (const std::vector<SPItem*> &objects, SPStyle *style_res); 75 int objects_query_fontstyle (const std::vector<SPItem*> &objects, SPStyle *style_res); 76 int objects_query_fontfamily (const std::vector<SPItem*> &objects, SPStyle *style_res); 77 int objects_query_fontvariants (const std::vector<SPItem*> &objects, SPStyle *style_res); 78 int objects_query_opacity (const std::vector<SPItem*> &objects, SPStyle *style_res); 79 int objects_query_strokewidth (const std::vector<SPItem*> &objects, SPStyle *style_res); 80 int objects_query_miterlimit (const std::vector<SPItem*> &objects, SPStyle *style_res); 81 int objects_query_strokecap (const std::vector<SPIte [all...] |
| H A D | object-snapper.h | 50 std::vector<SPItem const *> const *it, 51 std::vector<SnapCandidatePoint> *unselected_nodes) const; 57 std::vector<SPItem const *> const *it, 58 std::vector<SnapCandidatePoint> *unselected_nodes) const; 62 std::vector<SnapCandidateItem> *_candidates; 63 std::vector<SnapCandidatePoint> *_points_to_snap_to; 64 std::vector<SnapCandidatePath > *_paths_to_snap_to; 74 std::vector<SPItem const *> const *it, 82 std::vector<SnapCandidatePoint> *unselected_nodes, 95 std::vector<Inkscap [all...] |
| H A D | colorspace.h | 21 #include <vector> 46 std::vector<Component> getColorSpaceInfo( uint32_t space ); 48 std::vector<Component> getColorSpaceInfo( Inkscape::ColorProfile *prof );
|
| H A D | text-tag-attributes.h | 4 #include <vector> 60 otherwise the vector will end. textLength is never merged with parent. */ 70 in the corresponding text. If a vector is shorter than \a start_index 96 /** Gets current value of dx vector at \a index. */ 99 /** Gets current value of dy vector at \a index. */ 102 /** Adds the given value to the dx vector at the given 103 \a index. The vector is extended if necessary. */ 106 /** Adds the given value to the dy vector at the given 107 \a index. The vector is extended if necessary. */ 114 /** Gets current value of rotate vector a [all...] |
| H A D | satisfied-guide-cns.cpp | 9 std::vector<Inkscape::SnapCandidatePoint> const &snappoints, 10 std::vector<SPGuideConstraint> &cns) 13 for(std::vector<SPGuide *>::const_iterator it = nv.guides.begin(); it != nv.guides.end(); ++it) {
|
| H A D | conn-avoid-ref.h | 43 std::vector<SPItem *> getAttachedShapes(const unsigned int type); 44 std::vector<SPItem *> getAttachedConnectors(const unsigned int type); 57 extern std::vector<SPItem *> get_avoided_items(std::vector<SPItem *> &list, SPObject *from,
|
| /inkscape/src/svg/ |
| H A D | svg-icc-color.h | 5 #include <vector> 14 std::vector<double> colors;
|
| /inkscape/src/libcola/ |
| H A D | cycle_detector.h | 5 #include <vector> 10 typedef std::vector<cola::Edge> Edges; 11 typedef std::vector<bool> CyclicEdges; 20 std::vector<unsigned> dests; 31 std::vector<bool> *detect_cycles(); 42 std::vector<Node *> *nodes; // the nodes in the graph 43 std::vector<bool> *cyclicEdgesMapping; // the cyclic edges in the graph. 44 std::vector<unsigned> traverse; // nodes still left to visit in the graph 51 bool find_node(std::vector<Node *> *& list, unsigned k); 52 std::pair< bool, std::vector<unsigne [all...] |
| H A D | shortest_paths.h | 3 #include <vector> 13 std::vector<Node*> neighbours; 14 std::vector<double> nweights; 24 std::vector<Edge>& es,double* eweights); 27 std::vector<Edge>& es, double* eweights); 30 std::vector<Edge>& es, double* eweights);
|
| /inkscape/src/widgets/ |
| H A D | sp-attribute-widget.h | 71 SPAttributeTable (SPObject *object, std::vector<Glib::ustring> &labels, std::vector<Glib::ustring> &attributes, GtkWidget* parent); 87 void set_object(SPObject *object, std::vector<Glib::ustring> &labels, std::vector<Glib::ustring> &attributes, GtkWidget* parent); 120 std::vector<Glib::ustring> get_attributes(void) {return _attributes;}; 125 std::vector<Gtk::Entry *> get_entries(void) {return _entries;}; 153 std::vector<Glib::ustring> _attributes; 160 std::vector<Gtk::Entry *> _entries;
|
| /inkscape/src/libdepixelize/priv/ |
| H A D | iterator.h | 28 #include <vector> 34 const T *to_ptr(typename std::vector<T>::const_iterator it) 40 T *to_ptr(typename std::vector<T>::iterator it) 46 typename std::vector<T>::const_iterator to_iterator(T const *ptr, 47 typename std::vector<T> 50 typedef typename std::vector<T>::const_iterator It; 57 typename std::vector<T>::iterator to_iterator(T *ptr, 58 typename std::vector<T>::iterator 61 typedef typename std::vector<T>::iterator It; 71 typedef typename std::vector< [all...] |
| /inkscape/src/io/ |
| H A D | bufferstream.h | 34 #include <vector> 56 BufferInputStream(const std::vector<unsigned char> &sourceBuffer); 63 const std::vector<unsigned char> &buffer; 90 virtual std::vector<unsigned char> &getBuffer() 97 std::vector<unsigned char> buffer;
|
| /inkscape/src/live_effects/parameter/ |
| H A D | array.h | 12 #include <vector> 43 std::vector<StorageType> const & data() const { 70 void param_setValue(std::vector<StorageType> const &new_vector) { 75 param_setValue( std::vector<StorageType>(_default_size) ); 78 void param_set_and_write_new_value(std::vector<StorageType> const &new_vector) { 87 std::vector<StorageType> _vector; 90 void writesvg(SVGOStringStream &str, std::vector<StorageType> const &vector) const { 91 for (unsigned int i = 0; i < vector.size(); ++i) { 96 str << vector[ local [all...] |
| /inkscape/src/util/ |
| H A D | ziptool.h | 37 #include <vector> 86 void update(const std::vector<unsigned char> &buf); 127 virtual void setData(const std::vector<unsigned char> &str); 137 virtual std::vector<unsigned char> &getData(); 171 virtual bool writeBuffer(std::vector<unsigned char> &outbuf); 192 virtual bool readBuffer(const std::vector<unsigned char> &inbuf); 203 std::vector<unsigned char> data; 219 std::vector<unsigned char> fileBuf; 300 virtual std::vector<unsigned char> &getCompressedData(); 305 virtual void setCompressedData(const std::vector<unsigne [all...] |
| /inkscape/src/display/ |
| H A D | nr-filter-colormatrix.h | 15 #include <vector> 47 virtual void set_values(std::vector<double> const &values); 51 ColorMatrixMatrix(std::vector<double> const &values); 58 std::vector<double> values;
|