Lines Matching defs:child_repr
304 Inkscape::XML::Node *child_repr = module->get_repr()->firstChild();
305 while (child_repr != NULL) {
306 if (!strcmp(child_repr->name(), INKSCAPE_EXTENSION_NS "script")) {
307 child_repr = child_repr->firstChild();
308 while (child_repr != NULL) {
309 if (!strcmp(child_repr->name(), INKSCAPE_EXTENSION_NS "command")) {
310 const gchar *interpretstr = child_repr->attribute("interpreter");
315 command.push_back(solve_reldir(child_repr));
317 if (!strcmp(child_repr->name(), INKSCAPE_EXTENSION_NS "helper_extension")) {
318 helper_extension = child_repr->firstChild()->content();
320 child_repr = child_repr->next();
325 child_repr = child_repr->next();
360 Inkscape::XML::Node *child_repr = module->get_repr()->firstChild();
361 while (child_repr != NULL) {
362 if (!strcmp(child_repr->name(), INKSCAPE_EXTENSION_NS "script")) {
364 child_repr = child_repr->firstChild();
365 while (child_repr != NULL) {
366 if (!strcmp(child_repr->name(), INKSCAPE_EXTENSION_NS "check")) {
367 std::string command_text = solve_reldir(child_repr);
379 if (!strcmp(child_repr->name(), INKSCAPE_EXTENSION_NS "helper_extension")) {
380 gchar const *helper = child_repr->firstChild()->content();
386 child_repr = child_repr->next();
391 child_repr = child_repr->next();