/inkscape/src/ |
H A D | sp-string.h | 5 * string elements 21 Glib::ustring string; member in class:SPString
|
H A D | version.cpp | 19 bool sp_version_from_string(const char *string, Inkscape::Version *version) argument 21 if (!string) { 28 ss << string; local
|
H A D | sp-string.cpp | 25 #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 D | share.cpp | 18 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 D | text_braille.py | 4 import chardataeffect, inkex, string namespace
|
H A D | text_flipcase.py | 2 import chardataeffect, inkex, string namespace
|
H A D | text_lowercase.py | 2 import chardataeffect, inkex, string namespace
|
H A D | text_randomcase.py | 2 import chardataeffect, inkex, string namespace
|
H A D | text_titlecase.py | 2 import chardataeffect, inkex, string namespace
|
H A D | text_uppercase.py | 2 import chardataeffect, inkex, string namespace
|
H A D | text_sentencecase.py | 2 import chardataeffect, inkex, string namespace
|
H A D | render_gears.py | 25 import string namespace 65 action="store", type="string",
|
H A D | text_extract.py | 31 import string namespace 45 action="store", type="string", 49 action="store", type="string", 53 action="store", type="string",
|
H A D | text_merge.py | 31 import string namespace 45 action="store", type="string", 49 action="store", type="string", 53 action="store", type="string",
|
H A D | interp_att_g.py | 22 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 D | plotter.py | 23 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 D | bool.h | 61 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 D | notebook.h | 34 * 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 D | color.h | 46 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 D | enum.h | 33 /** \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 D | radiobutton.h | 50 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 D | string.h | 19 /** \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 D | int.h | 54 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 D | color.cpp | 45 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 D | script.h | 60 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);
|