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

1 2 3

  /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_org/content/child/
site_isolation_policy.h 35 // 0:HTML, 1:XML, 2:JSON, 3:Plain, 4:Others
61 XML = 1,
112 // response. For example, this returns the same value for all text/xml mime
113 // type families such as application/xml, application/rss+xml.
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/ext/
Locator2ImplTest.java 17 package tests.api.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/fonttools/Lib/fontTools/ttLib/tables/
S_V_G_.py 6 import xml.etree.cElementTree as ET namespace
8 import xml.etree.ElementTree as ET namespace
13 Compiles/decompiles version 0 and 1 SVG tables from/to XML.
21 The XML format is:
56 XML = ET.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...]
  /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/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/
checker.py 47 from checkers.xml import XMLChecker
391 XML = 8
458 return FileType.XML
482 elif file_type == FileType.XML:
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
DeqpTestRunner.java 241 + mCurrentTestId.getTestName(), LogDataType.XML, source);
294 + mCurrentTestId.getTestName(), LogDataType.XML, source);
501 + mCurrentTestId.getTestName(), LogDataType.XML, source);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_xml_etree.py 0 # xml.etree test. This file contains enough tests to make sure that
11 # Don't re-import "xml.etree.ElementTree" module in the docstring,
20 from xml.etree import ElementTree as ET
22 SIMPLE_XMLFILE = findfile("simple.xml", subdir="xmltestdata")
23 SIMPLE_NS_XMLFILE = findfile("simple-ns.xml", subdir="xmltestdata")
60 >>> from xml.etree import ElementTree
61 >>> from xml.etree import ElementInclude
62 >>> from xml.etree import ElementPath
184 >>> assert ET.XML == ET.fromstring
193 >>> elem = ET.XML("<body><tag/></body>"
    [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/test/
test_xml_etree.py 0 # xml.etree test. This file contains enough tests to make sure that
11 # Don't re-import "xml.etree.ElementTree" module in the docstring,
20 from xml.etree import ElementTree as ET
22 SIMPLE_XMLFILE = findfile("simple.xml", subdir="xmltestdata")
23 SIMPLE_NS_XMLFILE = findfile("simple-ns.xml", subdir="xmltestdata")
60 >>> from xml.etree import ElementTree
61 >>> from xml.etree import ElementInclude
62 >>> from xml.etree import ElementPath
184 >>> assert ET.XML == ET.fromstring
193 >>> elem = ET.XML("<body><tag/></body>"
    [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.XMLReader;
40 import org.xml.sax.ext.DefaultHandler2;
41 import org.xml.sax.helpers.DefaultHandler
50 StringBuilder xml = new StringBuilder(); local
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/testlibs/
json-20090211.jar 
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
ConsoleModel.js 363 XML: "xml",
  /external/clang/tools/c-index-test/
c-index-test.c 271 const char *CommentsSchemaArg = "-comments-xml-schema=";
567 printf(" CommentXMLInvalid [not well-formed XML: %s]", Error->message);
577 printf(" CommentXMLInvalid [not vaild XML: %s]", Error->message);
617 CXString XML;
618 XML = clang_FullComment_getAsXML(Comment);
619 PrintCXStringWithPrefix("FullCommentAsXML", XML);
620 ValidateCommentXML(clang_getCString(XML), CommentSchemaFile);
621 clang_disposeString(XML);
    [all...]
  /external/robolectric/lib/main/
json-20080701.jar 
  /prebuilts/sdk/tools/lib/
common.jar 
  /prebuilts/devtools/tools/lib/
layoutlib-api.jar 
  /prebuilts/gradle-plugin/com/android/tools/layoutlib/layoutlib-api/22.2.0/
layoutlib-api-22.2.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/layoutlib/layoutlib-api/22.4.0/
layoutlib-api-22.4.0.jar 

Completed in 8999 milliseconds

1 2 3