• Home
  • Raw
  • Download

Lines Matching refs:nota

2412 xmlFreeNotation(xmlNotationPtr nota) {  in xmlFreeNotation()  argument
2413 if (nota == NULL) return; in xmlFreeNotation()
2414 if (nota->name != NULL) in xmlFreeNotation()
2415 xmlFree((xmlChar *) nota->name); in xmlFreeNotation()
2416 if (nota->PublicID != NULL) in xmlFreeNotation()
2417 xmlFree((xmlChar *) nota->PublicID); in xmlFreeNotation()
2418 if (nota->SystemID != NULL) in xmlFreeNotation()
2419 xmlFree((xmlChar *) nota->SystemID); in xmlFreeNotation()
2420 xmlFree(nota); in xmlFreeNotation()
2503 xmlFreeNotationTableEntry(void *nota, const xmlChar *name ATTRIBUTE_UNUSED) { in xmlFreeNotationTableEntry() argument
2504 xmlFreeNotation((xmlNotationPtr) nota); in xmlFreeNotationTableEntry()
2529 xmlNotationPtr nota = (xmlNotationPtr) payload; in xmlCopyNotation() local
2537 if (nota->name != NULL) in xmlCopyNotation()
2538 cur->name = xmlStrdup(nota->name); in xmlCopyNotation()
2541 if (nota->PublicID != NULL) in xmlCopyNotation()
2542 cur->PublicID = xmlStrdup(nota->PublicID); in xmlCopyNotation()
2545 if (nota->SystemID != NULL) in xmlCopyNotation()
2546 cur->SystemID = xmlStrdup(nota->SystemID); in xmlCopyNotation()
2575 xmlDumpNotationDecl(xmlBufferPtr buf, xmlNotationPtr nota) { in xmlDumpNotationDecl() argument
2576 if ((buf == NULL) || (nota == NULL)) in xmlDumpNotationDecl()
2579 xmlBufferWriteCHAR(buf, nota->name); in xmlDumpNotationDecl()
2580 if (nota->PublicID != NULL) { in xmlDumpNotationDecl()
2582 xmlBufferWriteQuotedString(buf, nota->PublicID); in xmlDumpNotationDecl()
2583 if (nota->SystemID != NULL) { in xmlDumpNotationDecl()
2585 xmlBufferWriteQuotedString(buf, nota->SystemID); in xmlDumpNotationDecl()
2589 xmlBufferWriteQuotedString(buf, nota->SystemID); in xmlDumpNotationDecl()
2602 xmlDumpNotationDeclScan(void *nota, void *buf, in xmlDumpNotationDeclScan() argument
2604 xmlDumpNotationDecl((xmlBufferPtr) buf, (xmlNotationPtr) nota); in xmlDumpNotationDeclScan()
3862 xmlNotationPtr nota ATTRIBUTE_UNUSED) { in xmlValidateNotationDecl()
4033 xmlNotationPtr nota; in xmlValidateAttributeValue2() local
4035 nota = xmlGetDtdNotationDesc(doc->intSubset, value); in xmlValidateAttributeValue2()
4036 if ((nota == NULL) && (doc->extSubset != NULL)) in xmlValidateAttributeValue2()
4037 nota = xmlGetDtdNotationDesc(doc->extSubset, value); in xmlValidateAttributeValue2()
4039 if (nota == NULL) { in xmlValidateAttributeValue2()
4538 xmlNotationPtr nota; in xmlValidateOneAttribute() local
4541 nota = xmlGetDtdNotationDesc(doc->intSubset, value); in xmlValidateOneAttribute()
4542 if (nota == NULL) in xmlValidateOneAttribute()
4543 nota = xmlGetDtdNotationDesc(doc->extSubset, value); in xmlValidateOneAttribute()
4545 if (nota == NULL) { in xmlValidateOneAttribute()
4742 xmlNotationPtr nota; in xmlValidateOneNamespace() local
4745 nota = xmlGetDtdNotationDesc(doc->intSubset, value); in xmlValidateOneNamespace()
4746 if (nota == NULL) in xmlValidateOneNamespace()
4747 nota = xmlGetDtdNotationDesc(doc->extSubset, value); in xmlValidateOneNamespace()
4749 if (nota == NULL) { in xmlValidateOneNamespace()