Searched refs:XML (Results 1 – 25 of 729) sorted by relevance
12345678910>>...30
/external/ImageMagick/config/ |
D | ImageMagick.rc | 52 COLORS.XML IMAGEMAGICK DISCARDABLE "..\\bin\\colors.xml" 53 CONFIGURE.XML IMAGEMAGICK DISCARDABLE "..\\bin\\configure.xml" 54 DELEGATES.XML IMAGEMAGICK DISCARDABLE "..\\bin\\delegates.xml" 55 ENGLISH.XML IMAGEMAGICK DISCARDABLE "..\\bin\\english.xml" 56 LOCALE.XML IMAGEMAGICK DISCARDABLE "..\\bin\\locale.xml" 57 LOG.XML IMAGEMAGICK DISCARDABLE "..\\bin\\log.xml" 58 THRESHOLDS.XML IMAGEMAGICK DISCARDABLE "..\\bin\\thresholds.xml" 59 TYPE.XML IMAGEMAGICK DISCARDABLE "..\\bin\\type.xml" 60 TYPE-GHOSTSCRIPT.XML IMAGEMAGICK DISCARDABLE "..\\bin\\type-ghostscript.xml"
|
/external/libxml2/test/catalogs/ |
D | catal3.sgml | 1 PUBLIC "-//OASIS//DTD DocBook XML CALS Table Model V4.1//EN" "calstblx.dtd" 2 PUBLIC "-//OASIS//DTD XML Exchange Table Model 19990315//EN" "soextblx.dtd" 3 PUBLIC "-//OASIS//ELEMENTS DocBook XML Information Pool V4.1//EN" "dbpool.mod" 4 PUBLIC "-//OASIS//ELEMENTS DocBook XML Document Hierarchy V4.1//EN" "dbhier.mod"PUBLIC "-//OASIS//E… 5 PUBLIC "-//OASIS//ENTITIES DocBook XML Notations V4.1//EN" "dbnotn.mod" 6 PUBLIC "-//OASIS//ENTITIES DocBook XML Character Entities V4.1//EN" "dbcent.mod"
|
D | whitex.script | 2 public "-//OASIS//ENTITIES DocBook XML Character Entities V4.1.2//EN" 3 public " -//OASIS//ENTITIES DocBook XML Character Entities V4.1.2//EN" 4 public "-//OASIS//ENTITIES DocBook XML Character Entities V4.1.2//EN " 5 system urn:publicid:+-:OASIS:DTD+++DocBook+XML+V4.1.2:EN+ 6 public urn:publicid:+-:OASIS:DTD+DocBook+XML+++V4.1.2:EN+
|
D | docbook.script | 2 public "-//OASIS//ENTITIES DocBook XML Character Entities V4.1.2//EN" 3 system urn:publicid:-:OASIS:DTD+DocBook+XML+V4.1.2:EN 4 public urn:publicid:-:OASIS:DTD+DocBook+XML+V4.1.2:EN
|
/external/cronet/third_party/libxml/fuzz/seed_corpus/ |
D | bd58da440a540eaaea9bfe74047fd31c9c483c52 | 1 PUBLIC "-//OASIS//DTD DocBook XML CALS Table Model V4.1//EN" "calstblx.dtd" 2 PUBLIC "-//OASIS//DTD XML Exchange Table Model 19990315//EN" "soextblx.dtd" 3 PUBLIC "-//OASIS//ELEMENTS DocBook XML Information Pool V4.1//EN" "dbpool.mod" 4 PUBLIC "-//OASIS//ELEMENTS DocBook XML Document Hierarchy V4.1//EN" "dbhier.mod"PUBLIC "-//OASIS//E… 5 PUBLIC "-//OASIS//ENTITIES DocBook XML Notations V4.1//EN" "dbnotn.mod" 6 PUBLIC "-//OASIS//ENTITIES DocBook XML Character Entities V4.1//EN" "dbcent.mod"
|
/external/python/cpython3/Doc/library/ |
D | xml.rst | 3 XML Processing Modules 7 :synopsis: Package containing XML processing modules 16 Python's interfaces for processing XML are grouped in the ``xml`` package. 20 The XML modules are not secure against erroneous or maliciously 26 there be at least one SAX-compliant XML parser available. The Expat parser is 33 The XML handling submodules are: 36 XML processor 52 XML vulnerabilities 55 The XML processing modules are not secure against maliciously constructed data. 56 An attacker can abuse XML features to carry out denial of service attacks, [all …]
|
D | xmlrpc.client.rst | 1 :mod:`xmlrpc.client` --- XML-RPC client access 5 :synopsis: XML-RPC client access. 17 XML-RPC is a Remote Procedure Call method that uses XML passed via HTTP(S) as a 20 supports writing XML-RPC client code; it handles all the details of translating 21 between conformable Python objects and XML on the wire. 40 remote XML-RPC server. The required first argument is a URI (Uniform Resource 49 XML; the default behaviour is for ``None`` to raise a :exc:`TypeError`. This is 50 a commonly-used extension to the XML-RPC specification, but isn't supported by 74 the remote server as part of the connection process when invoking an XML-RPC 86 Types that are conformable (e.g. that can be marshalled through XML), [all …]
|
D | xmlrpc.server.rst | 1 :mod:`xmlrpc.server` --- Basic XML-RPC servers 5 :synopsis: Basic XML-RPC server implementations. 14 The :mod:`xmlrpc.server` module provides a basic server framework for XML-RPC 32 functions that can be called by the XML-RPC protocol. The *requestHandler* 38 on to :mod:`xmlrpc.client` and control the XML-RPC responses that will be returned 54 Create a new instance to handle XML-RPC requests in a CGI environment. The 56 and control the XML-RPC responses that will be returned from the server. 79 alone XML-RPC servers. 84 Register a function that can respond to XML-RPC requests. If *name* is given, 126 Registers the XML-RPC introspection functions ``system.listMethods``, [all …]
|
D | xml.etree.elementtree.rst | 1 :mod:`xml.etree.ElementTree` --- The ElementTree XML API 14 for parsing and creating XML data. 36 XML tree and elements 39 XML is an inherently hierarchical data format, and the most natural way to 41 :class:`ElementTree` represents the whole XML document as a tree, and 44 on the :class:`ElementTree` level. Interactions with a single XML element 49 Parsing XML 52 We'll be using the following XML document as the sample data for this section: 90 :func:`fromstring` parses XML from a string directly into an :class:`Element`, 118 Not all elements of the XML input will end up as elements of the [all …]
|
/external/python/cpython2/Doc/library/ |
D | xml.rst | 3 XML Processing Modules 7 :synopsis: Package containing XML processing modules 12 Python's interfaces for processing XML are grouped in the ``xml`` package. 16 The XML modules are not secure against erroneous or maliciously 21 there be at least one SAX-compliant XML parser available. The Expat parser is 28 The XML handling submodules are: 31 XML processor 47 XML vulnerabilities 50 The XML processing modules are not secure against maliciously constructed data. 53 to or circumvent firewalls. The attacks on XML abuse unfamiliar features [all …]
|
D | xmlrpclib.rst | 1 :mod:`xmlrpclib` --- XML-RPC client access 5 :synopsis: XML-RPC client access. 24 XML-RPC is a Remote Procedure Call method that uses XML passed via HTTP(S) as a 27 supports writing XML-RPC client code; it handles all the details of translating 28 between conformable Python objects and XML on the wire. 45 remote XML-RPC server. The required first argument is a URI (Uniform Resource 54 XML; the default behaviour is for ``None`` to raise a :exc:`TypeError`. This is 55 a commonly-used extension to the XML-RPC specification, but isn't supported by 66 the remote server as part of the connection process when invoking an XML-RPC 78 Types that are conformable (e.g. that can be marshalled through XML), [all …]
|
D | xmllib.rst | 2 :mod:`xmllib` --- A parser for XML documents 6 :synopsis: A parser for XML documents. 13 single: XML 17 Use :mod:`xml.sax` instead. The newer XML package includes full support for XML 24 parsing text files formatted in XML (Extensible Markup Language). 195 not the delimiter itself. For example, the instruction ``<?XML text?>`` 196 will cause this method to be called with the arguments ``'XML'`` and 252 `Extensible Markup Language (XML) 1.0 <http://www.w3.org/TR/REC-xml>`_ 253 The XML specification, published by the World Wide Web Consortium (W3C), defines 254 the syntax and processor requirements for XML. References to additional [all …]
|
D | xml.etree.elementtree.rst | 1 :mod:`xml.etree.ElementTree` --- The ElementTree XML API 44 convert it from and to XML. 64 XML tree and elements 67 XML is an inherently hierarchical data format, and the most natural way to 69 :class:`ElementTree` represents the whole XML document as a tree, and 72 on the :class:`ElementTree` level. Interactions with a single XML element 77 Parsing XML 80 We'll be using the following XML document as the sample data for this section: 118 :func:`fromstring` parses XML from a string directly into an :class:`Element`, 176 Modifying an XML File [all …]
|
D | simplexmlrpcserver.rst | 1 :mod:`SimpleXMLRPCServer` --- Basic XML-RPC server 5 :synopsis: Basic XML-RPC server implementation. 22 XML-RPC servers written in Python. Servers can either be free standing, using 30 functions that can be called by the XML-RPC protocol. The *requestHandler* 36 on to :mod:`xmlrpclib` and control the XML-RPC responses that will be returned 51 Create a new instance to handle XML-RPC requests in a CGI environment. The 53 control the XML-RPC responses that will be returned from the server. 75 alone XML-RPC servers. 80 Register a function that can respond to XML-RPC requests. If *name* is given, 120 Registers the XML-RPC introspection functions ``system.listMethods``, [all …]
|
D | docxmlrpcserver.rst | 1 :mod:`DocXMLRPCServer` --- Self-documenting XML-RPC server 5 :synopsis: Self-documenting XML-RPC server implementation. 32 Create a new instance to handle XML-RPC requests in a CGI environment. 37 Create a new request handler instance. This request handler supports XML-RPC 50 self-documenting, stand alone XML-RPC servers. HTTP POST requests are handled as 51 XML-RPC method calls. HTTP GET requests are handled by generating pydoc-style 79 creating self-documenting, XML-RPC CGI scripts. HTTP POST requests are handled 80 as XML-RPC method calls. HTTP GET requests are handled by generating pydoc-style
|
/external/curl/tests/ |
D | getpart.pm | 207 if(open(XML, "<$file")) { 208 binmode XML; # for crapage systems, use binary 209 while(<XML>) { 212 close(XML); 232 if(open(XML, ">$file")) { 233 binmode XML; # for crapage systems, use binary 235 print XML $_; 237 close(XML);
|
/external/tinyxml2/ |
D | readme.md | 8 TinyXML-2 is a simple, small, efficient, C++ XML parser that can be 22 In brief, TinyXML-2 parses an XML document, and builds from that a 25 XML stands for "eXtensible Markup Language." It is a general purpose 28 all be replaced with XML. One parser for everything. 30 http://en.wikipedia.org/wiki/XML 32 There are different ways to access and interact with XML data. 33 TinyXML-2 uses a Document Object Model (DOM), meaning the XML data is parsed 35 written to disk or another output stream. You can also construct an XML document 37 stream. You can even use TinyXML-2 to stream XML programmatically from 49 compliant XML output. TinyXML-2 should compile on any reasonably C++ [all …]
|
/external/python/cpython2/Lib/test/ |
D | test_xml_etree.py | 239 self.assertEqual(ET.XML, ET.fromstring) 273 elem = ET.XML("<body><tag/></body>") 314 self.serialize_check(ET.XML("<tag>hello</tag>"), 316 self.serialize_check(ET.XML("<tag>hello</tag>"), 318 self.serialize_check(ET.XML("<tag><![CDATA[hello]]></tag>"), 337 elem = ET.XML(SAMPLE_XML) 351 e1 = ET.XML("<tag>hello<foo/></tag>") 491 element = ET.XML("<html><body>text</body></html>") 702 elem = ET.XML(SAMPLE_XML) 720 elem = ET.XML("<html><body>text</body></html>") [all …]
|
/external/rust/crates/xml-rs/ |
D | design.md | 4 * [x] Parsing XML 1.0 documents and returning a stream of events 9 * Missing XML features 21 * [x] Writing basic XML 1.0 documents in UTF-8 22 * [x] Writing XML 1.0 documents with namespace support 25 * [ ] Writing XML document with embedded DTDs and DTD references
|
/external/python/cpython3/Lib/test/ |
D | test_xml_etree.py | 284 self.assertEqual(ET.XML, ET.fromstring) 317 elem = ET.XML("<body><tag/></body>") 361 self.serialize_check(ET.XML("<tag>hello</tag>"), 363 self.serialize_check(ET.XML("<tag>hello</tag>"), 365 self.serialize_check(ET.XML("<tag><![CDATA[hello]]></tag>"), 384 elem = ET.XML(SAMPLE_XML) 398 e1 = ET.XML("<tag>hello<foo/></tag>") 528 element = ET.XML("<html><body>text</body></html>") 798 elem = ET.XML(SAMPLE_XML) 816 elem = ET.XML("<html><body>text</body></html>") [all …]
|
/external/parameter-framework/upstream/tools/xmlGenerator/ |
D | README.md | 1 # XML Generator 4 (referred to as "Extended Domain Description") into XML parameter-framework 19 - Nearly twice as compact as it's equivalent in XML 26 - it is not supported natively by the PFW. It needs to be compiled into XML. 187 ## XML Generation 190 corresponding XML file. 197 It prints the resulting XML on the standard output. Its syntax is: 214 - The initial settings file is an XML file containing a single 217 - Domain files are XML files, each containing a single `<ConfigurableDomain>` 222 containing the XML Schemas in the context of the XML generation only (see the [all …]
|
/external/libabigail/doc/manuals/ |
D | abilint.rst | 5 abilint parses the native XML representation of an ABI as emitted by 6 :doc:`abidw`. Once it has parsed the XML representation of the ABI, 8 it back to an XML form, to standard output. If that read-write 9 operation succeeds chances are the input XML ABI representation is 16 in-memory model for its ABI, and serialize that model back into XML to 55 For XML inputs, perform a text diff between the input and the 57 the handling of the XML format by the underlying Libabigail library. 91 Expect the input XML to represent a single translation unit.
|
/external/tagsoup/ |
D | README | 6 Java that, instead of parsing well-formed or valid XML, parses HTML as 10 providing a SAX interface, it allows standard XML tools to be applied 13 XML that is a close approximation to XHTML. 55 + --standalone and --version allow control of the XML 56 declaration that is output. (Note that TagSoup's XML output is 63 standard character entities from the [4]2007-12-14 draft of XML 80 as such, rather than in XML style as checked="checked". 94 recommend, but it is part of the Java XML platform), you can create a 99 this will cause all JAXP-based XML parsing to go through TagSoup, which 100 is a Bad Thing if your application also reads XML documents. [all …]
|
/external/libxml2/os400/ |
D | xmlcatalog.cmd | 9 CMD PROMPT('XML/SGML catalog tool') 16 PROMPT('XML/SGML catalog file') 18 /* Catalog kind: XML/SGML. */ 21 EXPR(*YES) RSTD(*YES) DFT(*XML) + 22 SPCVAL((*XML '') (*SGML '--sgml')) + 33 /* Convert SGML to XML catalog. */ 38 PROMPT('Convert SGML to XML catalog')
|
/external/libxml2/os400/libxmlrpg/ |
D | c14n.rpgle | 1 * Summary: Provide Canonical XML and Exclusive XML Canonicalization 4 * "Canonical XML" implementation 9 * "Exclusive XML Canonicalization" implementation 28 * XML Canonicazation 31 * Exclusive XML Canonicazation 34 * Canonical form of an XML document could be created if and only if
|
12345678910>>...30