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

1 2 3 4 5

  /hardware/interfaces/media/1.0/xml/
Android.mk 4 # media_profiles_V1_0.dtd
8 LOCAL_MODULE := media_profiles_V1_0.dtd
9 LOCAL_SRC_FILES := media_profiles.dtd
  /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
serialize.py 72 if str != """<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
78 if str != """<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
84 if str != """<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
96 if str != """<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
  /external/testng/
update-beust.com 17 ${RSYNC} -r src/main/resources/testng-1.0.dtd testng-1.0.dtd.html ${U}@beust.com:${DEST}/doc
20 #scp -r javadocs doc/*.html doc/*.css src/main/resources/testng-1.0.dtd testng-1.0.dtd.html ${U}@beust.com:${DEST}
21 #scp dtd/* ${U}@beust.com:w/dtd
  /external/testng/ant/3rdparty/
DTDDoc.jar 
  /external/wayland/src/
dtddata.S 47 binfile DTD_DATA src/wayland.dtd.embed
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Modules/expat/
xmlparse.c 287 } DTD;
388 static DTD * dtdCreate(const XML_Memory_Handling_Suite *ms);
390 static void dtdReset(DTD *p, const XML_Memory_Handling_Suite *ms);
392 dtdDestroy(DTD *p, XML_Bool isDocEntity, const XML_Memory_Handling_Suite *ms);
394 dtdCopy(DTD *newDtd, const DTD *oldDtd, const XML_Memory_Handling_Suite *ms);
436 DTD *dtd);
523 DTD *m_dtd;
700 DTD *dtd)
2156 DTD * const dtd = _dtd; local
2615 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
3660 DTD * const dtd = _dtd; local
4820 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
4971 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
5280 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
5311 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
5375 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
5444 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
6152 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
6204 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
6238 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
6262 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/expat/
xmlparse.c 287 } DTD;
388 static DTD * dtdCreate(const XML_Memory_Handling_Suite *ms);
390 static void dtdReset(DTD *p, const XML_Memory_Handling_Suite *ms);
392 dtdDestroy(DTD *p, XML_Bool isDocEntity, const XML_Memory_Handling_Suite *ms);
394 dtdCopy(DTD *newDtd, const DTD *oldDtd, const XML_Memory_Handling_Suite *ms);
436 DTD *dtd);
523 DTD *m_dtd;
700 DTD *dtd)
2156 DTD * const dtd = _dtd; local
2615 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
3660 DTD * const dtd = _dtd; local
4820 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
4971 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
5280 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
5311 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
5375 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
5444 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
6152 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
6204 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
6238 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
6262 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
    [all...]
  /external/libxml2/
entities.c 208 xmlAddEntity(xmlDtdPtr dtd, const xmlChar *name, int type,
217 if (dtd == NULL)
219 if (dtd->doc != NULL)
220 dict = dtd->doc->dict;
226 if (dtd->entities == NULL)
227 dtd->entities = xmlHashCreateDict(0, dict);
228 table = dtd->entities;
232 if (dtd->pentities == NULL)
233 dtd->pentities = xmlHashCreateDict(0, dict);
234 table = dtd->pentities
310 xmlDtdPtr dtd; local
359 xmlDtdPtr dtd; local
    [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? ");
6799 xmlDtdPtr dtd; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/expat/
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...]
  /external/expat/lib/
xmlparse.c 369 } DTD;
472 static DTD * dtdCreate(const XML_Memory_Handling_Suite *ms);
474 static void dtdReset(DTD *p, const XML_Memory_Handling_Suite *ms);
476 dtdDestroy(DTD *p, XML_Bool isDocEntity, const XML_Memory_Handling_Suite *ms);
479 DTD *newDtd, const DTD *oldDtd, const XML_Memory_Handling_Suite *ms);
527 DTD *dtd);
615 DTD *m_dtd;
920 DTD *dtd
2666 DTD * const dtd = parser->m_dtd; local
3155 DTD * const dtd = parser->m_dtd; \/* save one level of indirection *\/ local
4308 DTD * const dtd = parser->m_dtd; local
5514 DTD * const dtd = parser->m_dtd; \/* save one level of indirection *\/ local
5699 DTD * const dtd = parser->m_dtd; \/* save one level of indirection *\/ local
6039 DTD * const dtd = parser->m_dtd; \/* save one level of indirection *\/ local
6070 DTD * const dtd = parser->m_dtd; \/* save one level of indirection *\/ local
6134 DTD * const dtd = parser->m_dtd; \/* save one level of indirection *\/ local
6231 DTD * const dtd = parser->m_dtd; \/* save one level of indirection *\/ local
7045 DTD * const dtd = parser->m_dtd; \/* save one level of indirection *\/ local
7097 DTD * const dtd = parser->m_dtd; \/* save one level of indirection *\/ local
7131 DTD * const dtd = parser->m_dtd; \/* save one level of indirection *\/ local
7155 DTD * const dtd = parser->m_dtd; \/* save one level of indirection *\/ local
    [all...]
  /external/python/cpython2/Modules/expat/
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
2254 DTD * const dtd = _dtd; local
2716 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
3793 DTD * const dtd = _dtd; local
4958 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
5109 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
5418 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
5449 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
5513 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
5582 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
6294 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
6346 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
6380 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
6404 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
    [all...]
  /external/python/cpython3/Modules/expat/
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
2254 DTD * const dtd = _dtd; local
2716 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
3793 DTD * const dtd = _dtd; local
4958 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
5109 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
5418 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
5449 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
5513 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
5582 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
6294 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
6346 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
6380 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
6404 DTD * const dtd = _dtd; \/* save one level of indirection *\/ local
    [all...]
  /external/bzip2/
xmlproc.sh 23 echo '-v verify xml file conforms to dtd';
75 dtd='--dtdvalid http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd'
76 xmllint $flags $dtd $xmlfmtfile 2> $OUT
  /external/swiftshader/third_party/LLVM/utils/
show-diagnostics 29 <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" \
30 "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  /external/libxml2/include/libxml/
valid.h 2 * Summary: The DTD validation
3 * Description: API for the DTD handling and the validity checking
93 unsigned int finishDtd; /* finished validating the Dtd ? */
114 * There is one table per DTD.
122 * There is one table per DTD.
130 * There is one table per DTD.
155 xmlDtdPtr dtd,
211 xmlDtdPtr dtd,
243 xmlDtdPtr dtd,
346 xmlDtdPtr dtd);
    [all...]
debugXML.h 59 xmlDtdPtr dtd);
186 char *dtd,
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t012lexerXML.g 33 ( dtd=INTERNAL_DTD
34 {this.output("INTERNAL DTD: "+$dtd.text)}
  /external/libxml2/os400/
xmllintcl.c 44 vary2 * dtd; /* DTD location or public identifier. */ member in struct:__anon26784
150 if (args->dtd && args->dtd->len) {
156 vary4vargquote(&cmd, args->dtd);
  /external/toolchain-utils/cros_utils/
html_tools.py 6 return """<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
7 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  /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...]
  /external/libxml2/doc/
buildDocBookCatalog 86 s="//OASIS//DTD DocBook XML V${VERSION}//EN"
87 found=`find $1 -name docbookx.dtd -exec grep -l "$s" {} \;`
88 for dtd in $found; do
89 docbookdir=`dirname $dtd`
90 echo Found DocBook XML $VERSION DTD in $docbookdir
95 dtd421=$dtd
196 # find the prefix for DocBook DTD
218 "-//OASIS//DTD DocBook XML V${VERSION}//EN" \
219 "file://$docbookdir/docbookx.dtd" $CATALOG
233 "-//OASIS//DTD XML Exchange Table Model 19990315//EN"
    [all...]

Completed in 475 milliseconds

1 2 3 4 5