Home | History | Annotate | Download | only in xmlwf

Lines Matching defs:notations

370   NotationList **notations;
375 /* How many notations do we have? */
385 notations = malloc(notationCount * sizeof(NotationList *));
386 if (notations == NULL) {
387 fprintf(stderr, "Unable to sort notations");
395 notations[i] = p;
397 qsort(notations, notationCount, sizeof(NotationList *), notationCmp);
404 /* Now the NOTATIONs */
407 fputts(notations[i]->notationName, data->fp);
408 if (notations[i]->publicId != NULL) {
410 fputts(notations[i]->publicId, data->fp);
412 if (notations[i]->systemId != NULL) {
415 fputts(notations[i]->systemId, data->fp);
419 else if (notations[i]->systemId != NULL) {
421 fputts(notations[i]->systemId, data->fp);
431 free(notations);