Lines Matching refs:notationListHead
86 NotationList *notationListHead; member
335 NotationList *notationListHead = data->notationListHead; in freeNotations() local
337 while (notationListHead != NULL) { in freeNotations()
338 NotationList *next = notationListHead->next; in freeNotations()
339 free((void *)notationListHead->notationName); in freeNotations()
340 free((void *)notationListHead->systemId); in freeNotations()
341 free((void *)notationListHead->publicId); in freeNotations()
342 free(notationListHead); in freeNotations()
343 notationListHead = next; in freeNotations()
345 data->notationListHead = NULL; in freeNotations()
389 for (p = data->notationListHead; p != NULL; p = p->next) in endDoctypeDecl()
405 for (p = data->notationListHead, i = 0; i < notationCount; p = p->next, i++) { in endDoctypeDecl()
489 entry->next = data->notationListHead; in notationDecl()
490 data->notationListHead = entry; in notationDecl()