• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libxml/

Lines Matching refs:sgml

68 #define XML_SGML_DEFAULT_CATALOG "file:///etc/sgml/catalog"
149 xmlHashTablePtr sgml;
410 ret->sgml = xmlHashCreate(10);
426 if (catal->sgml != NULL)
427 xmlHashFree(catal->sgml,
711 if ((entry == NULL) || (catal == NULL) || (catal->sgml == NULL) ||
743 xmlHashRemoveEntry(catal->sgml, entry->name,
751 xmlHashRemoveEntry(catal->sgml, entry->name, NULL);
784 xmlHashScan(catal->sgml,
2462 res = xmlHashAddEntry(catal->sgml, name, entry);
2475 res = xmlHashAddEntry(catal->sgml, sysid, entry);
2587 if (catal->sgml == NULL)
2591 ret = xmlCatalogGetSGMLPublic(catal->sgml, pubID);
2595 ret = xmlCatalogGetSGMLSystem(catal->sgml, sysID);
2771 const xmlChar *sgml;
2773 sgml = xmlCatalogGetSGMLSystem(catal->sgml, sysID);
2774 if (sgml != NULL)
2775 ret = xmlStrdup(sgml);
2806 const xmlChar *sgml;
2808 sgml = xmlCatalogGetSGMLPublic(catal->sgml, pubID);
2809 if (sgml != NULL)
2810 ret = xmlStrdup(sgml);
2853 const xmlChar *sgml;
2855 sgml = xmlCatalogSGMLResolve(catal, pubID, sysID);
2856 if (sgml != NULL)
2857 ret = xmlStrdup(sgml);
2888 const xmlChar *sgml;
2890 sgml = xmlCatalogSGMLResolve(catal, NULL, URI);
2891 if (sgml != NULL)
2892 sgml = xmlStrdup(sgml);
2913 xmlHashScan(catal->sgml,
2951 if (catal->sgml == NULL)
2952 catal->sgml = xmlHashCreate(10);
2953 res = xmlHashAddEntry(catal->sgml, orig, entry);
2978 res = xmlHashRemoveEntry(catal->sgml, value,
2988 * @sgml: should this create an SGML catalog
2995 xmlNewCatalog(int sgml) {
2998 if (sgml) {
3001 if ((catal != NULL) && (catal->sgml == NULL))
3002 catal->sgml = xmlHashCreate(10);
3034 if (catal->sgml == NULL)
3036 res = xmlHashSize(catal->sgml);
3738 return(xmlCatalogGetSGMLSystem(xmlDefaultCatalog->sgml, sysID));
3782 return(xmlCatalogGetSGMLPublic(xmlDefaultCatalog->sgml, pubID));