Searched defs:PIPE (Results 1 - 14 of 14) sorted by relevance

/inkscape/share/extensions/
H A Drun_command.py48 from subprocess import Popen, PIPE namespace
49 p = Popen(command, shell=True, stdout=PIPE, stderr=PIPE)
H A Dtext_extract.py33 from subprocess import Popen, PIPE namespace
71 p = Popen('inkscape --query-all "%s"' % (file), shell=True, stdout=PIPE, stderr=PIPE)
H A Dtext_merge.py33 from subprocess import Popen, PIPE namespace
79 p = Popen('inkscape --query-all "%s"' % (file), shell=True, stdout=PIPE, stderr=PIPE)
H A Ddimension.py38 from subprocess import Popen, PIPE namespace
119 p = Popen('inkscape --query-%s --query-id=%s "%s"' % (query,id,file), shell=True, stdout=PIPE, stderr=PIPE)
H A Drestack.py30 from subprocess import Popen, PIPE namespace
99 p = Popen('inkscape --query-all "%s"' % (file), shell=True, stdout=PIPE, stderr=PIPE)
H A Dsummersnight.py32 from subprocess import Popen, PIPE namespace
76 p = Popen('inkscape --query-%s --query-id=%s "%s"' % (query,id,file), shell=True, stdout=PIPE, stderr=PIPE)
H A Duniconv-ext.py34 from subprocess import Popen, PIPE namespace
35 p = Popen('uniconvertor', shell=True, stdout=PIPE, stderr=PIPE).wait()
39 p = Popen('uniconv', shell=True, stdout=PIPE, stderr=PIPE).wait()
H A Duniconv_output.py49 from subprocess import Popen, PIPE namespace
50 p = Popen(command, shell=True, stdout=PIPE, stderr=PIPE)
100 from subprocess import Popen, PIPE namespace
101 p = Popen('uniconvertor', shell=True, stdout=PIPE, stderr=PIPE).wait()
105 p = Popen('uniconv', shell=True, stdout=PIPE, stderr=PIPE).wait()
H A Dprinting_marks.py27 from subprocess import Popen, PIPE, STDOUT namespace
202 float(Popen(args, stdout=PIPE, stderr=PIPE).communicate()[0])
H A Dgimp_xcf.py24 from subprocess import Popen, PIPE namespace
164 p = Popen(command, shell=True, stdin=PIPE, stdout=PIPE, stderr=PIPE)
246 p = Popen(command, shell=True, stdin=PIPE, stdout=PIPE, stderr=PIPE)
H A Dgenerate_voronoi.py33 from subprocess import Popen, PIPE namespace
101 p = Popen('inkscape --query-%s --query-id=%s "%s"' % (query, self.options.ids[0], self.args[-1]), shell=True, stdout=PIPE, stderr=PIPE)
H A Dguillotine.py45 from subprocess import Popen, PIPE namespace
220 p = Popen(command, shell=True, stdout=PIPE, stderr=PIPE)
H A Dsynfig_prepare.py44 from subprocess import Popen, PIPE namespace
133 p = Popen('inkscape "%s" %s' % (filename, cmd), shell=True, stdout=PIPE, stderr=PIPE)
H A Dperspective.py26 from subprocess import Popen, PIPE namespace
81 p = Popen('inkscape --query-%s --query-id=%s "%s"' % (query,id,file), shell=True, stdout=PIPE, stderr=PIPE)

Completed in 61 milliseconds