Lines Matching refs:next
72 struct _xmlDictEntry *next;
82 xmlDictStringsPtr next;
171 pool = pool->next;
188 pool->next = dict->strings;
233 pool = pool->next;
250 pool->next = dict->strings;
529 xmlDictEntryPtr iter, next;
581 dict->dict[key].next = NULL;
591 entry->next = dict->dict[key].next;
593 dict->dict[key].next = entry;
608 iter = olddict[i].next;
610 next = iter->next;
623 dict->dict[key].next = NULL;
628 iter->next = dict->dict[key].next;
630 dict->dict[key].next = iter;
637 iter = next;
662 xmlDictEntryPtr next;
694 next = iter->next;
699 iter = next;
707 nextp = pool->next;
745 for (insert = &(dict->dict[key]); insert->next != NULL;
746 insert = insert->next) {
787 for (tmp = &(dict->subdict->dict[key]); tmp->next != NULL;
788 tmp = tmp->next) {
827 entry->next = NULL;
833 insert->next = entry;
876 for (insert = &(dict->dict[key]); insert->next != NULL;
877 insert = insert->next) {
918 for (tmp = &(dict->subdict->dict[key]); tmp->next != NULL;
919 tmp = tmp->next) {
984 for (insert = &(dict->dict[key]); insert->next != NULL;
985 insert = insert->next) {
1011 for (tmp = &(dict->subdict->dict[key]); tmp->next != NULL;
1012 tmp = tmp->next) {
1037 entry->next = NULL;
1042 insert->next = entry;
1074 pool = pool->next;