Searched defs:dtd (Results 1 - 24 of 24) sorted by relevance

/vbox/src/libs/libxml2-2.6.31/python/tests/
H A Ddtdvalid.py8 dtd="""<!ELEMENT foo EMPTY>"""
12 dtd = libxml2.parseDTD(None, 'test.dtd') variable
15 ret = doc.validateDtd(ctxt, dtd)
21 dtd.freeDtd()
22 del dtd
H A Dtstmem.py12 dtd="""<!ELEMENT foo EMPTY>"""
16 dtd = libxml2.parseDTD(None, 'test.dtd') variable
20 ret = doc.validateDtd(ctxt, dtd)
26 dtd.freeDtd()
27 del dtd
H A DvalidDTD.py21 dtd="""<!ELEMENT foo EMPTY>"""
28 dtd = libxml2.parseDTD(None, 'test.dtd') variable
35 ret = doc.validateDtd(ctxt, dtd)
43 ret = doc.validateDtd(ctxt, dtd)
48 dtd.freeDtd()
49 del dtd
/vbox/src/libs/libxml2-2.6.31/doc/examples/
H A Dtree2.c30 xmlDtdPtr dtd = NULL; /* DTD pointer */ local
46 dtd = xmlCreateIntSubset(doc, BAD_CAST "root", NULL, BAD_CAST "tree2.dtd");
/vbox/src/libs/libxml2-2.6.31/
H A Dentities.c145 xmlAddEntity(xmlDtdPtr dtd, const xmlChar *name, int type, argument
154 if (dtd == NULL)
156 if (dtd->doc != NULL)
157 dict = dtd->doc->dict;
163 if (dtd->entities == NULL)
164 dtd->entities = xmlHashCreateDict(0, dict);
165 table = dtd->entities;
169 if (dtd->pentities == NULL)
170 dtd->pentities = xmlHashCreateDict(0, dict);
171 table = dtd
285 xmlDtdPtr dtd; local
334 xmlDtdPtr dtd; local
[all...]
H A Drunsuite.c439 xmlChar *dtd; local
498 dtd = xmlGetProp(tmp, BAD_CAST "dtd");
506 if (dtd != NULL)
507 xmlBufferAdd(buf, dtd, -1);
549 if (dtd != NULL)
550 xmlFree(dtd);
H A DSAX2.c229 * http://www.sgmlsource.com/dtds/memo.dtd
335 xmlDtdPtr dtd; local
345 dtd = xmlGetIntSubset(ctxt->myDoc);
346 if (dtd != NULL) {
349 xmlUnlinkNode((xmlNodePtr) dtd);
350 xmlFreeDtd(dtd);
H A DdebugXML.c443 xmlCtxtDumpDtdNode(xmlDebugCtxtPtr ctxt, xmlDtdPtr dtd) argument
447 if (dtd == NULL) {
453 if (dtd->type != XML_DTD_NODE) {
459 if (dtd->name != NULL)
460 fprintf(ctxt->output, "DTD(%s)", (char *) dtd->name);
463 if (dtd->ExternalID != NULL)
464 fprintf(ctxt->output, ", PUBLIC %s", (char *) dtd->ExternalID);
465 if (dtd->SystemID != NULL)
466 fprintf(ctxt->output, ", SYSTEM %s", (char *) dtd->SystemID);
472 xmlCtxtGenericNodeCheck(ctxt, (xmlNodePtr) dtd);
1312 xmlCtxtDumpDTD(xmlDebugCtxtPtr ctxt, xmlDtdPtr dtd) argument
1541 xmlDebugDumpDTD(FILE * output, xmlDtdPtr dtd) argument
2634 xmlShellValidate(xmlShellCtxtPtr ctxt, char *dtd, xmlNodePtr node ATTRIBUTE_UNUSED, xmlNodePtr node2 ATTRIBUTE_UNUSED) argument
[all...]
H A Dxmlsave.c30 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
34 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"
38 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
514 * @dtd: the pointer to the DTD
519 xmlDtdDumpOutput(xmlSaveCtxtPtr ctxt, xmlDtdPtr dtd) { argument
524 if (dtd == NULL) return;
529 xmlOutputBufferWriteString(buf, (const char *)dtd->name);
530 if (dtd->ExternalID != NULL) {
532 xmlBufferWriteQuotedString(buf->buffer, dtd->ExternalID);
534 xmlBufferWriteQuotedString(buf->buffer, dtd
828 xmlDtdPtr dtd; local
1989 xmlDtdPtr dtd; local
[all...]
H A Dcatalog.c657 xmlDtdPtr dtd; local
667 dtd = xmlNewDtd(doc, BAD_CAST "catalog",
669 BAD_CAST "http://www.oasis-open.org/committees/entity/release/1.0/catalog.dtd");
671 xmlAddChild((xmlNodePtr) doc, (xmlNodePtr) dtd);
H A Dxmllint.c2286 xmlDtdPtr dtd; local
2288 dtd = xmlGetIntSubset(doc);
2289 if (dtd != NULL) {
2290 xmlUnlinkNode((xmlNodePtr)dtd);
2291 xmlFreeDtd(dtd);
2576 xmlDtdPtr dtd; local
2582 dtd = xmlParseDTD(NULL, (const xmlChar *)dtdvalid);
2584 dtd = xmlParseDTD((const xmlChar *)dtdvalidfpi, NULL);
2588 if (dtd == NULL) {
2611 if (!xmlValidateDtd(cvp, doc, dtd)) {
[all...]
H A Dvalid.c29 static xmlElementPtr xmlGetDtdElementDesc2(xmlDtdPtr dtd, const xmlChar *name,
530 xmlGenericError(xmlGenericErrorContext, "?dtd? ");
635 xmlAttributePtr xmlScanAttributeDecl(xmlDtdPtr dtd, const xmlChar *elem);
1368 * @dtd: pointer to the DTD
1379 xmlDtdPtr dtd, const xmlChar *name,
1387 if (dtd == NULL) {
1444 table = (xmlElementTablePtr) dtd->elements;
1448 if (dtd->doc != NULL)
1449 dict = dtd->doc->dict;
1451 dtd
1378 xmlAddElementDecl(xmlValidCtxtPtr ctxt, xmlDtdPtr dtd, const xmlChar *name, xmlElementTypeVal type, xmlElementContentPtr content) argument
1857 xmlScanAttributeDecl(xmlDtdPtr dtd, const xmlChar *elem) argument
1969 xmlAddAttributeDecl(xmlValidCtxtPtr ctxt, xmlDtdPtr dtd, const xmlChar *elem, const xmlChar *name, const xmlChar *ns, xmlAttributeType type, xmlAttributeDefault def, const xmlChar *defaultValue, xmlEnumerationPtr tree) argument
2386 xmlAddNotationDecl(xmlValidCtxtPtr ctxt, xmlDtdPtr dtd, const xmlChar *name, const xmlChar *PublicID, const xmlChar *SystemID) argument
3185 xmlGetDtdElementDesc(xmlDtdPtr dtd, const xmlChar *name) argument
3215 xmlGetDtdElementDesc2(xmlDtdPtr dtd, const xmlChar *name, int create) argument
3283 xmlGetDtdQElementDesc(xmlDtdPtr dtd, const xmlChar *name, const xmlChar *prefix) argument
3307 xmlGetDtdAttrDesc(xmlDtdPtr dtd, const xmlChar *elem, const xmlChar *name) argument
3344 xmlGetDtdQAttrDesc(xmlDtdPtr dtd, const xmlChar *elem, const xmlChar *name, const xmlChar *prefix) argument
3366 xmlGetDtdNotationDesc(xmlDtdPtr dtd, const xmlChar *name) argument
6531 xmlValidateDtd(xmlValidCtxtPtr ctxt, xmlDocPtr doc, xmlDtdPtr dtd) argument
6672 xmlDtdPtr dtd; local
[all...]
H A DHTMLparser.c2026 * all tags allowing pc data from the html 4.01 loose dtd
2055 xmlDtdPtr dtd; local
2071 dtd = xmlGetIntSubset(ctxt->myDoc);
2072 if (dtd != NULL && dtd->ExternalID != NULL) {
2073 if (!xmlStrcasecmp(dtd->ExternalID, BAD_CAST "-//W3C//DTD HTML 4.01//EN") ||
2074 !xmlStrcasecmp(dtd->ExternalID, BAD_CAST "-//W3C//DTD HTML 4//EN"))
2109 * @URI: URI for the dtd, or NULL
2154 * @URI: URI for the dtd, or NULL
2165 BAD_CAST "http://www.w3.org/TR/REC-html40/loose.dtd",
4100 xmlDtdPtr dtd; local
5275 xmlDtdPtr dtd; local
[all...]
H A Dtree.c147 * @dtd: A pointer to the DTD to search
156 xmlGetEntityFromDtd(xmlDtdPtr dtd, const xmlChar *name) { argument
159 if((dtd != NULL) && (dtd->entities != NULL)) {
160 table = (xmlEntitiesTablePtr) dtd->entities;
168 * @dtd: A pointer to the DTD to search
177 xmlGetParameterEntityFromDtd(xmlDtdPtr dtd, const xmlChar *name) { argument
180 if ((dtd != NULL) && (dtd->pentities != NULL)) {
181 table = (xmlEntitiesTablePtr) dtd
4089 xmlCopyDtd(xmlDtdPtr dtd) argument
[all...]
H A Dtestapi.c416 if (no == 4) return("test/valid/dtds/xhtml1-strict.dtd");
488 if (no == 4) return(xmlParserInputBufferCreateFilename("test/valid/dtds/xhtml1-strict.dtd", XML_CHAR_ENCODING_NONE));
546 return(xmlNewDtd(NULL, BAD_CAST "dtd", BAD_CAST"foo", BAD_CAST"bar"));
592 if (no == 2) return(xmlNewTextReaderFilename("test/valid/dtds/xhtml1-strict.dtd"));
3118 xmlChar * URI; /* URI for the dtd, or NULL */
3159 xmlChar * URI; /* URI for the dtd, or NULL */
7078 xmlDtdPtr dtd; /* the DTD */ local
7085 dtd = gen_xmlDtdPtr(n_dtd, 1);
7087 xmlDebugDumpDTD(output, dtd);
7090 des_xmlDtdPtr(n_dtd, dtd,
7974 char * dtd; /* the DTD URI (optional) */ local
19026 xmlDtdPtr dtd; /* the dtd */ local
24343 xmlDtdPtr dtd; /* pointer to the DTD */ local
24431 xmlDtdPtr dtd; /* pointer to the DTD */ local
24916 xmlDtdPtr dtd; /* a pointer to the DtD to search */ local
24962 xmlDtdPtr dtd; /* a pointer to the DtD to search */ local
25011 xmlDtdPtr dtd; /* a pointer to the DtD to search */ local
25064 xmlDtdPtr dtd; /* a pointer to the DtD to search */ local
26018 xmlDtdPtr dtd; /* a dtd instance */ local
[all...]
/vbox/src/libs/libxml2-2.6.31/include/libxml/
H A DHTMLparser.h50 char dtd; /* 1: only in Loose DTD, 2: only Frameset one */ member in struct:_htmlElemDesc
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/common/ctf/
H A Dctf_open.c816 ctf_dtdef_t *dtd, *ntd; local
831 for (dtd = ctf_list_next(&fp->ctf_dtdefs); dtd != NULL; dtd = ntd) {
832 ntd = ctf_list_next(dtd);
833 ctf_dtd_delete(fp, dtd);
H A Dctf_create.c91 ctf_copy_smembers(ctf_dtdef_t *dtd, uint_t soff, uchar_t *t) argument
93 ctf_dmdef_t *dmd = ctf_list_next(&dtd->dtd_u.dtu_members);
114 ctf_copy_lmembers(ctf_dtdef_t *dtd, uint_t soff, uchar_t *t) argument
116 ctf_dmdef_t *dmd = ctf_list_next(&dtd->dtd_u.dtu_members);
139 ctf_copy_emembers(ctf_dtdef_t *dtd, uint_t soff, uchar_t *t) argument
141 ctf_dmdef_t *dmd = ctf_list_next(&dtd->dtd_u.dtu_members);
156 ctf_copy_membnames(ctf_dtdef_t *dtd, uchar_t *s) argument
158 ctf_dmdef_t *dmd = ctf_list_next(&dtd->dtd_u.dtu_members);
192 ctf_dtdef_t *dtd; local
223 for (size = 0, dtd
422 ctf_dtd_insert(ctf_file_t *fp, ctf_dtdef_t *dtd) argument
432 ctf_dtd_delete(ctf_file_t *fp, ctf_dtdef_t *dtd) argument
484 ctf_dtdef_t *dtd; local
506 ctf_dtdef_t *dtd, *ntd; local
531 ctf_dtdef_t *dtd; local
592 ctf_dtdef_t *dtd; local
611 ctf_dtdef_t *dtd; local
649 ctf_dtdef_t *dtd; local
668 ctf_dtdef_t *dtd = ctf_dtd_lookup(fp, type); local
686 ctf_dtdef_t *dtd; local
726 ctf_dtdef_t *dtd; local
748 ctf_dtdef_t *dtd; local
770 ctf_dtdef_t *dtd; local
792 ctf_dtdef_t *dtd; local
829 ctf_dtdef_t *dtd; local
865 ctf_dtdef_t *dtd = ctf_dtd_lookup(fp, enid); local
921 ctf_dtdef_t *dtd = ctf_dtd_lookup(fp, souid); local
1102 ctf_dtdef_t *dtd; local
[all...]
/vbox/src/VBox/Main/webservice/jaxlibs/
H A Dsjsxp.jar ... sun/xml/ com/sun/xml/stream/ com/sun/xml/stream/dtd/ com/sun/xml/stream/dtd/nonvalidating/ com/sun/xml/stream ...
H A Djaxb-xjc.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/com. ...
H A DFastInfoset.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/sun/ com/sun/xml/ com/sun/xml/fastinfoset/ ...
H A Djaxb-impl.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/sun/ com/sun/xml/ com/sun/xml/bind/ ...
H A Djaxws-rt.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ com/ com/sun/ com/sun/xml/ ...
/vbox/src/libs/libxml2-2.6.31/python/
H A Dlibxml2-py.c581 xmlDtdPtr dtd; local
588 dtd = (xmlDtdPtr) PyxmlNode_Get(pyobj_dtd);
590 c_retval = xmlGetDtdQElementDesc(dtd, name, prefix);
730 xmlDtdPtr dtd; local
735 dtd = (xmlDtdPtr) PyxmlNode_Get(pyobj_dtd);
737 c_retval = xmlCopyDtd(dtd);
1023 xmlDtdPtr dtd; local
1030 dtd = (xmlDtdPtr) PyxmlNode_Get(pyobj_dtd);
1032 c_retval = xmlGetDtdAttrDesc(dtd, elem, name);
1748 xmlDtdPtr dtd; local
4344 xmlDtdPtr dtd; local
11031 xmlDtdPtr dtd; local
11884 xmlDtdPtr dtd; local
[all...]

Completed in 213 milliseconds