/external/tinyxml/ |
D | xmltest.cpp | 126 TiXmlDocument doc( "demotest.xml" ); in main() local 127 doc.Parse( demoStart ); in main() 129 if ( doc.Error() ) in main() 131 printf( "Error in %s: %s\n", doc.Value(), doc.ErrorDesc() ); in main() 134 doc.SaveFile(); in main() 137 TiXmlDocument doc( "demotest.xml" ); in main() local 138 bool loadOkay = doc.LoadFile(); in main() 142 printf( "Could not load test file 'demotest.xml'. Error='%s'. Exiting.\n", doc.ErrorDesc() ); in main() 147 doc.Print( stdout ); in main() 161 node = doc.FirstChild( "ToDo" ); in main() [all …]
|
/external/libxml2/ |
D | tree.c | 52 xmlNsPtr xmlNewReconciliedNs(xmlDocPtr doc, xmlNodePtr tree, xmlNsPtr ns); 846 xmlNewDtd(xmlDocPtr doc, const xmlChar *name, in xmlNewDtd() argument 850 if ((doc != NULL) && (doc->extSubset != NULL)) { in xmlNewDtd() 854 /* !!! */ (char *) name, doc->name, in xmlNewDtd() 855 /* !!! */ (char *)doc->extSubset->name); in xmlNewDtd() 877 if (doc != NULL) in xmlNewDtd() 878 doc->extSubset = cur; in xmlNewDtd() 879 cur->doc = doc; in xmlNewDtd() 895 xmlGetIntSubset(xmlDocPtr doc) { in xmlGetIntSubset() argument 898 if (doc == NULL) in xmlGetIntSubset() [all …]
|
D | entities.c | 101 if (entity->doc != NULL) in xmlFreeEntity() 102 dict = entity->doc->dict; in xmlFreeEntity() 212 if (dtd->doc != NULL) in xmlAddEntity() 213 dict = dtd->doc->dict; in xmlAddEntity() 237 ret->doc = dtd->doc; in xmlAddEntity() 299 xmlAddDtdEntity(xmlDocPtr doc, const xmlChar *name, int type, in xmlAddDtdEntity() argument 305 if (doc == NULL) { in xmlAddDtdEntity() 310 if (doc->extSubset == NULL) { in xmlAddDtdEntity() 315 dtd = doc->extSubset; in xmlAddDtdEntity() 323 ret->doc = dtd->doc; in xmlAddDtdEntity() [all …]
|
D | valid.c | 41 xmlValidateAttributeValueInternal(xmlDocPtr doc, xmlAttributeType type, 636 if (doc == NULL) return(0); \ 637 else if ((doc->intSubset == NULL) && \ 638 (doc->extSubset == NULL)) return(0) 923 xmlNewDocElementContent(xmlDocPtr doc, const xmlChar *name, in xmlNewDocElementContent() argument 928 if (doc != NULL) in xmlNewDocElementContent() 929 dict = doc->dict; in xmlNewDocElementContent() 1010 xmlCopyDocElementContent(xmlDocPtr doc, xmlElementContentPtr cur) { in xmlCopyDocElementContent() argument 1016 if (doc != NULL) in xmlCopyDocElementContent() 1017 dict = doc->dict; in xmlCopyDocElementContent() [all …]
|
D | xinclude.c | 55 xmlDocPtr doc; /* the parsed document */ member 65 xmlDocPtr doc; /* the source document */ member 90 xmlXIncludeDoProcess(xmlXIncludeCtxtPtr ctxt, xmlDocPtr doc, xmlNodePtr tree); 198 if (ref->doc != NULL) { in xmlXIncludeFreeRef() 202 xmlFreeDoc(ref->doc); in xmlXIncludeFreeRef() 242 ret->doc = NULL; in xmlXIncludeNewRef() 279 xmlXIncludeNewContext(xmlDocPtr doc) { in xmlXIncludeNewContext() argument 285 if (doc == NULL) in xmlXIncludeNewContext() 289 xmlXIncludeErrMemory(NULL, (xmlNodePtr) doc, in xmlXIncludeNewContext() 294 ret->doc = doc; in xmlXIncludeNewContext() [all …]
|
D | debugXML.c | 45 xmlDocPtr doc; /* current document */ member 65 ctxt->doc = NULL; in xmlCtxtDumpInitCtxt() 272 xmlDocPtr doc; in xmlCtxtGenericNodeCheck() local 275 doc = node->doc; in xmlCtxtGenericNodeCheck() 280 if (node->doc == NULL) { in xmlCtxtGenericNodeCheck() 285 dict = doc->dict; in xmlCtxtGenericNodeCheck() 289 if (doc->type == XML_DOCUMENT_NODE) in xmlCtxtGenericNodeCheck() 295 if (ctxt->doc == NULL) in xmlCtxtGenericNodeCheck() 296 ctxt->doc = doc; in xmlCtxtGenericNodeCheck() 302 if ((node->parent != NULL) && (node->doc != node->parent->doc) && in xmlCtxtGenericNodeCheck() [all …]
|
D | HTMLtree.c | 48 htmlGetMetaEncoding(htmlDocPtr doc) { in htmlGetMetaEncoding() argument 53 if (doc == NULL) in htmlGetMetaEncoding() 55 cur = doc->children; in htmlGetMetaEncoding() 162 htmlSetMetaEncoding(htmlDocPtr doc, const xmlChar *encoding) { in htmlSetMetaEncoding() argument 168 if (doc == NULL) in htmlSetMetaEncoding() 177 cur = doc->children; in htmlSetMetaEncoding() 215 meta = xmlNewDocNode(doc, NULL, BAD_CAST"meta", NULL); in htmlSetMetaEncoding() 229 meta = xmlNewDocNode(doc, NULL, BAD_CAST"meta", NULL); in htmlSetMetaEncoding() 380 htmlNodeDumpFormat(xmlBufferPtr buf, xmlDocPtr doc, xmlNodePtr cur, 395 htmlNodeDumpFormat(xmlBufferPtr buf, xmlDocPtr doc, xmlNodePtr cur, in htmlNodeDumpFormat() argument [all …]
|
D | xlink.c | 123 xlinkIsLink (xmlDocPtr doc, xmlNodePtr node) { in xlinkIsLink() argument 128 if (doc == NULL) doc = node->doc; in xlinkIsLink() 129 if ((doc != NULL) && (doc->type == XML_HTML_DOCUMENT_NODE)) { in xlinkIsLink() 157 xlink = xmlSearchNs(doc, node, XLINK_NAMESPACE); in xlinkIsLink()
|
D | schematron.c | 132 xmlDocPtr doc; /* pointer to the parsed document */ member 182 xmlDocPtr doc; member 566 if ((schema->doc != NULL) && (!(schema->preserve))) in xmlSchematronFree() 567 xmlFreeDoc(schema->doc); in xmlSchematronFree() 669 xmlSchematronNewDocParserCtxt(xmlDocPtr doc) in xmlSchematronNewDocParserCtxt() argument 673 if (doc == NULL) in xmlSchematronNewDocParserCtxt() 685 ret->doc = doc; in xmlSchematronNewDocParserCtxt() 689 ret->xctxt = xmlXPathNewContext(doc); in xmlSchematronNewDocParserCtxt() 711 if (ctxt->doc != NULL && !ctxt->preserve) in xmlSchematronFreeParserCtxt() 712 xmlFreeDoc(ctxt->doc); in xmlSchematronFreeParserCtxt() [all …]
|
D | xmlsave.c | 82 xmlDocPtr doc; member 437 xmlAttrSerializeTxtContent(buf->buffer, attr->doc, in xmlAttrSerializeContent() 556 xmlDocPtr doc; in xmlDtdDumpOutput() local 584 if ((dtd->notations != NULL) && ((dtd->doc == NULL) || in xmlDtdDumpOutput() 585 (dtd->doc->intSubset == dtd))) { in xmlDtdDumpOutput() 590 doc = ctxt->doc; in xmlDtdDumpOutput() 593 ctxt->doc = dtd->doc; in xmlDtdDumpOutput() 597 ctxt->doc = doc; in xmlDtdDumpOutput() 689 xmlDocPtr doc; in htmlNodeDumpOutputInternal() local 693 doc = cur->doc; { in htmlNodeDumpOutputInternal() [all …]
|
/external/libxml2/include/libxml/ |
D | valid.h | 94 xmlDocPtr doc; /* the document */ member 185 xmlNewDocElementContent (xmlDocPtr doc, 189 xmlCopyDocElementContent(xmlDocPtr doc, 192 xmlFreeDocElementContent(xmlDocPtr doc, 269 xmlDocPtr doc, 275 xmlGetID (xmlDocPtr doc, 278 xmlIsID (xmlDocPtr doc, 282 xmlRemoveID (xmlDocPtr doc, 288 xmlDocPtr doc, 294 xmlIsRef (xmlDocPtr doc, [all …]
|
D | tree.h | 223 struct _xmlDoc *doc; /* the containing document */ member 316 struct _xmlDoc *doc; /* the containing document */ member 376 struct _xmlDoc *doc; /* the containing document */ member 404 struct _xmlDoc *doc; /* the containing document */ member 424 struct _xmlDoc *doc; /* The document holding the ID */ member 459 struct _xmlDoc *doc; /* the containing document */ member 521 struct _xmlDoc *doc; /* autoreference to itself */ member 707 xmlCreateIntSubset (xmlDocPtr doc, 712 xmlNewDtd (xmlDocPtr doc, 717 xmlGetIntSubset (xmlDocPtr doc); [all …]
|
D | entities.h | 47 struct _xmlDoc *doc; /* the containing document */ member 82 xmlNewEntity (xmlDocPtr doc, 89 xmlAddDocEntity (xmlDocPtr doc, 96 xmlAddDtdEntity (xmlDocPtr doc, 105 xmlGetDocEntity (xmlDocPtr doc, 108 xmlGetDtdEntity (xmlDocPtr doc, 111 xmlGetParameterEntity (xmlDocPtr doc, 115 xmlEncodeEntities (xmlDocPtr doc, 119 xmlEncodeEntitiesReentrant(xmlDocPtr doc, 122 xmlEncodeSpecialChars (xmlDocPtr doc,
|
/external/webkit/WebCore/dom/ |
D | XMLTokenizer.cpp | 230 static inline RefPtr<Element> createXHTMLParserErrorHeader(Document* doc, const String& errorMessag… in createXHTMLParserErrorHeader() argument 232 …RefPtr<Element> reportElement = doc->createElement(QualifiedName(nullAtom, "parsererror", xhtmlNam… in createXHTMLParserErrorHeader() 236 RefPtr<Element> h3 = doc->createElement(h3Tag, false); in createXHTMLParserErrorHeader() 238 h3->appendChild(doc->createTextNode("This page contains the following errors:"), ec); in createXHTMLParserErrorHeader() 240 RefPtr<Element> fixed = doc->createElement(divTag, false); in createXHTMLParserErrorHeader() 243 fixed->appendChild(doc->createTextNode(errorMessages), ec); in createXHTMLParserErrorHeader() 245 h3 = doc->createElement(h3Tag, false); in createXHTMLParserErrorHeader() 247 …h3->appendChild(doc->createTextNode("Below is a rendering of the page up to the first error."), ec… in createXHTMLParserErrorHeader() 264 Document* doc = m_doc; in insertErrorMessageBlock() local 265 Node* documentElement = doc->documentElement(); in insertErrorMessageBlock() [all …]
|
/external/dropbear/debian/ |
D | implicit | 25 @rm -f debian/$*/usr/share/doc/$*/* || : 26 @install -d -m0755 debian/$*/usr/share/doc/$* 27 : debian/$*/usr/share/doc/$*/ 28 @sh -cx 'install -m0644 debian/copyright debian/$*/usr/share/doc/$*/' 30 debian/$*/usr/share/doc/$*/changelog.Debian' 32 sh -cx 'install -m0644 changelog debian/$*/usr/share/doc/$*/' 33 @test -r debian/$*/usr/share/doc/$*/changelog || \ 34 sh -cx 'mv debian/$*/usr/share/doc/$*/changelog.Debian \ 35 debian/$*/usr/share/doc/$*/changelog' 36 @test -s debian/$*/usr/share/doc/$*/changelog || \ [all …]
|
/external/e2fsprogs/ |
D | Makefile.in | 39 -@test -d doc && cd doc && $(MAKE) libext2fs.info 41 install-doc-libs: 42 -@test -d doc && cd doc && $(MAKE) install-doc-libs 44 uninstall-doc-libs: 45 -@test -d doc && cd doc && $(MAKE) uninstall-doc-libs 47 clean-doc: 48 -@test -d doc && cd doc && $(MAKE) clean 50 distclean-doc: 51 -test -d doc && cd doc && $(MAKE) distclean 54 install-shlibs-libs-recursive install-doc-libs [all …]
|
/external/e2fsprogs/debian/attic/libs/ |
D | rules | 28 docdir = $(maindir)/usr/doc/$(package) 48 cd doc && texi2html -split_chapter libext2fs.texinfo 65 rm -f doc/libext2fs_*.html lib/et/com_err_*.html 103 mkdir -p $(debdir)/e2fslibsg-dev/usr/doc/e2fslibsg 104 ln -sf e2fslibsg $(debdir)/e2fslibsg-dev/usr/doc/e2fslibsg-dev 105 mkdir -p $(maindir)/usr/doc/e2fslibsg 106 ln -sf e2fslibsg $(maindir)/usr/doc/e2fsprogs 107 mkdir -p $(debdir)/comerrg-dev/usr/doc/comerr$(COMERR_MAJOR)g 108 ln -sf comerr$(COMERR_MAJOR)g $(debdir)/comerrg-dev/usr/doc/comerrg-dev 109 mkdir -p $(debdir)/ssg-dev/usr/doc/ss$(SS_MAJOR)g [all …]
|
/external/skia/src/ports/ |
D | SkXMLParser_tinyxml.cpp | 54 TiXmlDocument doc; in load_buf() local 56 (void)doc.Parse(buf); in load_buf() 57 if (doc.Error()) in load_buf() 59 … printf("tinyxml error: <%s> row[%d] col[%d]\n", doc.ErrorDesc(), doc.ErrorRow(), doc.ErrorCol()); in load_buf() 63 walk_elem(parser, doc.RootElement()); in load_buf() 80 bool SkXMLParser::parse(const char doc[], size_t len) in parse() argument 85 memcpy(buf, doc, len); in parse()
|
/external/webkit/WebCore/inspector/front-end/ |
D | InjectedScript.js | 727 function matchExactItems(doc) argument 729 matchExactId.call(this, doc); 730 matchExactClassNames.call(this, doc); 731 matchExactTagNames.call(this, doc); 732 matchExactAttributeNames.call(this, doc); 735 function matchExactId(doc) argument 737 const result = doc.__proto__.getElementById.call(doc, whitespaceTrimmedQuery); 741 function matchExactClassNames(doc) argument 743 const result = doc.__proto__.getElementsByClassName.call(doc, whitespaceTrimmedQuery); 747 function matchExactTagNames(doc) argument [all …]
|
/external/e2fsprogs/debian/ |
D | rules | 203 ( cd ${stdbuilddir}/doc && \ 204 texi2html -split_chapter ${topdir}/doc/libext2fs.texinfo ) 244 rm -f doc/libext2fs/*.html lib/et/com_err/*.html debian/*.substvars 342 mkdir -p ${debdir}/libblkid${BLKID_SOVERSION}/usr/share/doc/libblkid${BLKID_SOVERSION} 343 mkdir -p ${debdir}/libblkid-dev/usr/share/doc 344 ln -sf libblkid${BLKID_SOVERSION} ${debdir}/libblkid-dev/usr/share/doc/libblkid-dev 346 mkdir -p ${debdir}/libss${SS_SOVERSION}/usr/share/doc/libss${SS_SOVERSION} 347 mkdir -p ${debdir}/ss-dev/usr/share/doc 348 ln -sf libss${SS_SOVERSION} ${debdir}/ss-dev/usr/share/doc/ss-dev 350 mkdir -p ${debdir}/libcomerr${COMERR_SOVERSION}/usr/share/doc/libcomerr${COMERR_SOVERSION} [all …]
|
/external/webkit/WebCore/xml/ |
D | DOMParser.cpp | 32 RefPtr<Document> doc = DOMImplementation::createDocument(contentType, 0, false); in parseFromString() local 34 doc->open(); in parseFromString() 35 doc->write(str); in parseFromString() 36 doc->finishParsing(); in parseFromString() 37 doc->close(); in parseFromString() 39 return doc.release(); in parseFromString()
|
/external/bluetooth/bluez/ |
D | .gitignore | 82 doc/*.bak 83 doc/*.stamp 84 doc/bluez.* 85 doc/bluez-*.txt 86 doc/*.sgml 87 doc/version.xml 88 doc/xml 89 doc/html
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
D | compat.h | 80 FlagDescription(T *addr, const char *doc, const char *type, const T val) in FlagDescription() 81 : address(addr), doc_string(doc), type_name(type), default_value(val) {} in FlagDescription() 214 #define DEFINE_VAR(type, name, value, doc) \ argument 218 doc, \ 222 #define DEFINE_bool(name, value, doc) DEFINE_VAR(bool, name, value, doc) argument 223 #define DEFINE_string(name, value, doc) DEFINE_VAR(string, name, value, doc) argument 224 #define DEFINE_int32(name, value, doc) DEFINE_VAR(int32, name, value, doc) argument 225 #define DEFINE_int64(name, value, doc) DEFINE_VAR(int64, name, value, doc) argument 226 #define DEFINE_double(name, value, doc) DEFINE_VAR(double, name, value, doc) argument
|
/external/chromium/third_party/icu/source/ |
D | Makefile.in | 17 docdir = $(datadir)/doc 61 distclean-local distclean-recursive doc dist dist-local dist-recursive \ 63 doc install-doc tests 78 doc: 82 doc: doc/html/index.html 84 doc/html/index.html: Doxyfile $(wildcard ./common/unicode/platform.h $(srcdir)/common/unicode/*.h $… 90 $(DOCZIP): doc 92 ( cd doc/html ; zip -r ../../$(DOCZIP) * ) 144 install-doc: 146 install-doc: doc [all …]
|
/external/icu4c/ |
D | Makefile.org | 17 docdir = $(datadir)/doc 60 distclean-local distclean-recursive doc dist dist-local dist-recursive \ 62 doc install-doc tests 77 doc: 81 doc: doc/html/index.html 83 doc/html/index.html: Doxyfile $(wildcard ./common/unicode/platform.h $(srcdir)/common/unicode/*.h $… 136 install-doc: 138 install-doc: doc 141 $(INSTALL_DATA) doc/html/* $(DESTDIR)$(docdir)/$(docsubdir) 155 $(RMV) Doxyfile doc
|