HomeSort by relevance Sort by last modified time
    Searched defs:dtd (Results 1 - 25 of 48) sorted by null

1 2

  /external/libxml2/python/tests/
dtdvalid.py 8 dtd="""<!ELEMENT foo EMPTY>"""
12 dtd = libxml2.parseDTD(None, 'test.dtd') variable
15 ret = doc.validateDtd(ctxt, dtd)
17 print("error doing DTD validation")
21 dtd.freeDtd()
22 del dtd
tstmem.py 12 dtd="""<!ELEMENT foo EMPTY>"""
16 dtd = libxml2.parseDTD(None, 'test.dtd') variable
20 ret = doc.validateDtd(ctxt, dtd)
22 print("error doing DTD validation")
26 dtd.freeDtd()
27 del dtd
validDTD.py 21 dtd="""<!ELEMENT foo EMPTY>"""
28 dtd = libxml2.parseDTD(None, 'test.dtd') variable
35 ret = doc.validateDtd(ctxt, dtd)
37 print("error doing DTD validation")
43 ret = doc.validateDtd(ctxt, dtd)
48 dtd.freeDtd()
49 del dtd
  /external/libxml2/doc/examples/
tree2.c 30 xmlDtdPtr dtd = NULL; /* DTD pointer */ local
44 * Creates a DTD declaration. Isn't mandatory.
46 dtd = xmlCreateIntSubset(doc, BAD_CAST "root", NULL, BAD_CAST "tree2.dtd");
  /external/jetty/src/java/org/eclipse/jetty/webapp/
WebDescriptor.java 72 URL dtd22=Loader.getResource(Servlet.class,"javax/servlet/resources/web-app_2_2.dtd",true);
73 URL dtd23=Loader.getResource(Servlet.class,"javax/servlet/resources/web-app_2_3.dtd",true);
80 URL schemadtd=Loader.getResource(Servlet.class,"javax/servlet/resources/XMLSchema.dtd",true);
84 URL datatypesdtd=Loader.getResource(Servlet.class,"javax/servlet/resources/datatypes.dtd",true);
105 redirect(xmlParser,"web-app_2_2.dtd",dtd22);
106 redirect(xmlParser,"-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN",dtd22);
107 redirect(xmlParser,"web.dtd",dtd23);
108 redirect(xmlParser,"web-app_2_3.dtd",dtd23);
109 redirect(xmlParser,"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN",dtd23);
110 redirect(xmlParser,"XMLSchema.dtd",schemadtd)
178 String dtd = _parser.getDTD(); local
    [all...]
  /external/libxml2/
entities.c 203 xmlAddEntity(xmlDtdPtr dtd, const xmlChar *name, int type,
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->pentities
305 xmlDtdPtr dtd; local
354 xmlDtdPtr dtd; local
    [all...]
runsuite.c 427 xmlChar *dtd; local
486 dtd = xmlGetProp(tmp, BAD_CAST "dtd");
494 if (dtd != NULL)
495 xmlBufferAdd(buf, dtd, -1);
537 if (dtd != NULL)
538 xmlFree(dtd);
SAX2.c 235 * Provides the public ID e.g. "-//SGMLSOURCE//DTD DEMO//EN"
251 * 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);
    [all...]
xmlsave.c 32 "-//W3C//DTD XHTML 1.0 Strict//EN"
34 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
36 "-//W3C//DTD XHTML 1.0 Frameset//EN"
38 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"
40 "-//W3C//DTD XHTML 1.0 Transitional//EN"
42 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
50 * Try to find if the document correspond to an XHTML DTD
1104 xmlDtdPtr dtd; local
2359 xmlDtdPtr dtd; local
    [all...]
catalog.c 661 xmlDtdPtr dtd; local
671 dtd = xmlNewDtd(doc, BAD_CAST "catalog",
672 BAD_CAST "-//OASIS//DTD Entity Resolution XML Catalog V1.0//EN",
673 BAD_CAST "http://www.oasis-open.org/committees/entity/release/1.0/catalog.dtd");
675 xmlAddChild((xmlNodePtr) doc, (xmlNodePtr) dtd);
    [all...]
valid.c 2 * valid.c : part of the code use to do the DTD handling and the validity
29 static xmlElementPtr xmlGetDtdElementDesc2(xmlDtdPtr dtd, const xmlChar *name,
535 xmlGenericError(xmlGenericErrorContext, "?dtd? ");
6753 xmlDtdPtr dtd; local
    [all...]
xmllint.c 112 XMLLINT_ERR_DTD = 2, /* Error in DTD */
2422 xmlDtdPtr dtd; local
2745 xmlDtdPtr dtd; local
    [all...]
HTMLparser.c 609 * DTD: 1 means that this element is valid only in the Loose DTD
610 * 2 means that this element is valid only in the Frameset DTD
612 * Name,Start Tag,End Tag,Save End,Empty,Deprecated,DTD,inline,Description
2246 xmlDtdPtr dtd; local
4646 xmlDtdPtr dtd; local
5997 xmlDtdPtr dtd; local
    [all...]
  /external/libxml2/include/libxml/
HTMLparser.h 50 char dtd; /* 1: only in Loose DTD, 2: only Frameset one */ member in struct:_htmlElemDesc
  /external/wpa_supplicant_8/src/utils/
xml_libxml2.c 121 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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-apache-resolver.jar 
  /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
DOM3TreeWalker.java 515 StringBuffer dtd = new StringBuffer(); local
517 dtd.append("<!DOCTYPE ");
518 dtd.append(docTypeName);
520 dtd.append(" PUBLIC \"");
521 dtd.append(publicId);
522 dtd.append('\"');
527 dtd.append(" SYSTEM \"");
529 dtd.append(" \"");
531 dtd.append(systemId);
532 dtd.append('\"');
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/de/pdark/decentxml/1.3/
decentxml-1.3.jar 
  /prebuilts/tools/common/m2/repository/de/pdark/decentxml/1.3/
decentxml-1.3.jar 
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
DOM2DTM.java 569 // Namespaces spec rather than by the DTD.
901 * DOM doesn't yet provide DTD-based information to distinguis
1286 DocumentType dtd = doc.getDoctype(); local
1317 DocumentType dtd = doc.getDoctype(); local
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/xml/
XmlParser.java 121 _parser.getXMLReader().setFeature("http://apache.org/xml/features/nonvalidating/load-external-dtd", validating);
420 if (sid!=null && sid.endsWith(".dtd"))
430 String dtd = sid; local
431 if (dtd.lastIndexOf('/') >= 0)
432 dtd = dtd.substring(dtd.lastIndexOf('/') + 1);
435 LOG.debug("Can't exact match entity in redirect map, trying " + dtd);
436 entity = (URL) _redirectMap.get(dtd);
  /prebuilts/tools/common/m2/repository/xerces/xercesImpl/2.6.2/
xercesImpl-2.6.2.jar 
  /prebuilts/tools/common/m2/repository/xerces/xercesImpl/2.11.0/
xercesImpl-2.11.0.jar 
  /prebuilts/tools/common/m2/repository/xerces/xercesImpl/2.9.1/
xercesImpl-2.9.1.jar 
  /external/expat/lib/
xmlparse.c 289 } DTD;
390 static DTD * dtdCreate(const XML_Memory_Handling_Suite *ms);
392 static void dtdReset(DTD *p, const XML_Memory_Handling_Suite *ms);
394 dtdDestroy(DTD *p, XML_Bool isDocEntity, const XML_Memory_Handling_Suite *ms);
397 DTD *newDtd, const DTD *oldDtd, const XML_Memory_Handling_Suite *ms);
442 DTD *dtd);
530 DTD *m_dtd;
728 DTD *dtd
2240 DTD * const dtd = _dtd; local
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...]

Completed in 6041 milliseconds

1 2