Lines Matching defs:nota
524 nota? ");
2322 xmlFreeNotation(xmlNotationPtr nota) {
2323 if (nota == NULL) return;
2324 if (nota->name != NULL)
2325 xmlFree((xmlChar *) nota->name);
2326 if (nota->PublicID != NULL)
2327 xmlFree((xmlChar *) nota->PublicID);
2328 if (nota->SystemID != NULL)
2329 xmlFree((xmlChar *) nota->SystemID);
2330 xmlFree(nota);
2426 * @nota: A notation
2433 xmlCopyNotation(xmlNotationPtr nota) {
2441 if (nota->name != NULL)
2442 cur->name = xmlStrdup(nota->name);
2445 if (nota->PublicID != NULL)
2446 cur->PublicID = xmlStrdup(nota->PublicID);
2449 if (nota->SystemID != NULL)
2450 cur->SystemID = xmlStrdup(nota->SystemID);
2475 * @nota: A notation declaration
2480 xmlDumpNotationDecl(xmlBufferPtr buf, xmlNotationPtr nota) {
2481 if ((buf == NULL) || (nota == NULL))
2484 xmlBufferWriteCHAR(buf, nota->name);
2485 if (nota->PublicID != NULL) {
2487 xmlBufferWriteQuotedString(buf, nota->PublicID);
2488 if (nota->SystemID != NULL) {
2490 xmlBufferWriteQuotedString(buf, nota->SystemID);
2494 xmlBufferWriteQuotedString(buf, nota->SystemID);
2501 * @nota: A notation declaration
2507 xmlDumpNotationDeclScan(xmlNotationPtr nota, xmlBufferPtr buf) {
2508 xmlDumpNotationDecl(buf, nota);
3729 * @nota: a notation definition
3742 xmlNotationPtr nota ATTRIBUTE_UNUSED) {
3913 xmlNotationPtr nota;
3915 nota = xmlGetDtdNotationDesc(doc->intSubset, value);
3916 if ((nota == NULL) && (doc->extSubset != NULL))
3917 nota = xmlGetDtdNotationDesc(doc->extSubset, value);
3919 if (nota == NULL) {
4442 xmlNotationPtr nota;
4445 nota = xmlGetDtdNotationDesc(doc->intSubset, value);
4446 if (nota == NULL)
4447 nota = xmlGetDtdNotationDesc(doc->extSubset, value);
4449 if (nota == NULL) {
4639 xmlNotationPtr nota;
4642 nota = xmlGetDtdNotationDesc(doc->intSubset, value);
4643 if (nota == NULL)
4644 nota = xmlGetDtdNotationDesc(doc->extSubset, value);
4646 if (nota == NULL) {