HomeSort by relevance Sort by last modified time
    Searched defs:XML (Results 1 - 25 of 215) sorted by null

1 2 3 4 5 6 7 8 9

  /external/apache-xml/src/main/java/org/apache/xml/serializer/
Method.java 21 package org.apache.xml.serializer;
29 * <li>XML
54 * The output method type for XML documents: <tt>xml</tt>.
56 public static final String XML = "xml";
78 * XML or HTML type (depending on the first tag in the output being html or
  /external/google-tv-pairing-protocol/java/src/com/google/polo/wire/
WireFormat.java 22 import com.google.polo.wire.xml.XmlWireAdapter;
30 XML; // XML, implemented by XmlWireInterface
44 case XML:
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherFiles.java 15 private static final String XML = ".xml";
28 SHARED_PREFERENCES_KEY + XML,
30 MANAGED_USER_PREFERENCES_KEY + XML,
31 DEVICE_PREFERENCES_KEY + XML,
  /tools/tradefederation/core/src/com/android/tradefed/testtype/
JacocoCodeCoverageReportFormat.java 24 XML("<xml destfile=\"%s\" />", LogDataType.JACOCO_XML),
33 * @param antTagFormat The ant tag to be passed to build.xml
50 * Returns the ant tag format used to configure build.xml
  /external/testng/src/test/java/test/reports/
FailedReporterTest.java 3 import javax.xml.parsers.ParserConfigurationException;
11 import org.testng.xml.Parser;
12 import org.testng.xml.XmlClass;
13 import org.testng.xml.XmlSuite;
14 import org.testng.xml.XmlTest;
15 import org.xml.sax.SAXException;
26 private static final String XML = "<suite name=\"Suite\">\n"
42 new Parser(new ByteArrayInputStream(XML.getBytes())).parse();
  /external/fonttools/Lib/fontTools/ttLib/tables/
S_V_G_.py 6 import xml.etree.cElementTree as ET
8 import xml.etree.ElementTree as ET
13 Compiles/decompiles version 0 and 1 SVG tables from/to XML.
21 The XML format is:
56 XML = ET.XML
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/ext/
Locator2ImplTest.java 17 package org.apache.harmony.tests.org.xml.sax.ext;
21 import org.xml.sax.Locator;
22 import org.xml.sax.ext.Locator2Impl;
23 import org.xml.sax.helpers.LocatorImpl;
37 public static final String XML = "1.0";
60 inner.setXMLVersion(XML);
71 assertEquals(XML, outer.getXMLVersion());
96 l.setXMLVersion(XML);
97 assertEquals(XML, l.getXMLVersion());
  /external/google-tv-pairing-protocol/java/src/com/google/polo/json/
JSONML.java 31 * This provides static methods to convert an XML text into a JSONArray or
32 * JSONObject, and to covert a JSONArray or JSONObject into an XML text using
40 * Parse XML values and store them in a JSONArray.
67 if (token == XML.LT) {
70 if (token == XML.SLASH) {
80 if (x.nextToken() != XML.GT) {
84 } else if (token == XML.BANG) {
109 } else if (token == XML.LT) {
111 } else if (token == XML.GT) {
116 } else if (token == XML.QUEST)
    [all...]
XML.java 31 * This provides static methods to convert an XML text into a JSONObject,
32 * and to covert a JSONObject into an XML text.
36 public class XML {
66 * Replace special characters with XML escapes:
285 * Convert a well-formed (but not necessarily valid) XML string into a
287 * because JSON is a data format and XML is a document format. XML uses
295 * @return A JSONObject containing the structured data from the XML string.
309 * Convert a JSONObject into a well-formed, element-normal XML string.
320 * Convert a JSONObject into a well-formed, element-normal XML string
    [all...]
Test.java 76 j = XML.toJSONObject("<![CDATA[This is a collection of test patterns and examples for org.json.]]> Ignore the stuff past the end. ");
82 System.out.println(XML.toString(j));
85 j = XML.toJSONObject(s);
99 s = "<div id=\"demo\" class=\"JSONML\"><p>JSONML is a transformation between <b>JSON</b> and <b>XML</b> that preserves ordering of document features.</p><p>JSONML can work with JSON arrays or JSON objects.</p><p>Three<br/>little<br/>words</p></div>";
111 j = XML.toJSONObject(s);
203 System.out.println(XML.toString(j));
234 System.out.println(XML.toString(j));
245 s = "<xml one = 1 two=' \"2\" '><five></five>First \u0009&lt;content&gt;<five></five> This is \"content\". <three> 3 </three>JSON does not preserve the sequencing of elements and contents.<three> III </three> <three> T H R E E</three><four/>Content text is an implied structure in XML. <six content=\"6\"/>JSON does not have implied structure:<seven>7</seven>everything is explicit.<![CDATA[CDATA blocks<are><supported>!]]></xml>";
    [all...]
  /external/testng/src/test/java/test/methodinterceptors/
MethodInterceptorTest.java 8 import org.testng.xml.Parser;
9 import org.testng.xml.XmlSuite;
10 import org.xml.sax.SAXException;
20 import javax.xml.parsers.ParserConfigurationException;
24 private String XML =
98 bw.write(XML);
  /tools/tradefederation/core/prod-tests/src/com/android/framework/tests/
FrameworkPerfTest.java 57 private static final String XML = "frameworkfg_perf_xml";
89 .put("OpenXmlRes",XML)
90 .put("ParseXmlRes",XML)
91 .put("ReadXmlAttrs",XML)
92 .put("ParseLargeXmlRes",XML)
  /external/clang/tools/libclang/
CXComment.cpp 362 // Converting comments to XML.
404 SmallString<1024> XML;
406 ->convertCommentToXML(FC, XML, cxtu::getASTUnit(TU)->getASTContext());
407 return cxstring::createDup(XML.str());
  /tools/tradefederation/core/src/com/android/tradefed/result/
LogDataType.java 24 XML("xml", "text/xml", false, true),
53 JACOCO_XML("xml", "text/xml", false, true), // JaCoCo coverage report in XML format
  /tools/tradefederation/core/tests/src/com/android/tradefed/testtype/
CodeCoverageTestBaseTest.java 153 XML(LogDataType.JACOCO_XML),
443 File fakeHtmlReport = new File("/some/fake/xml/report/");
444 File fakeXmlReport = new File("/some/fake/xml/report.xml");
450 doReturn(ImmutableList.of(FakeReportFormat.XML, FakeReportFormat.HTML))
458 .generateCoverageReport(anyCollection(), eq(FakeReportFormat.XML));
469 verify(coverageTest).generateCoverageReport(anyCollection(), eq(FakeReportFormat.XML));
470 verify(coverageTest).doLogReport(anyString(), eq(FakeReportFormat.XML.getLogDataType()),
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/etree/
ElementTree.py 5 # light-weight XML support for Python 2.3 and later.
71 "XML",
96 # structure, and convert it from and to XML.
536 # element that will be serialized as an XML comment by the standard
553 # that will be serialized as an XML processing instruction by the standard
599 # standard XML.
603 # tree is initialized with the contents of this XML file.
634 # Loads an external XML document into this element tree.
774 # Writes the element tree to a file, as XML.
780 # @keyparam xml_declaration Controls if an XML declaration should
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/etree/
ElementTree.py 5 # light-weight XML support for Python 2.3 and later.
71 "XML",
96 # structure, and convert it from and to XML.
536 # element that will be serialized as an XML comment by the standard
553 # that will be serialized as an XML processing instruction by the standard
599 # standard XML.
603 # tree is initialized with the contents of this XML file.
634 # Loads an external XML document into this element tree.
770 # Writes the element tree to a file, as XML.
776 # @keyparam method Optional output method ("xml", "html", "text" or
    [all...]
  /external/python/cpython2/Lib/xml/etree/
ElementTree.py 5 # light-weight XML support for Python 2.3 and later.
71 "XML",
96 # structure, and convert it from and to XML.
536 # element that will be serialized as an XML comment by the standard
553 # that will be serialized as an XML processing instruction by the standard
599 # standard XML.
603 # tree is initialized with the contents of this XML file.
634 # Loads an external XML document into this element tree.
774 # Writes the element tree to a file, as XML.
780 # @keyparam xml_declaration Controls if an XML declaration shoul
    [all...]
  /external/python/cpython3/Lib/xml/etree/
ElementTree.py 1 """Lightweight XML support for Python.
3 XML is an inherently hierarchical data format, and the most natural way to
6 1. ElementTree represents the whole XML document as a tree and
11 usually done on the ElementTree level. Interactions with a single XML element
32 and convert it to and from XML.
87 "XML", "XMLID",
105 """An error when parsing an XML document.
124 """An XML element.
465 serializes as an XML comment.
479 serializes as an XML comment
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/xml/etree/
ElementTree.py 5 # light-weight XML support for Python 2.3 and later.
71 "XML",
96 # structure, and convert it from and to XML.
536 # element that will be serialized as an XML comment by the standard
553 # that will be serialized as an XML processing instruction by the standard
599 # standard XML.
603 # tree is initialized with the contents of this XML file.
634 # Loads an external XML document into this element tree.
774 # Writes the element tree to a file, as XML.
780 # @keyparam xml_declaration Controls if an XML declaration shoul
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/xml/etree/
ElementTree.py 5 # light-weight XML support for Python 2.3 and later.
71 "XML",
96 # structure, and convert it from and to XML.
536 # element that will be serialized as an XML comment by the standard
553 # that will be serialized as an XML processing instruction by the standard
599 # standard XML.
603 # tree is initialized with the contents of this XML file.
634 # Loads an external XML document into this element tree.
774 # Writes the element tree to a file, as XML.
780 # @keyparam xml_declaration Controls if an XML declaration shoul
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/etree/
ElementTree.py 5 # light-weight XML support for Python 2.3 and later.
71 "XML",
96 # structure, and convert it from and to XML.
536 # element that will be serialized as an XML comment by the standard
553 # that will be serialized as an XML processing instruction by the standard
599 # standard XML.
603 # tree is initialized with the contents of this XML file.
634 # Loads an external XML document into this element tree.
774 # Writes the element tree to a file, as XML.
780 # @keyparam xml_declaration Controls if an XML declaration shoul
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/etree/
ElementTree.py 5 # light-weight XML support for Python 2.3 and later.
71 "XML",
96 # structure, and convert it from and to XML.
536 # element that will be serialized as an XML comment by the standard
553 # that will be serialized as an XML processing instruction by the standard
599 # standard XML.
603 # tree is initialized with the contents of this XML file.
634 # Loads an external XML document into this element tree.
774 # Writes the element tree to a file, as XML.
780 # @keyparam xml_declaration Controls if an XML declaration shoul
    [all...]
  /libcore/luni/src/test/java/libcore/xml/
ExpatSaxParserTest.java 17 package libcore.xml;
33 import org.apache.harmony.xml.ExpatReader;
34 import org.xml.sax.Attributes;
35 import org.xml.sax.ContentHandler;
36 import org.xml.sax.InputSource;
37 import org.xml.sax.Locator;
38 import org.xml.sax.SAXException;
39 import org.xml.sax.SAXParseException;
40 import org.xml.sax.XMLReader;
41 import org.xml.sax.ext.DefaultHandler2
51 StringBuilder xml = new StringBuilder(); local
    [all...]
  /external/clang/tools/c-index-test/
c-index-test.c 288 const char *CommentsSchemaArg = "-comments-xml-schema=";
584 printf(" CommentXMLInvalid [not well-formed XML: %s]", Error->message);
594 printf(" CommentXMLInvalid [not vaild XML: %s]", Error->message);
634 CXString XML;
635 XML = clang_FullComment_getAsXML(Comment);
636 PrintCXStringWithPrefix("FullCommentAsXML", XML);
637 ValidateCommentXML(clang_getCString(XML), CommentSchemaFile);
638 clang_disposeString(XML);
    [all...]

Completed in 611 milliseconds

1 2 3 4 5 6 7 8 9