Searched refs:name (Results 1 - 25 of 349) sorted by relevance

1234567891011>>

/inkscape/src/
H A Dcheck-header-compile.in24 -name bonobo -prune \
25 -o -name dom -prune \
26 -o -name ecma -prune \
27 -o -name render -prune \
28 -o -name xpath -prune \
29 -o -name '*.h' \
30 \! -name gnome.h \! -name nr-type-gnome.h \! -name Livarot.h \! -name radia
[all...]
H A Dhelp.cpp32 gchar const *name = static_cast<gchar const *>(data); local
33 gchar *c = g_build_filename(INKSCAPE_TUTORIALSDIR, name, NULL);
H A Dcolorspace.h39 Component(std::string const &name, std::string const &tip, guint scale);
41 std::string name; member in class:colorspace::Component
/inkscape/cxxtest/cxxtest/
H A DSelfTest.h4 #define CXXTEST_SUITE(name)
/inkscape/src/debug/
H A Dsimple-event.h29 explicit SimpleEvent(Util::ptr_shared<char> name) : _name(name) {} argument
30 explicit SimpleEvent(char const *name) : _name(Util::share_string(name)) {} argument
37 Util::ptr_shared<char> name() const { return _name; } function in class:Inkscape::Debug::SimpleEvent
46 void _addProperty(Util::ptr_shared<char> name, argument
49 _properties.push_back(PropertyPair(name, value));
51 void _addProperty(Util::ptr_shared<char> name, char const *value) { argument
52 _addProperty(name, Util::share_string(value));
54 void _addProperty(char const *name, Uti argument
57 _addProperty(char const *name, char const *value) argument
60 _addProperty(Util::ptr_shared<char> name, long value) argument
63 _addProperty(char const *name, long value) argument
71 _addFormattedProperty(Util::ptr_shared<char> name, char const *format, ...) argument
[all...]
H A Ddemangle.h21 Util::ptr_shared<char> demangle(char const *name);
H A Ddemangle.cpp25 char const *demangle_helper(char const *name) { argument
28 FILE *stream=popen(Util::format("c++filt %s", name), "r");
36 result = name;
53 Util::ptr_shared<char> demangle(char const *name) { argument
54 MangleCache::iterator found=mangle_cache.find(name);
60 result = demangle_helper(name);
61 mangle_cache[name] = result;
H A Devent.h44 : name(n), value(v) {}
46 : name(Util::share_string(n)), value(v) {}
48 : name(n), value(Util::share_string(v)) {}
50 : name(Util::share_string(n)),
53 Util::ptr_shared<char> name; member in struct:Inkscape::Debug::Event::PropertyPair
59 virtual Util::ptr_shared<char> name() const=0;
H A Dsysv-heap.h26 Util::ptr_shared<char> name() const { function in class:Inkscape::Debug::SysVHeap
/inkscape/share/extensions/
H A Dgenpofiles.sh6 find share/extensions -name "*.inx" | sort | xargs -n 1 printf "[type: gettext/xml] %s\n"
H A Dtar_layers.py43 for name in dir(item):
44 value = getattr(item, name)
46 yield "%s()" % name
48 yield "%s = %s" % (name, str(value))
63 if os.name == 'nt':
71 for (name, layer) in self.layers(newdoc):
78 name = node.attrib.get(LABEL, None)
79 if name:
80 yield (name, node)
85 def io_document(self, name, do
[all...]
H A Dwebslicer_create_rect.py29 self.OptionParser.add_option("--name",
31 dest="name",
82 name = self.options.name
83 el = self.document.xpath( '//*[@id="'+name+'"]', namespaces=inkex.NSS )
85 if name[-3:] == '-00': name = name[:-3]
92 el = self.document.xpath( '//*[@id="'+name+'-'+num_s+'"]',
94 self.options.name
[all...]
/inkscape/src/libcroco/
H A Dcr-pseudo.c65 guchar *name = NULL; local
67 if (a_this->name == NULL) {
71 name = (guchar *) g_strndup (a_this->name->stryng->str,
72 a_this->name->stryng->len);
74 if (name) {
75 g_string_append (str_buf, (const gchar *) name);
76 g_free (name);
77 name = NULL;
80 guchar *name local
[all...]
H A Dcr-attr-sel.c123 if (cur->name) {
124 guchar *name = NULL; local
126 name = (guchar *) g_strndup (cur->name->stryng->str,
127 cur->name->stryng->len);
128 if (name) {
129 g_string_append (str_buf, (const gchar *) name);
130 g_free (name);
131 name = NULL;
215 if (a_this->name) {
[all...]
H A Dcr-additional-sel.c88 * @a_class_name: the new class name to set.
90 * Sets a new class name to a
112 * Sets a new id name to an
247 guchar *name = NULL; local
250 name = (guchar *) g_strndup
254 if (name) {
257 name);
258 g_free (name);
259 name = NULL;
267 guchar *name local
347 guchar *name = NULL; local
367 guchar *name = NULL; local
[all...]
/inkscape/src/io/
H A Dresource.cpp64 char const *name=NULL; local
66 case EXTENSIONS: name = "extensions"; break;
67 case GRADIENTS: name = "gradients"; break;
68 case ICONS: name = "icons"; break;
69 case KEYS: name = "keys"; break;
70 case MARKERS: name = "markers"; break;
71 case PALETTES: name = "palettes"; break;
72 case PATTERNS: name = "patterns"; break;
73 case TEMPLATES: name = "templates"; break;
76 path = Inkscape::Application::profile_path(name);
[all...]
/inkscape/
H A Ddistro49 -c, --codename print the distribution code name
50 -f, --ftp-name print the ftp name of the distribution
51 -n, --name print the distribution name
114 ftp-name) FTPNAME=1 ; shift ; break ;;
115 name) NAME=1; shift ; break ;;
168 name="`echo $filename | sed -e 's|/etc/||' -e 's|-*release$||' -e 's|[-_]version$||' -e 's|\.issue||' | tr '[A-Z]' '[a-z]' | tr -d '-'`"
173 if test -z "$name"; then
175 CYGWIN*) name
[all...]
H A Dgenerate_POTFILES.sh33 find src \( -name '*.cpp' -o -name '*.[ch]' \) -type f -print0 | xargs -0 egrep -l '(\<[QNC]?_|gettext) *\(' | sort
34 find share/extensions -name '*.py' -type f -print0 | xargs -0 egrep -l '(\<[QNC]?_|gettext) *\(' | sort
35 find share/extensions -name '*.inx' -type f -print | sort | sed 's%^%[type: gettext/xml] %'
H A Ddelautogen.sh12 for d in `find -name .cvsignore -printf '%h '`; do
/inkscape/cxxtest/sample/
H A DTraitsTest.h22 const char *name() const { return _name; } function in class:Pet
26 return !strcmp( name(), other.name() );
43 ValueTraits( const Pet &pet ) { sprintf( _asString, "Pet(\"%s\")", pet.name() ); }
/inkscape/src/extension/dbus/
H A Ddbus-init.cpp41 // This stores the bus name to use for this app instance. By default, it
102 // Document name is not suitable for DBus name, as it might contain invalid chars
103 std::string name("/org/inkscape/document_");
106 name.append(ss.str());
112 if (!dbus_g_connection_lookup_g_object(connection, name.c_str())) {
118 name.c_str());
123 return strdup(name.c_str());
131 // Set the bus name to the default
181 std::string name("/or
[all...]
/inkscape/src/extension/
H A Dloader.cpp49 char const *chname = child_repr->name();
70 // The name of the plugin is actually the library file we want to load
71 if (const gchar *name = child_repr->attribute("name")) {
77 gchar *path = g_build_filename(_baseDirectory.c_str(), name, (char *) NULL);
84 g_warning("Unable to load extension %s.\nDetails: %s\n", name, res);
92 g_warning("Unable to load extension %s.\nDetails: %s\n", name, res);
100 g_warning("Unable to load extension %s.\nDetails: %s\n", name, res);
H A Dextension.h107 gchar *name; /**< A user friendly name for the Extension */ member in class:Inkscape::Extension::Extension
187 * structure with the name of the passed in name.
191 * the passed in name.
194 * name is not found.
201 * @param name The name to search for.
202 * @return Parameter structure with a name of 'name'
[all...]
H A Dextension.cpp59 a name and an ID the module will be left in an errored state.
70 name = NULL;
85 char const * chname = child_repr->name();
95 if (!strcmp(chname, "name")) {
96 name = g_strdup (child_repr->firstChild()->content());
97 } /* name */
100 } /* name */
126 // printf("%s\n", name);
143 // printf("Extension Destructor: %s\n", name);
148 g_free(name);
405 get_param(gchar const *name) argument
437 get_param_string(gchar const *name, SPDocument const *doc, Inkscape::XML::Node const *node) const argument
444 get_param_enum(const gchar * name, const SPDocument * doc, const Inkscape::XML::Node * node) const argument
459 get_param_enum_contains(gchar const * name, gchar const * value, SPDocument * doc, Inkscape::XML::Node * node) const argument
466 get_param_optiongroup( gchar const * name, SPDocument const * doc, Inkscape::XML::Node const * node) const argument
485 get_param_bool(const gchar * name, const SPDocument * doc, const Inkscape::XML::Node * node) argument
504 get_param_int(const gchar * name, const SPDocument * doc, const Inkscape::XML::Node * node) argument
523 get_param_float(const gchar * name, const SPDocument * doc, const Inkscape::XML::Node * node) argument
542 get_param_color(const gchar * name, const SPDocument * doc, const Inkscape::XML::Node * node) const argument
561 set_param_bool(const gchar * name, bool value, SPDocument * doc, Inkscape::XML::Node * node) argument
581 set_param_int(const gchar * name, int value, SPDocument * doc, Inkscape::XML::Node * node) argument
601 set_param_float(const gchar * name, float value, SPDocument * doc, Inkscape::XML::Node * node) argument
621 set_param_string(const gchar * name, const gchar * value, SPDocument * doc, Inkscape::XML::Node * node) argument
629 set_param_optiongroup(gchar const * name, gchar const * value, SPDocument * doc, Inkscape::XML::Node * node) argument
636 set_param_enum(gchar const * name, gchar const * value, SPDocument * doc, Inkscape::XML::Node * node) argument
656 set_param_color(const gchar * name, guint32 color, SPDocument * doc, Inkscape::XML::Node * node) argument
[all...]
/inkscape/share/extensions/Barcode/
H A DBase.py36 name = None variable in class:Barcode
41 "Error encoding '%s' as %s barcode: %s\n" % (text, self.name, msg))
70 def get_id(self, name='element'):
73 while name in self.known_ids:
75 name = 'barcode%d' % index
76 self.known_ids.append(name)
77 return name
94 name = self.get_id('barcode')
98 barcode.set('id', name)
125 rect.set('id', "%s_bar%d" % (name, bar_i
[all...]

Completed in 104 milliseconds

1234567891011>>