Searched defs:string (Results 1 - 25 of 67) sorted by relevance

123

/inkscape/src/
H A Dsp-string.h5 * string elements
21 Glib::ustring string; member in class:SPString
H A Dversion.cpp19 bool sp_version_from_string(const char *string, Inkscape::Version *version) argument
21 if (!string) {
28 ss << string; local
H A Dsp-string.cpp25 #include "sp-string.h"
57 SPString *string = SP_STRING(object); local
59 string->string.clear();
62 gchar const *xml_string = string->getRepr()->content();
123 string->string += c; // Preserve line feed
131 string->string += c; // Preserve tab
139 string
[all...]
/inkscape/src/util/
H A Dshare.cpp18 ptr_shared<char> share_string(char const *string) { argument
19 g_return_val_if_fail(string != NULL, share_unsafe<char>(NULL));
20 return share_string(string, std::strlen(string));
23 ptr_shared<char> share_string(char const *string, std::size_t length) { argument
24 g_return_val_if_fail(string != NULL, share_unsafe<char>(NULL));
26 std::memcpy(new_string, string, length);
/inkscape/share/extensions/
H A Dtext_braille.py4 import chardataeffect, inkex, string namespace
H A Dtext_flipcase.py2 import chardataeffect, inkex, string namespace
H A Dtext_lowercase.py2 import chardataeffect, inkex, string namespace
H A Dtext_randomcase.py2 import chardataeffect, inkex, string namespace
H A Dtext_titlecase.py2 import chardataeffect, inkex, string namespace
H A Dtext_uppercase.py2 import chardataeffect, inkex, string namespace
H A Dtext_sentencecase.py2 import chardataeffect, inkex, string namespace
H A Drender_gears.py25 import string namespace
65 action="store", type="string",
H A Dtext_extract.py31 import string namespace
45 action="store", type="string",
49 action="store", type="string",
53 action="store", type="string",
H A Dtext_merge.py31 import string namespace
45 action="store", type="string",
49 action="store", type="string",
53 action="store", type="string",
H A Dinterp_att_g.py22 import string namespace
35 action="store", type="string",
39 action="store", type="string",
43 action="store", type="string",
47 action="store", type="string",
51 action="store", type="string",
55 action="store", type="string",
59 action="store", type="string",
67 action="store", type="string",
72 sv = string
[all...]
H A Dplotter.py23 import string namespace
37 self.OptionParser.add_option('--tab', action='store', type='string', dest='tab')
38 self.OptionParser.add_option('--serialPort', action='store', type='string', dest='serialPort', default='COM1', help='Serial port')
39 self.OptionParser.add_option('--serialBaudRate', action='store', type='string', dest='serialBaudRate', default='9600', help='Serial Baud rate')
40 self.OptionParser.add_option('--serialByteSize', action='store', type='string', dest='serialByteSize', default='eight', help='Serial byte size')
41 self.OptionParser.add_option('--serialStopBits', action='store', type='string', dest='serialStopBits', default='one', help='Serial stop bits')
42 self.OptionParser.add_option('--serialParity', action='store', type='string', dest='serialParity', default='none', help='Serial parity')
43 self.OptionParser.add_option('--serialFlowControl', action='store', type='string', dest='serialFlowControl', default='0', help='Flow control')
44 self.OptionParser.add_option('--commandLanguage', action='store', type='string', dest='commandLanguage', default='hpgl', help='Command Language')
50 self.OptionParser.add_option('--orientation', action='store', type='string', des
[all...]
/inkscape/src/extension/param/
H A Dbool.h61 virtual void string(std::list <std::string> &list) const { return Parameter::string(list); } function in class:Inkscape::Extension::ParamBool
67 virtual void string(std::string &string) const;
H A Dnotebook.h34 * Internal value. This should point to a string that has
49 * A function to get the currentpage and the parameters in a string form.
50 * @return A string with the 'value' and all the parameters on all pages as command line arguments.
52 virtual void string (std::list <std::string> &list) const;
55 virtual void string(std::string &string) const {return Parameter::string(string);} function in class:Inkscape::Extension::ParamNotebook
[all...]
H A Dcolor.h46 virtual void string(std::list <std::string> &list) const { return Parameter::string(list); } function in class:Inkscape::Extension::ParamColor
48 virtual void string (std::string &string) const;
H A Denum.h33 /** \brief Internal value. This should point to a string that has
35 It is the value of the current selected string */
46 virtual void string(std::list <std::string> &list) const { return Parameter::string(list); } function in class:Inkscape::Extension::ParamComboBox
48 virtual void string(std::string &string) const;
H A Dradiobutton.h50 virtual void string(std::list <std::string> &list) const { return Parameter::string(list); } function in class:Inkscape::Extension::ParamRadioButton
52 virtual void string(std::string &string) const;
61 /** \brief Internal value. This should point to a string that has
63 It is the value of the current selected string */
H A Dstring.h19 /** \brief Internal value. This should point to a string that has
22 /** \brief Internal value. This indicates the maximum leght of the string. Zero meaning unlimited.
38 virtual void string(std::list <std::string> &list) const { return Parameter::string(list); } function in class:Inkscape::Extension::ParamString
40 virtual void string(std::string &string) const;
H A Dint.h54 virtual void string(std::list <std::string> &list) const { return Parameter::string(list); } function in class:Inkscape::Extension::ParamInt
56 virtual void string(std::string &string) const;
H A Dcolor.cpp45 std::string value;
46 string(value);
78 void ParamColor::string(std::string &string) const function in class:Inkscape::Extension::ParamColor
82 string += str;
/inkscape/src/extension/implementation/
H A Dscript.h60 std::list<std::string> command;
69 std::string solve_reldir(Inkscape::XML::Node *repr_in);
70 bool check_existence (std::string const& command);
90 Glib::ustring string (void) { return _string; }; function in class:Inkscape::Extension::Implementation::Script::file_listener
94 int execute (const std::list<std::string> &in_command,
95 const std::list<std::string> &in_params,
110 std::string resolveInterpreterExecutable(const Glib::ustring &interpNameArg);

Completed in 87 milliseconds

123