Lines Matching refs:PublicID
2344 if (nota->PublicID != NULL) in xmlFreeNotation()
2345 xmlFree((xmlChar *) nota->PublicID); in xmlFreeNotation()
2367 const xmlChar *PublicID, const xmlChar *SystemID) { in xmlAddNotationDecl() argument
2377 if ((PublicID == NULL) && (SystemID == NULL)) { in xmlAddNotationDecl()
2411 if (PublicID != NULL) in xmlAddNotationDecl()
2412 ret->PublicID = xmlStrdup(PublicID); in xmlAddNotationDecl()
2469 if (nota->PublicID != NULL) in xmlCopyNotation()
2470 cur->PublicID = xmlStrdup(nota->PublicID); in xmlCopyNotation()
2472 cur->PublicID = NULL; in xmlCopyNotation()
2508 if (nota->PublicID != NULL) { in xmlDumpNotationDecl()
2510 xmlBufferWriteQuotedString(buf, nota->PublicID); in xmlDumpNotationDecl()