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

1 2 3 4 5 6 7

  /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:
  /external/chromium-trace/catapult/third_party/gsutil/gslib/
cs_api_map.py 25 XML = 'XML'
53 ApiSelector.XML: BotoTranslation,
57 ApiSelector.XML: BotoTranslation
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherFiles.java 15 private static final String XML = ".xml";
33 SHARED_PREFERENCES_KEY + XML,
34 WALLPAPER_CROP_PREFERENCES_KEY + XML,
37 MANAGED_USER_PREFERENCES_KEY + 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/chromium-trace/catapult/third_party/beautifulsoup4/bs4/builder/
__init__.py 21 XML = 'xml'
  /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);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/detail/
global_typedef.hpp 39 enum output_format { INV_OF, CLF /* compiler log format */, XML /* 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());
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/bmfont/
BitmapFontWriter.java 44 /** AngelCodeFont XML format */
45 XML;
51 /** Sets the AngelCodeFont output format for subsequent writes; can be text (for LibGDX) or XML (for other engines, like
127 if (BitmapFontWriter.getOutputFormat() == OutputFormat.XML)
162 boolean xml = fmt == OutputFormat.XML;
166 if (xml) {
169 String xmlOpen = xml ? "\t<" : "";
170 String xmlCloseSelf = xml ? "/>" : "";
171 String xmlTab = xml ? "\t" : "";
    [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...]
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
DeqpTestRunner.java 289 + entry.getKey().getId(), LogDataType.XML, source);
    [all...]
  /external/clang/tools/c-index-test/
c-index-test.c 284 const char *CommentsSchemaArg = "-comments-xml-schema=";
580 printf(" CommentXMLInvalid [not well-formed XML: %s]", Error->message);
590 printf(" CommentXMLInvalid [not vaild XML: %s]", Error->message);
630 CXString XML;
631 XML = clang_FullComment_getAsXML(Comment);
632 PrintCXStringWithPrefix("FullCommentAsXML", XML);
633 ValidateCommentXML(clang_getCString(XML), CommentSchemaFile);
634 clang_disposeString(XML);
    [all...]
  /external/deqp/android/cts/runner/src/com/drawelements/deqp/runner/
DeqpTestRunner.java 366 + entry.getKey().getId(), LogDataType.XML, source);
    [all...]
  /external/robolectric/v1/lib/main/
json-20080701.jar 
  /external/robolectric/v3/runtime/
json-20080701.jar 

Completed in 1522 milliseconds

1 2 3 4 5 6 7