Lines Matching refs:nota
2369 xmlFreeNotation(xmlNotationPtr nota) { in xmlFreeNotation() argument
2370 if (nota == NULL) return; in xmlFreeNotation()
2371 if (nota->name != NULL) in xmlFreeNotation()
2372 xmlFree((xmlChar *) nota->name); in xmlFreeNotation()
2373 if (nota->PublicID != NULL) in xmlFreeNotation()
2374 xmlFree((xmlChar *) nota->PublicID); in xmlFreeNotation()
2375 if (nota->SystemID != NULL) in xmlFreeNotation()
2376 xmlFree((xmlChar *) nota->SystemID); in xmlFreeNotation()
2377 xmlFree(nota); in xmlFreeNotation()
2460 xmlFreeNotationTableEntry(void *nota, const xmlChar *name ATTRIBUTE_UNUSED) { in xmlFreeNotationTableEntry() argument
2461 xmlFreeNotation((xmlNotationPtr) nota); in xmlFreeNotationTableEntry()
2486 xmlNotationPtr nota = (xmlNotationPtr) payload; in xmlCopyNotation() local
2494 if (nota->name != NULL) in xmlCopyNotation()
2495 cur->name = xmlStrdup(nota->name); in xmlCopyNotation()
2498 if (nota->PublicID != NULL) in xmlCopyNotation()
2499 cur->PublicID = xmlStrdup(nota->PublicID); in xmlCopyNotation()
2502 if (nota->SystemID != NULL) in xmlCopyNotation()
2503 cur->SystemID = xmlStrdup(nota->SystemID); in xmlCopyNotation()
2532 xmlDumpNotationDecl(xmlBufferPtr buf, xmlNotationPtr nota) { in xmlDumpNotationDecl() argument
2533 if ((buf == NULL) || (nota == NULL)) in xmlDumpNotationDecl()
2536 xmlBufferWriteCHAR(buf, nota->name); in xmlDumpNotationDecl()
2537 if (nota->PublicID != NULL) { in xmlDumpNotationDecl()
2539 xmlBufferWriteQuotedString(buf, nota->PublicID); in xmlDumpNotationDecl()
2540 if (nota->SystemID != NULL) { in xmlDumpNotationDecl()
2542 xmlBufferWriteQuotedString(buf, nota->SystemID); in xmlDumpNotationDecl()
2546 xmlBufferWriteQuotedString(buf, nota->SystemID); in xmlDumpNotationDecl()
2559 xmlDumpNotationDeclScan(void *nota, void *buf, in xmlDumpNotationDeclScan() argument
2561 xmlDumpNotationDecl((xmlBufferPtr) buf, (xmlNotationPtr) nota); in xmlDumpNotationDeclScan()
3800 xmlNotationPtr nota ATTRIBUTE_UNUSED) { in xmlValidateNotationDecl()
3971 xmlNotationPtr nota; in xmlValidateAttributeValue2() local
3973 nota = xmlGetDtdNotationDesc(doc->intSubset, value); in xmlValidateAttributeValue2()
3974 if ((nota == NULL) && (doc->extSubset != NULL)) in xmlValidateAttributeValue2()
3975 nota = xmlGetDtdNotationDesc(doc->extSubset, value); in xmlValidateAttributeValue2()
3977 if (nota == NULL) { in xmlValidateAttributeValue2()
4502 xmlNotationPtr nota; in xmlValidateOneAttribute() local
4505 nota = xmlGetDtdNotationDesc(doc->intSubset, value); in xmlValidateOneAttribute()
4506 if (nota == NULL) in xmlValidateOneAttribute()
4507 nota = xmlGetDtdNotationDesc(doc->extSubset, value); in xmlValidateOneAttribute()
4509 if (nota == NULL) { in xmlValidateOneAttribute()
4706 xmlNotationPtr nota; in xmlValidateOneNamespace() local
4709 nota = xmlGetDtdNotationDesc(doc->intSubset, value); in xmlValidateOneNamespace()
4710 if (nota == NULL) in xmlValidateOneNamespace()
4711 nota = xmlGetDtdNotationDesc(doc->extSubset, value); in xmlValidateOneNamespace()
4713 if (nota == NULL) { in xmlValidateOneNamespace()