Lines Matching defs:child_repr
50 Inkscape::XML::Node * child_repr;
52 child_repr = repr->firstChild();
54 while (child_repr != NULL) {
55 if (!strcmp(child_repr->name(), INKSCAPE_EXTENSION_NS "input")) {
56 child_repr = child_repr->firstChild();
57 while (child_repr != NULL) {
58 char const * chname = child_repr->name();
66 extension = g_strdup(child_repr->firstChild()->content());
70 mimetype = g_strdup(child_repr->firstChild()->content());
74 filetypename = g_strdup(child_repr->firstChild()->content());
78 filetypetooltip = g_strdup(child_repr->firstChild()->content());
82 output_extension = g_strdup(child_repr->firstChild()->content());
85 child_repr = child_repr->next();
91 child_repr = child_repr->next();