Searched defs:dtd (Results 1 - 25 of 40) sorted by last modified time

12

/external/wpa_supplicant_8/hostapd/src/utils/
H A Dxml_libxml2.c121 xmlDtdPtr dtd; local
140 dtd = xmlParseDTD(NULL, (const xmlChar *) dtd_fname);
141 if (dtd == NULL) {
150 ret = xmlValidateDtd(&vctx, doc, dtd);
152 xmlFreeDtd(dtd);
/external/wpa_supplicant_8/src/utils/
H A Dxml_libxml2.c121 xmlDtdPtr dtd; local
140 dtd = xmlParseDTD(NULL, (const xmlChar *) dtd_fname);
141 if (dtd == NULL) {
150 ret = xmlValidateDtd(&vctx, doc, dtd);
152 xmlFreeDtd(dtd);
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dxml_libxml2.c121 xmlDtdPtr dtd; local
140 dtd = xmlParseDTD(NULL, (const xmlChar *) dtd_fname);
141 if (dtd == NULL) {
150 ret = xmlValidateDtd(&vctx, doc, dtd);
152 xmlFreeDtd(dtd);
/external/owasp/sanitizer/lib/htmlparser-1.3/
H A Dhtmlparser-1.3-with-transitions.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...
H A Dhtmlparser-1.3.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
H A Ddom4j-1.6.1.jar ... dom4j/bean/ org/dom4j/datatype/ org/dom4j/dom/ org/dom4j/dtd/ org/dom4j/io/ org/dom4j/jaxb/ org/dom4j/rule/ org ...
/external/libxml2/
H A DHTMLparser.c2217 * all tags allowing pc data from the html 4.01 loose dtd
2246 xmlDtdPtr dtd; local
2262 dtd = xmlGetIntSubset(ctxt->myDoc);
2263 if (dtd != NULL && dtd->ExternalID != NULL) {
2264 if (!xmlStrcasecmp(dtd->ExternalID, BAD_CAST "-//W3C//DTD HTML 4.01//EN") ||
2265 !xmlStrcasecmp(dtd->ExternalID, BAD_CAST "-//W3C//DTD HTML 4//EN"))
2300 * @URI: URI for the dtd, or NULL
2346 * @URI: URI for the dtd, or NULL
2357 BAD_CAST "http://www.w3.org/TR/REC-html40/loose.dtd",
4646 xmlDtdPtr dtd; local
5997 xmlDtdPtr dtd; local
[all...]
H A DSAX2.c251 * http://www.sgmlsource.com/dtds/memo.dtd
357 xmlDtdPtr dtd; local
367 dtd = xmlGetIntSubset(ctxt->myDoc);
368 if (dtd != NULL) {
371 xmlUnlinkNode((xmlNodePtr) dtd);
372 xmlFreeDtd(dtd);
H A Dcatalog.c661 xmlDtdPtr dtd; local
671 dtd = xmlNewDtd(doc, BAD_CAST "catalog",
673 BAD_CAST "http://www.oasis-open.org/committees/entity/release/1.0/catalog.dtd");
675 xmlAddChild((xmlNodePtr) doc, (xmlNodePtr) dtd);
H A DdebugXML.c445 xmlCtxtDumpDtdNode(xmlDebugCtxtPtr ctxt, xmlDtdPtr dtd) argument
449 if (dtd == NULL) {
455 if (dtd->type != XML_DTD_NODE) {
461 if (dtd->name != NULL)
462 fprintf(ctxt->output, "DTD(%s)", (char *) dtd->name);
465 if (dtd->ExternalID != NULL)
466 fprintf(ctxt->output, ", PUBLIC %s", (char *) dtd->ExternalID);
467 if (dtd->SystemID != NULL)
468 fprintf(ctxt->output, ", SYSTEM %s", (char *) dtd->SystemID);
474 xmlCtxtGenericNodeCheck(ctxt, (xmlNodePtr) dtd);
1314 xmlCtxtDumpDTD(xmlDebugCtxtPtr ctxt, xmlDtdPtr dtd) argument
1543 xmlDebugDumpDTD(FILE * output, xmlDtdPtr dtd) argument
2639 xmlShellValidate(xmlShellCtxtPtr ctxt, char *dtd, xmlNodePtr node ATTRIBUTE_UNUSED, xmlNodePtr node2 ATTRIBUTE_UNUSED) argument
[all...]
H A Dentities.c203 xmlAddEntity(xmlDtdPtr dtd, const xmlChar *name, int type, argument
212 if (dtd == NULL)
214 if (dtd->doc != NULL)
215 dict = dtd->doc->dict;
221 if (dtd->entities == NULL)
222 dtd->entities = xmlHashCreateDict(0, dict);
223 table = dtd->entities;
227 if (dtd->pentities == NULL)
228 dtd->pentities = xmlHashCreateDict(0, dict);
229 table = dtd
305 xmlDtdPtr dtd; local
354 xmlDtdPtr dtd; local
[all...]
H A Dtree.c154 * @dtd: A pointer to the DTD to search
163 xmlGetEntityFromDtd(xmlDtdPtr dtd, const xmlChar *name) { argument
166 if((dtd != NULL) && (dtd->entities != NULL)) {
167 table = (xmlEntitiesTablePtr) dtd->entities;
175 * @dtd: A pointer to the DTD to search
184 xmlGetParameterEntityFromDtd(xmlDtdPtr dtd, const xmlChar *name) { argument
187 if ((dtd != NULL) && (dtd->pentities != NULL)) {
188 table = (xmlEntitiesTablePtr) dtd
4399 xmlCopyDtd(xmlDtdPtr dtd) argument
[all...]
H A Dvalid.c29 static xmlElementPtr xmlGetDtdElementDesc2(xmlDtdPtr dtd, const xmlChar *name,
535 xmlGenericError(xmlGenericErrorContext, "?dtd? ");
1371 * @dtd: pointer to the DTD
1382 xmlDtdPtr dtd, const xmlChar *name,
1390 if (dtd == NULL) {
1447 table = (xmlElementTablePtr) dtd->elements;
1451 if (dtd->doc != NULL)
1452 dict = dtd->doc->dict;
1454 dtd->elements = (void *) table;
1470 if ((dtd
1381 xmlAddElementDecl(xmlValidCtxtPtr ctxt, xmlDtdPtr dtd, const xmlChar *name, xmlElementTypeVal type, xmlElementContentPtr content) argument
1925 xmlAddAttributeDecl(xmlValidCtxtPtr ctxt, xmlDtdPtr dtd, const xmlChar *elem, const xmlChar *name, const xmlChar *ns, xmlAttributeType type, xmlAttributeDefault def, const xmlChar *defaultValue, xmlEnumerationPtr tree) argument
2346 xmlAddNotationDecl(xmlValidCtxtPtr ctxt, xmlDtdPtr dtd, const xmlChar *name, const xmlChar *PublicID, const xmlChar *SystemID) argument
3146 xmlGetDtdElementDesc(xmlDtdPtr dtd, const xmlChar *name) argument
3176 xmlGetDtdElementDesc2(xmlDtdPtr dtd, const xmlChar *name, int create) argument
3244 xmlGetDtdQElementDesc(xmlDtdPtr dtd, const xmlChar *name, const xmlChar *prefix) argument
3268 xmlGetDtdAttrDesc(xmlDtdPtr dtd, const xmlChar *elem, const xmlChar *name) argument
3305 xmlGetDtdQAttrDesc(xmlDtdPtr dtd, const xmlChar *elem, const xmlChar *name, const xmlChar *prefix) argument
3327 xmlGetDtdNotationDesc(xmlDtdPtr dtd, const xmlChar *name) argument
6613 xmlValidateDtd(xmlValidCtxtPtr ctxt, xmlDocPtr doc, xmlDtdPtr dtd) argument
6754 xmlDtdPtr dtd; local
[all...]
H A Dxmllint.c2403 xmlDtdPtr dtd; local
2405 dtd = xmlGetIntSubset(doc);
2406 if (dtd != NULL) {
2407 xmlUnlinkNode((xmlNodePtr)dtd);
2408 xmlFreeDtd(dtd);
2726 xmlDtdPtr dtd; local
2732 dtd = xmlParseDTD(NULL, (const xmlChar *)dtdvalid);
2734 dtd = xmlParseDTD((const xmlChar *)dtdvalidfpi, NULL);
2738 if (dtd == NULL) {
2761 if (!xmlValidateDtd(cvp, doc, dtd)) {
[all...]
H A Dxmlsave.c34 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
38 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"
42 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
702 * @dtd: the pointer to the DTD
707 xmlDtdDumpOutput(xmlSaveCtxtPtr ctxt, xmlDtdPtr dtd) { argument
712 if (dtd == NULL) return;
717 xmlOutputBufferWriteString(buf, (const char *)dtd->name);
718 if (dtd->ExternalID != NULL) {
720 xmlBufWriteQuotedString(buf->buffer, dtd->ExternalID);
722 xmlBufWriteQuotedString(buf->buffer, dtd
1104 xmlDtdPtr dtd; local
2359 xmlDtdPtr dtd; local
[all...]
/external/libxml2/include/libxml/
H A DHTMLparser.h50 char dtd; /* 1: only in Loose DTD, 2: only Frameset one */ member in struct:_htmlElemDesc
/external/jdiff/
H A Dxerces.jar ... dom/events/ org/apache/xerces/impl/ org/apache/xerces/impl/dtd/ org/apache/xerces/impl/dtd/models/ org/apache/xerces/impl ...
/external/jarjar/lib/
H A Dapache-ant-1.9.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/expat/lib/
H A Dxmlparse.c442 DTD *dtd);
728 DTD *dtd)
785 if (dtd)
786 _dtd = dtd;
2240 DTD * const dtd = _dtd; local
2321 name = poolStoreString(&dtd->pool, enc,
2326 entity = (ENTITY *)lookup(parser, &dtd->generalEntities, name, 0);
2327 poolDiscard(&dtd->pool);
2332 if (!dtd->hasParamEntityRefs || dtd
725 parserCreate(const XML_Char *encodingName, const XML_Memory_Handling_Suite *memsuite, const XML_Char *nameSep, DTD *dtd) argument
2702 DTD * const dtd = _dtd; /* save one level of indirection */ local
3777 DTD * const dtd = _dtd; local
4942 DTD * const dtd = _dtd; /* save one level of indirection */ local
5093 DTD * const dtd = _dtd; /* save one level of indirection */ local
5402 DTD * const dtd = _dtd; /* save one level of indirection */ local
5433 DTD * const dtd = _dtd; /* save one level of indirection */ local
5495 DTD * const dtd = _dtd; /* save one level of indirection */ local
5564 DTD * const dtd = _dtd; /* save one level of indirection */ local
6276 DTD * const dtd = _dtd; /* save one level of indirection */ local
6328 DTD * const dtd = _dtd; /* save one level of indirection */ local
6362 DTD * const dtd = _dtd; /* save one level of indirection */ local
6386 DTD * const dtd = _dtd; /* save one level of indirection */ local
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.mortbay.jetty.server_6.1.23.v201004211559.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.contenttype_3.4.100.v20100505-1235.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.pde.core_3.6.1.v20100902_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-apache-resolver.jar ... .apache.tools.ant.types.ResourceLocation dtd public void addURIEntry (java.lang.String, java. ...
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 2851 milliseconds

12