Searched refs:split (Results 1 - 25 of 75) sorted by relevance

123

/inkscape/packaging/wix/
H A Dversion.py42 items = line.split()
53 items = line.split()
55 veritems = items[1].split(',')
/inkscape/src/2geom/
H A Dcrossing.cpp153 Crossings reverse_tb(Crossings const &cr, unsigned split, std::vector<double> max) { argument
156 double mx = max[i->b - split];
163 CrossingSet reverse_ta(CrossingSet const &cr, unsigned split, std::vector<double> max) { argument
167 if(i < split) std::reverse(res.begin(), res.end());
173 CrossingSet reverse_tb(CrossingSet const &cr, unsigned split, std::vector<double> max) { argument
176 Crossings res = reverse_tb(cr[i], split, max);
177 if(i >= split) std::reverse(res.begin(), res.end());
H A Dconic_section_clipper_impl.h135 std::list<Point>::iterator split (std::list<Point> & points,
259 std::list<Point>::iterator CLIPPER_CLASS::split (std::list<Point> & points, function in class:Geom::CLIPPER_CLASS
265 //std::cerr << "CLIP: split: [" << *sp << ", " << *ip << ", "
288 //DBGINFO("CLIP: split: no further split")
292 std::list<Point>::iterator ip = split (points, sp, fp);
315 std::list<Point>::iterator ip = split (points, sp, fp);
322 //DBGINFO("CLIP: split: no further split")
H A Drecursive-bezier-intersection.cpp24 void split(double t, OldBezier &a, OldBezier &b) const;
76 * split the curve at the midpoint, returning an array with the two parts
80 void OldBezier::split(double t, OldBezier &left, OldBezier &right) const { function in class:Geom::OldBezier
107 * split the curve at the midpoint, returning an array with the two parts
227 a.split(0.5, A[0], A[1]);
233 b.split(0.5, B[0], B[1]);
269 b.split(0.5, B[0], B[1]);
H A Dcrossing.h194 Crossings reverse_tb(Crossings const &cr, unsigned split, std::vector<double> max);
195 CrossingSet reverse_ta(CrossingSet const &cr, unsigned split, std::vector<double> max);
196 CrossingSet reverse_tb(CrossingSet const &cr, unsigned split, std::vector<double> max);
/inkscape/share/extensions/
H A Dsimplestyle.py179 return dict([[x.strip() for x in i.split(":")] for i in s.split(";") if len(i.strip())])
205 numbers = [number.strip() for number in tmp.split(',')]
H A Dgimp_xcf.py85 pageHeight = int(self.unittouu(self.xpathSingle('/svg:svg/@height').split('.')[0]))
86 pageWidth = int(self.unittouu(self.xpathSingle('/svg:svg/@width').split('.')[0]))
101 pos = int(guideNode.get('position').split(',')[1].split('.')[0])
108 pos = int(guideNode.get('position').split(',')[0].split('.')[0])
H A Dmerge_styles.py37 for name,value in [ a.split(':',1) for a in attr.split(';') if ':' in a ]:
125 olds = el.attrib.has_key('class') and el.attrib['class'].split() or []
H A Dhpgl_decoder.py56 hpglData = self.hpglString.split(';')
80 # split params and sanity check them
81 parameters = parameters.strip().split(',')
H A DjessyInk_view.py33 propList = str.split(";")
43 keyValue = prop.split(":")
H A Dexport_gimp_palette.py52 print 'GIMP Palette\nName: %s\n#' % (dom.getElementsByTagName('svg')[0].getAttribute(DOCNAME).split('.')[0])
H A Dlayers2svgfont.py34 return int(guide.get("position").split(",")[index])
84 unicode_char = label.split("GlyphLayer-")[1]
H A Dlindenmayer.py66 self.rules = dict([map(stripme, i.split("=")) for i in self.options.rules.upper().split(";") if i.count("=")==1])
H A DjessyInk_export.py39 for prop in inStr.split(";"):
40 values = prop.split(":")
H A Dink2canvas.py38 return node.tag.split("}")[1]
H A Dinkweb.js95 conf.att = conf.att.split( /\s+/ );
118 conf.att = conf.att.split( /\s+/ );
119 conf.val = conf.val.split( /\s+/ );
H A Dwebslicer_export.py191 for line in desc.text.split("\n"):
193 line = line.split(':')
307 for el in output.split('\n'):
308 el = el.split(',')
348 dim = conf['dimension'].split('x')
/inkscape/src/libvpsc/
H A Dblocks.h56 void split(Block *b, Block *&l, Block *&r, Constraint *c);
H A Dblock.h42 * that most wants to split
71 void split(Block *&l, Block *&r, Constraint *c);
74 * Block needs to be split because of a violated constraint between vl and vr.
76 * with min lagrangrian multiplier and split at that point.
77 * Returns the split constraint
/inkscape/src/widgets/
H A Deraser-toolbar.cpp75 GtkAction *split = GTK_ACTION( g_object_get_data(tbl, "split") ); local
79 gtk_action_set_visible( split, TRUE );
83 gtk_action_set_visible( split, FALSE );
191 g_object_set_data( holder, "split", act );
195 GtkAction *split = GTK_ACTION( g_object_get_data(holder, "split") ); local
199 gtk_action_set_visible( split, TRUE );
203 gtk_action_set_visible( split, FALSE );
/inkscape/share/extensions/test/
H A Drender_barcode.test.py27 (btype, text, code) = line.split(':')
/inkscape/src/live_effects/
H A Dlpe-copy_rotate.h38 virtual void split(Geom::PathVector &path_in, Geom::Path const &divider);
/inkscape/CMakeScripts/
H A Dcmake_consistency_check.py98 if len(l.split()) > 1:
155 if not l.split("}")[0].endswith(context_name):
157 elif len(l.split()) > 1:
270 out2_dir, out2_file = out2 = os.path.split(out2)
/inkscape/src/
H A Dlayer-manager.cpp172 Glib::ustring split(" ");
188 split = "";
207 result = Glib::ustring::format(base, split, i);
/inkscape/src/display/
H A Dcurve.h79 GSList * split() const;

Completed in 5136 milliseconds

123