/inkscape/src/svg/ |
H A D | strip-trailing-zeros.h | 6 std::string strip_trailing_zeros(std::string str);
|
H A D | svg-icc-color.h | 13 std::string colorProfile; 14 std::vector<double> colors;
|
H A D | test-stubs.cpp | 21 std::map<std::string,long long int> int_prefs; 26 int_prefs[std::string(path) + '/' + std::string(attr)] = val; 32 std::map<std::string,long long int>::const_iterator it=int_prefs.find(std::string(path) + '/' + std::string(attr));
|
H A D | stringstream.h | 11 typedef std::ios_base &(*std_oct_type)(std::ios_base &); 15 std::ostringstream ostr; 38 INK_SVG_STR_OP(std::string const &) 47 std::string str() const { 51 void str (std::string &s) { 55 std::streamsize precision() const { 59 std::streamsize precision(std::streamsize p) { 63 std [all...] |
H A D | stringstream.cpp | 10 ostr.imbue(std::locale::classic()); 11 ostr.setf(std::ios::showpoint); 32 std::ostringstream s; 33 s.imbue(std::locale::classic()); 34 s.flags(os.setf(std::ios::showpoint)); 53 std::ostringstream s; 54 s.imbue(std::locale::classic()); 55 s.flags(os.setf(std::ios::showpoint)); 69 Inkscape::SVGIStringStream::SVGIStringStream():std::istringstream() 71 this->imbue(std [all...] |
/inkscape/src/2geom/ |
H A D | sweep-bounds.h | 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 | 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 [all...] |
H A D | conic_section_clipper_impl.h | 57 std::cerr << msg << std::endl; 59 std::cerr << msg << var << std::endl; 62 std::cerr << msg << var << std::endl; 65 std::cerr << msg1 << var1 << msg2 << var2 << std::endl; 69 std::cerr << msg << ":\n"; \ 72 std [all...] |
/inkscape/src/libcola/ |
H A D | conjugate_gradient.h | 7 inner(std::valarray<double> const &x, 8 std::valarray<double> const &y); 18 conjugate_gradient(std::valarray<double> const &A, 19 std::valarray<double> &x, 20 std::valarray<double> const &b,
|
H A D | cycle_detector.h | 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 45 std::stack<unsigned> seenInRun; // nodes visited in a single pass. 51 bool find_node(std::vector<Node *> *& list, unsigned k); 52 std [all...] |
/inkscape/src/libvpsc/ |
H A D | variable.cpp | 12 std::ostream& operator <<(std::ostream &os, const Variable &v) {
|
/inkscape/src/util/ |
H A D | ege-tags.h | 57 Label(std::string const& lang, std::string const& value); 60 std::string lang; 61 std::string value; 68 Tag(std::string const& key); 71 std::string key; 72 std::vector<Label> labels; 86 std::string const & getLang() const; 87 void setLang(std::string const& lang); 95 std [all...] |
H A D | ziptool.h | 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(); 142 virtual std::string &getFileName(); 147 virtual void setFileName(const std::string &val); 157 virtual bool readFile(const std::string &fName); 171 virtual bool writeBuffer(std::vector<unsigned char> &outbuf); 176 virtual bool writeFile(const std::string &fileName); 192 virtual bool readBuffer(const std::vector<unsigned char> &inbuf); 197 virtual bool loadFile(const std [all...] |
H A D | unordered-containers.h | 26 # define INK_UNORDERED_SET std::unordered_set 27 # define INK_UNORDERED_MAP std::unordered_map 28 # define INK_HASH std::hash 30 namespace std { namespace 32 struct hash<Glib::ustring> : public std::unary_function<Glib::ustring, std::size_t> { 33 std::size_t operator()(Glib::ustring const &s) const { 34 return hash<std::string>()(s.raw()); 37 } // namespace std 42 # define INK_UNORDERED_SET std [all...] |
/inkscape/src/ |
H A D | unclump.h | 15 void unclump(std::vector<SPItem*> &items);
|
H A D | colorspace.h | 39 Component(std::string const &name, std::string const &tip, guint scale); 41 std::string name; 42 std::string tip; 46 std::vector<Component> getColorSpaceInfo( uint32_t space ); 48 std::vector<Component> getColorSpaceInfo( Inkscape::ColorProfile *prof );
|
H A D | streq.h | 10 return std::strcmp(a, b) == 0; 16 return (std::strcmp(a, b) == 0);
|
H A D | removeoverlap.h | 16 void removeoverlap(std::vector<SPItem*> const &items, double xGap, double yGap);
|
H A D | round.h | 16 return std::floor( x + .5 );
|
H A D | uri-test.h | 22 void stringTest( std::string result, std::string expected ) 27 TS_FAIL( std::string("Expected (") + expected + "), found null" ); 29 TS_FAIL( std::string("Expected null, found (") + result + ")" ); 33 std::string ValueOrEmpty(const char* s) { 34 return s == NULL ? std::string() : s; 37 void toStringTest( std::string uri, std::string expected ) { 40 void pathTest( std::string uri, std [all...] |
H A D | dir-util.h | 27 std::string sp_relative_path_from_path(std::string const &path, std::string const &base);
|
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 | knot-ptr.cpp | 6 static std::list<void*> deleted_knots; 9 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); 22 if (std::find(deleted_knots.begin(), deleted_knots.end(), knot) != deleted_knots.end()) {
|
/inkscape/src/xml/ |
H A D | invalid-operation-exception.h | 25 class InvalidOperationException : public std::logic_error { 27 InvalidOperationException(std::string const &message) : 28 std::logic_error(message)
|
/inkscape/src/ui/dialog/ |
H A D | glyphs.cpp | 54 static std::map<GUnicodeScript, Glib::ustring> & getScriptToName() 57 static std::map<GUnicodeScript, Glib::ustring> mappings; 143 typedef std::pair<gunichar, gunichar> Range; 144 typedef std::pair<Range, Glib::ustring> NamedRange; 146 static std::vector<NamedRange> & getRanges() 149 static std::vector<NamedRange> ranges; 152 ranges.push_back(std::make_pair(std::make_pair(0x0000, 0xFFFD), _("all"))); 153 ranges.push_back(std::make_pair(std [all...] |