• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libxml/

Lines Matching refs:nota

519 	    xmlGenericError(xmlGenericErrorContext, "?nota? ");
2361 xmlFreeNotation(xmlNotationPtr nota) {
2362 if (nota == NULL) return;
2363 if (nota->name != NULL)
2364 xmlFree((xmlChar *) nota->name);
2365 if (nota->PublicID != NULL)
2366 xmlFree((xmlChar *) nota->PublicID);
2367 if (nota->SystemID != NULL)
2368 xmlFree((xmlChar *) nota->SystemID);
2369 xmlFree(nota);
2465 * @nota: A notation
2472 xmlCopyNotation(xmlNotationPtr nota) {
2480 if (nota->name != NULL)
2481 cur->name = xmlStrdup(nota->name);
2484 if (nota->PublicID != NULL)
2485 cur->PublicID = xmlStrdup(nota->PublicID);
2488 if (nota->SystemID != NULL)
2489 cur->SystemID = xmlStrdup(nota->SystemID);
2514 * @nota: A notation declaration
2519 xmlDumpNotationDecl(xmlBufferPtr buf, xmlNotationPtr nota) {
2520 if ((buf == NULL) || (nota == NULL))
2523 xmlBufferWriteCHAR(buf, nota->name);
2524 if (nota->PublicID != NULL) {
2526 xmlBufferWriteQuotedString(buf, nota->PublicID);
2527 if (nota->SystemID != NULL) {
2529 xmlBufferWriteQuotedString(buf, nota->SystemID);
2533 xmlBufferWriteQuotedString(buf, nota->SystemID);
2540 * @nota: A notation declaration
2546 xmlDumpNotationDeclScan(xmlNotationPtr nota, xmlBufferPtr buf) {
2547 xmlDumpNotationDecl(buf, nota);
3656 * @nota: a notation definition
3669 xmlNotationPtr nota ATTRIBUTE_UNUSED) {
3824 xmlNotationPtr nota;
3826 nota = xmlGetDtdNotationDesc(doc->intSubset, value);
3827 if ((nota == NULL) && (doc->extSubset != NULL))
3828 nota = xmlGetDtdNotationDesc(doc->extSubset, value);
3830 if (nota == NULL) {
4355 xmlNotationPtr nota;
4358 nota = xmlGetDtdNotationDesc(doc->intSubset, value);
4359 if (nota == NULL)
4360 nota = xmlGetDtdNotationDesc(doc->extSubset, value);
4362 if (nota == NULL) {
4552 xmlNotationPtr nota;
4555 nota = xmlGetDtdNotationDesc(doc->intSubset, value);
4556 if (nota == NULL)
4557 nota = xmlGetDtdNotationDesc(doc->extSubset, value);
4559 if (nota == NULL) {