Lines Matching refs:iter
174 XML::Node *iter=root->firstChild();
175 while (iter) {
177 if (strcmp(iter->name(), "bind")) {
179 iter = iter->next();
184 sp_repr_unparent(iter);
185 iter=root->firstChild();
451 XML::Node *iter=root->firstChild();
452 while (iter) {
454 if (strcmp(iter->name(), "bind")) {
456 iter = iter->next();
460 gchar const *verb_name=iter->attribute("action");
462 iter = iter->next();
466 gchar const *keyval_name = iter->attribute("key");
469 iter = iter->next();
475 iter = iter->next();
479 gchar const *modifiers_string = iter->attribute("modifiers");
484 sp_repr_unparent(iter);
485 iter = root->firstChild();
488 iter = iter->next();
560 XML::NodeConstSiblingIterator iter=root->firstChild();
561 for ( ; iter ; ++iter ) {
564 if (!strcmp(iter->name(), "bind")) {
565 is_primary = iter->attribute("display") && strcmp(iter->attribute("display"), "false") && strcmp(iter->attribute("display"), "0");
571 gchar const *verb_name=iter->attribute("action");
590 gchar const *keyval_name=iter->attribute("key");
604 gchar const *modifiers_string=iter->attribute("modifiers");
606 gchar const *iter=modifiers_string;
607 while (*iter) {
608 size_t length=strcspn(iter, ",");
609 gchar *mod=g_strndup(iter, length);
620 iter += length;
621 if (*iter) iter++;