Searched defs:name (Results 1 - 25 of 184) sorted by relevance

12345678

/inkscape/src/
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
H A Dattributes.cpp20 gchar const *name; member in struct:__anon17
126 {SP_ATTR_NAME, "name"},
357 {SP_ATTR_GLYPH_NAME, "glyph-name"},
544 if(g_str_equal(const_cast<void *>(static_cast<void const *>(props[i].name)), key))
557 return (unsigned char*)props[id].name;
H A Dsp-factory.cpp310 std::string name; local
314 name = "string";
321 name = sptype;
323 name = node.name();
328 name = "";
332 return name;
H A Dgc-anchored.cpp31 Util::ptr_shared<char> name)
32 : RefCountEvent(name)
36 _addProperty("class", Debug::demangle(typeid(*object).name()));
30 BaseAnchorEvent(Anchored const *object, int bias, Util::ptr_shared<char> name) argument
/inkscape/src/debug/
H A Dsysv-heap.h26 Util::ptr_shared<char> name() const { function in class:Inkscape::Debug::SysVHeap
H A Dgc-heap.h26 Util::ptr_shared<char> name() const { function in class:Inkscape::Debug::GCHeap
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;
/inkscape/share/extensions/Barcode/
H A DEan13.py28 name = 'ean13' variable in class:Ean13
H A DEan2.py30 name = 'ean5' variable in class:Ean2
H A DEan5.py31 name = 'ean5' variable in class:Ean5
H A DEan8.py26 name = 'ean8' variable in class:Ean8
H A DUpca.py26 name = 'upca' variable in class:Upca
H A DUpce.py31 name = 'upce' variable in class:Upce
/inkscape/src/libcroco/
H A Dcr-pseudo.h49 CRString *name ; member in struct:_CRPseudo
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-attr-sel.h50 CRString *name ; member in struct:_CRAttrSel
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-rgb.h42 const guchar *name ; member in struct:_CRRgb
/inkscape/src/extension/internal/
H A Djavafx-out.h73 //output class name
74 String name; member in class:Inkscape::Extension::Internal::JavaFXOutput
/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/src/libnrtype/
H A Dnr-type-primitives.h31 const char *name; member in struct:NRStyleRecord
/inkscape/src/widgets/
H A Dicon.h39 gchar *name; member in struct:SPIcon
47 GtkWidget *sp_icon_new( Inkscape::IconSize size, const gchar *name );
48 GdkPixbuf *sp_pixbuf_new( Inkscape::IconSize size, const gchar *name );
/inkscape/test/src/
H A Dattributes-test.cpp59 AttributeInfo("-inkscape-font-specification", true), // TODO look into this attribute's name
156 AttributeInfo("glyph-name", true),
209 AttributeInfo("name", true),
606 unsigned char const *name = sp_attribute_name(i); local
607 EXPECT_TRUE(ids[i] > 0) << "Attribute string with enum " << i << " {" << name << "} not handled"; local
/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() ); }

Completed in 157 milliseconds

12345678