Lines Matching defs:cur
299 CRDeclaration *cur = NULL;
306 for (cur = a_this; cur && cur->next; cur = cur->next) ;
308 cur->next = a_new;
309 a_new->prev = cur;
404 CRDeclaration *cur = NULL;
414 for (cur = a_new; cur && cur->prev; cur = cur->prev) ;
416 return cur;
461 CRDeclaration const *cur = NULL;
465 for (cur = a_this; cur; cur = cur->next) {
466 if (cur->prev) {
472 dump (cur, a_fp, a_indent);
574 CRDeclaration const *cur = NULL;
583 for (cur = a_this; cur; cur = cur->next) {
584 str = (guchar *) cr_declaration_to_string (cur, a_indent);
613 CRDeclaration const *cur = NULL;
622 for (cur = a_this; cur; cur = cur->next) {
623 str = (guchar *) cr_declaration_to_string (cur, a_indent);
626 if (cur->next)
633 if (cur->next)
660 CRDeclaration const *cur = NULL;
665 for (cur = a_this; cur; cur = cur->next)
684 CRDeclaration *cur = NULL;
689 for (cur = a_this; cur; cur = cur->next)
691 return cur;
707 CRDeclaration *cur = NULL;
712 for (cur = a_this; cur; cur = cur->next) {
713 if (cur->property
714 && cur->property->stryng
715 && cur->property->stryng->str) {
716 if (!strcmp (cur->property->stryng->str,
718 return cur;
774 CRDeclaration *cur = NULL;
781 for (cur = a_this; cur->next; cur = cur->next)
782 g_assert (cur->next->prev == cur);
788 for (; cur; cur = cur->prev) {
789 g_free (cur->next);
790 cur->next = NULL;
792 if (cur->property) {
793 cr_string_destroy (cur->property);
794 cur->property = NULL;
797 if (cur->value) {
798 cr_term_destroy (cur->value);
799 cur->value = NULL;