• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libxml2-2.7.2/

Lines Matching refs:nota

524 	    xmlGenericError(xmlGenericErrorContext, "?nota? ");
2370 xmlFreeNotation(xmlNotationPtr nota) {
2371 if (nota == NULL) return;
2372 if (nota->name != NULL)
2373 xmlFree((xmlChar *) nota->name);
2374 if (nota->PublicID != NULL)
2375 xmlFree((xmlChar *) nota->PublicID);
2376 if (nota->SystemID != NULL)
2377 xmlFree((xmlChar *) nota->SystemID);
2378 xmlFree(nota);
2474 * @nota: A notation
2481 xmlCopyNotation(xmlNotationPtr nota) {
2489 if (nota->name != NULL)
2490 cur->name = xmlStrdup(nota->name);
2493 if (nota->PublicID != NULL)
2494 cur->PublicID = xmlStrdup(nota->PublicID);
2497 if (nota->SystemID != NULL)
2498 cur->SystemID = xmlStrdup(nota->SystemID);
2523 * @nota: A notation declaration
2528 xmlDumpNotationDecl(xmlBufferPtr buf, xmlNotationPtr nota) {
2529 if ((buf == NULL) || (nota == NULL))
2532 xmlBufferWriteCHAR(buf, nota->name);
2533 if (nota->PublicID != NULL) {
2535 xmlBufferWriteQuotedString(buf, nota->PublicID);
2536 if (nota->SystemID != NULL) {
2538 xmlBufferWriteQuotedString(buf, nota->SystemID);
2542 xmlBufferWriteQuotedString(buf, nota->SystemID);
2549 * @nota: A notation declaration
2555 xmlDumpNotationDeclScan(xmlNotationPtr nota, xmlBufferPtr buf) {
2556 xmlDumpNotationDecl(buf, nota);
3775 * @nota: a notation definition
3788 xmlNotationPtr nota ATTRIBUTE_UNUSED) {
3949 xmlNotationPtr nota;
3951 nota = xmlGetDtdNotationDesc(doc->intSubset, value);
3952 if ((nota == NULL) && (doc->extSubset != NULL))
3953 nota = xmlGetDtdNotationDesc(doc->extSubset, value);
3955 if (nota == NULL) {
4481 xmlNotationPtr nota;
4484 nota = xmlGetDtdNotationDesc(doc->intSubset, value);
4485 if (nota == NULL)
4486 nota = xmlGetDtdNotationDesc(doc->extSubset, value);
4488 if (nota == NULL) {
4678 xmlNotationPtr nota;
4681 nota = xmlGetDtdNotationDesc(doc->intSubset, value);
4682 if (nota == NULL)
4683 nota = xmlGetDtdNotationDesc(doc->extSubset, value);
4685 if (nota == NULL) {