Home | History | Annotate | Download | only in libxml2

Lines Matching refs:nota

524 nota? ");
2321 xmlFreeNotation(xmlNotationPtr nota) {
2322 if (nota == NULL) return;
2323 if (nota->name != NULL)
2324 xmlFree((xmlChar *) nota->name);
2325 if (nota->PublicID != NULL)
2326 xmlFree((xmlChar *) nota->PublicID);
2327 if (nota->SystemID != NULL)
2328 xmlFree((xmlChar *) nota->SystemID);
2329 xmlFree(nota);
2425 * @nota: A notation
2432 xmlCopyNotation(xmlNotationPtr nota) {
2440 if (nota->name != NULL)
2441 cur->name = xmlStrdup(nota->name);
2444 if (nota->PublicID != NULL)
2445 cur->PublicID = xmlStrdup(nota->PublicID);
2448 if (nota->SystemID != NULL)
2449 cur->SystemID = xmlStrdup(nota->SystemID);
2474 * @nota: A notation declaration
2479 xmlDumpNotationDecl(xmlBufferPtr buf, xmlNotationPtr nota) {
2480 if ((buf == NULL) || (nota == NULL))
2483 xmlBufferWriteCHAR(buf, nota->name);
2484 if (nota->PublicID != NULL) {
2486 xmlBufferWriteQuotedString(buf, nota->PublicID);
2487 if (nota->SystemID != NULL) {
2489 xmlBufferWriteQuotedString(buf, nota->SystemID);
2493 xmlBufferWriteQuotedString(buf, nota->SystemID);
2500 * @nota: A notation declaration
2506 xmlDumpNotationDeclScan(xmlNotationPtr nota, xmlBufferPtr buf) {
2507 xmlDumpNotationDecl(buf, nota);
3728 * @nota: a notation definition
3741 xmlNotationPtr nota ATTRIBUTE_UNUSED) {
3912 xmlNotationPtr nota;
3914 nota = xmlGetDtdNotationDesc(doc->intSubset, value);
3915 if ((nota == NULL) && (doc->extSubset != NULL))
3916 nota = xmlGetDtdNotationDesc(doc->extSubset, value);
3918 if (nota == NULL) {
4441 xmlNotationPtr nota;
4444 nota = xmlGetDtdNotationDesc(doc->intSubset, value);
4445 if (nota == NULL)
4446 nota = xmlGetDtdNotationDesc(doc->extSubset, value);
4448 if (nota == NULL) {
4638 xmlNotationPtr nota;
4641 nota = xmlGetDtdNotationDesc(doc->intSubset, value);
4642 if (nota == NULL)
4643 nota = xmlGetDtdNotationDesc(doc->extSubset, value);
4645 if (nota == NULL) {