Home
last modified time | relevance | path

Searched refs:XML (Results 1 – 25 of 771) sorted by relevance

12345678910>>...31

/external/google-tv-pairing-protocol/java/src/com/google/polo/json/
DJSONML.java67 if (token == XML.LT) { in parse()
70 if (token == XML.SLASH) { in parse()
80 if (x.nextToken() != XML.GT) { in parse()
84 } else if (token == XML.BANG) { in parse()
109 } else if (token == XML.LT) { in parse()
111 } else if (token == XML.GT) { in parse()
116 } else if (token == XML.QUEST) { in parse()
164 if (token == XML.EQ) { in parse()
181 if (token == XML.SLASH) { in parse()
182 if (x.nextToken() != XML.GT) { in parse()
[all …]
DXMLTokener.java43 entity.put("amp", XML.AMP);
44 entity.put("apos", XML.APOS);
45 entity.put("gt", XML.GT);
46 entity.put("lt", XML.LT);
47 entity.put("quot", XML.QUOT);
102 return XML.LT; in nextContent()
164 return XML.LT; in nextMeta()
166 return XML.GT; in nextMeta()
168 return XML.SLASH; in nextMeta()
170 return XML.EQ; in nextMeta()
[all …]
DTest.java76 …j = XML.toJSONObject("<![CDATA[This is a collection of test patterns and examples for org.json.]]>… in main()
82 System.out.println(XML.toString(j)); in main()
85 j = XML.toJSONObject(s); in main()
111 j = XML.toJSONObject(s); in main()
203 System.out.println(XML.toString(j)); in main()
234 System.out.println(XML.toString(j)); in main()
246 j = XML.toJSONObject(s); in main()
248 System.out.println(XML.toString(j)); in main()
263 j = XML.toJSONObject(s); in main()
266 System.out.println(XML.toString(j)); in main()
[all …]
/external/ImageMagick/config/
DImageMagick.rc52 CODER.XML IMAGEMAGICK DISCARDABLE "..\\bin\\coder.xml"
53 COLORS.XML IMAGEMAGICK DISCARDABLE "..\\bin\\colors.xml"
54 CONFIGURE.XML IMAGEMAGICK DISCARDABLE "..\\bin\\configure.xml"
55 DELEGATES.XML IMAGEMAGICK DISCARDABLE "..\\bin\\delegates.xml"
56 ENGLISH.XML IMAGEMAGICK DISCARDABLE "..\\bin\\english.xml"
57 LOCALE.XML IMAGEMAGICK DISCARDABLE "..\\bin\\locale.xml"
58 LOG.XML IMAGEMAGICK DISCARDABLE "..\\bin\\log.xml"
59 MAGIC.XML IMAGEMAGICK DISCARDABLE "..\\bin\\magic.xml"
60 THRESHOLDS.XML IMAGEMAGICK DISCARDABLE "..\\bin\\thresholds.xml"
61 TYPE.XML IMAGEMAGICK DISCARDABLE "..\\bin\\type.xml"
[all …]
/external/python/cpython2/Doc/library/
Dxml.rst3 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 …]
Dxmlrpclib.rst1 :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 …]
Dxmllib.rst2 :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 …]
Dxml.etree.elementtree.rst1 :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 …]
Dsimplexmlrpcserver.rst1 :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 …]
Ddocxmlrpcserver.rst1 :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/python/cpython3/Doc/library/
Dxml.rst3 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 …]
Dxmlrpc.client.rst1 :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.
43 remote XML-RPC server. The required first argument is a URI (Uniform Resource
52 XML; the default behaviour is for ``None`` to raise a :exc:`TypeError`. This is
53 a commonly-used extension to the XML-RPC specification, but isn't supported by
68 the remote server as part of the connection process when invoking an XML-RPC
80 Types that are conformable (e.g. that can be marshalled through XML),
[all …]
Dxml.etree.elementtree.rst1 :mod:`xml.etree.ElementTree` --- The ElementTree XML API
14 for parsing and creating XML data.
34 XML tree and elements
37 XML is an inherently hierarchical data format, and the most natural way to
39 :class:`ElementTree` represents the whole XML document as a tree, and
42 on the :class:`ElementTree` level. Interactions with a single XML element
47 Parsing XML
50 We'll be using the following XML document as the sample data for this section:
88 :func:`fromstring` parses XML from a string directly into an :class:`Element`,
116 Not all elements of the XML input will end up as elements of the
[all …]
Dxmlrpc.server.rst1 :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,
120 Registers the XML-RPC introspection functions ``system.listMethods``,
[all …]
/external/libxml2/test/catalogs/
Dcatal3.sgml1 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"
Dwhitex.script2 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+
/external/tinyxml2/
Dreadme.md8 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/cpython3/Lib/test/
Dtest_xml_etree.py248 self.assertEqual(ET.XML, ET.fromstring)
281 elem = ET.XML("<body><tag/></body>")
322 self.serialize_check(ET.XML("<tag>hello</tag>"),
324 self.serialize_check(ET.XML("<tag>&#104;&#101;&#108;&#108;&#111;</tag>"),
326 self.serialize_check(ET.XML("<tag><![CDATA[hello]]></tag>"),
345 elem = ET.XML(SAMPLE_XML)
359 e1 = ET.XML("<tag>hello<foo/></tag>")
488 element = ET.XML("<html><body>text</body></html>")
713 elem = ET.XML(SAMPLE_XML)
731 elem = ET.XML("<html><body>text</body></html>")
[all …]
/external/libxml2/doc/html/
Dindex.sgml173 <ANCHOR id="XML-SCHEMAS-ANYATTR-SKIP-CAPS" href="libxml/libxml-schemasInternals.html#XML-SCHEMAS-AN…
174 <ANCHOR id="XML-SCHEMAS-ANYATTR-LAX-CAPS" href="libxml/libxml-schemasInternals.html#XML-SCHEMAS-ANY…
175 <ANCHOR id="XML-SCHEMAS-ANYATTR-STRICT-CAPS" href="libxml/libxml-schemasInternals.html#XML-SCHEMAS-…
180 <ANCHOR id="XML-SCHEMAS-TYPE-MIXED-CAPS" href="libxml/libxml-schemasInternals.html#XML-SCHEMAS-TYPE…
181 <ANCHOR id="XML-SCHEMAS-ELEM-NILLABLE-CAPS" href="libxml/libxml-schemasInternals.html#XML-SCHEMAS-E…
182 <ANCHOR id="XML-SCHEMAS-ELEM-GLOBAL-CAPS" href="libxml/libxml-schemasInternals.html#XML-SCHEMAS-ELE…
183 <ANCHOR id="XML-SCHEMAS-ELEM-DEFAULT-CAPS" href="libxml/libxml-schemasInternals.html#XML-SCHEMAS-EL…
184 <ANCHOR id="XML-SCHEMAS-ELEM-FIXED-CAPS" href="libxml/libxml-schemasInternals.html#XML-SCHEMAS-ELEM…
185 <ANCHOR id="XML-SCHEMAS-ELEM-ABSTRACT-CAPS" href="libxml/libxml-schemasInternals.html#XML-SCHEMAS-E…
186 <ANCHOR id="XML-SCHEMAS-ELEM-TOPLEVEL-CAPS" href="libxml/libxml-schemasInternals.html#XML-SCHEMAS-E…
[all …]
/external/libxml2/
Dlibxml.spec.in3 Summary: Library providing XML and HTML support
21 This library allows to manipulate XML files. It includes support
22 to read, modify and write XML and HTML files. There is DTDs support
32 Summary: Libraries, includes, etc. to develop XML and HTML applications
40 Libraries, include files, etc you can use to develop XML applications.
41 This library allows to manipulate XML files. It includes support
42 to read, modify and write XML and HTML files. There is DTDs support
71 supplied by the libxml2 library to manipulate XML files.
73 This library allows to manipulate XML files. It includes support
74 to read, modify and write XML and HTML files. There is DTDs support
[all …]
/external/tinyxml/
Dreadme.txt5 TinyXml is a simple, small, C++ XML parser that can be easily
10 In brief, TinyXml parses an XML document, and builds from that a
13 XML stands for "eXtensible Markup Language." It allows you to create
15 documents for browsers, XML allows you to define any kind of document
17 organizer application. XML is a very structured and convenient format.
19 all be replaced with XML. One parser for everything.
23 http://www.w3.org/TR/2004/REC-xml-20040204/</a>. An intro to XML
27 There are different ways to access and interact with XML data.
28 TinyXml uses a Document Object Model (DOM), meaning the XML data is parsed
30 written to disk or another output stream. You can also construct an XML document from
[all …]
/external/tagsoup/
DREADME6 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/parameter-framework/upstream/tools/xmlGenerator/
DREADME.md1 # 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/libxml2/os400/libxmlrpg/
Dc14n.rpgle1 * 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
/external/libxml2/os400/
Dxmlcatalog.cmd9 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')

12345678910>>...31