Lines Matching defs:child_repr
47 Inkscape::XML::Node * child_repr;
49 child_repr = repr->firstChild();
51 while (child_repr != NULL) {
52 if (!strcmp(child_repr->name(), INKSCAPE_EXTENSION_NS "output")) {
53 child_repr = child_repr->firstChild();
54 while (child_repr != NULL) {
55 char const * chname = child_repr->name();
63 extension = g_strdup(child_repr->firstChild()->content());
67 mimetype = g_strdup(child_repr->firstChild()->content());
71 filetypename = g_strdup(child_repr->firstChild()->content());
75 filetypetooltip = g_strdup(child_repr->firstChild()->content());
78 if (!strcmp(child_repr->firstChild()->content(), "false")) {
83 child_repr = child_repr->next();
89 child_repr = child_repr->next();