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

1 2 3 4 5 6 7 8 9

  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_6/Regress/
regress-301574.js 49 var xml = XML('<xml/>');
56 reportCompare(expect, actual, summary + ': XML()');
60 var xml = XML('<p>text</p>');
  /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
  /libcore/luni/src/test/java/tests/api/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/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
xml.rb 8 lexer grammar XML;
56 {say("XML declaration")}
137 lexer = XML::Lexer.new( <<-'END'.fixed_indent( 0 ) )
138 <?xml version='1.0'?>
164 XML declaration
  /external/dbus/test/data/equiv-config-files/entities/
entities-1.conf 1 <!-- This config file contains XML entities -->
  /external/dbus/test/data/valid-config-files/
entities.conf 1 <!-- This config file contains XML entities -->
  /external/webkit/LayoutTests/fast/dom/DOMImplementation/script-tests/
createDocument-namespace-err.js 67 { args: [null, "a:b:c"], code: 14, message: "valid XML name, invalid QName" },
68 { args: ["http://example.com/", "a:b:c"], code: 14, message: "valid XML name, invalid QName" },
69 { args: [null, "a::c"], code: 14, message: "valid XML name, invalid QName" },
70 { args: ["http://example.com/", "a::c"], code: 14, message: "valid XML name, invalid QName" },
71 { args: ["http://example.com/", "a:0"], code: 5, message: "valid XML name, not a valid QName" },
72 { args: ["http://example.com/", "0:a"], code: 5, message: "0 at start makes it not a valid XML name" },
77 "NCName (but still a valid XML name, hence not INVALID_CHARACTER_ERR)" },
82 "as this is both an invalid XML name and an invalid QName)" },
85 { args: ["http://example.com/", "xml:test"], code: 14, message: "binding xml prefix wrong" }
    [all...]
  /external/webkit/LayoutTests/fast/encoding/resources/
invalid-xml.js 1 // test 70: XML encoding test
2 // q.v. XML 1.0, section 4.3.3 Character Encoding in Entities
15 "invalid-xml-utf8.xml",
16 "invalid-xml-utf16.xml",
17 "invalid-xml-shift-jis.xml",
18 "invalid-xml-x-mac-thai.xml",
    [all...]
  /sdk/common/src/com/android/resources/
ResourceFolderType.java 35 XML(AndroidConstants.FD_RES_XML);
ResourceType.java 45 XML("xml", "XML"), //$NON-NLS-1$
61 * Returns the resource type name, as used by XML files.
75 * Returns the enum by its name as it appears in the XML or the R class.
84 // if there are alternate Xml Names, we test those too
FolderTypeRelationship.java 66 add(ResourceType.XML, ResourceFolderType.XML);
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
domimplementationregistry06.js 42 checkFeature("XML", null);
73 If the implementation supports "XML", DOMImplementationRegistry.getDOMImplementation("xMl 3.0 cOrE") should
74 return a DOMImplementation where hasFeature("XML", "3.0"), and hasFeature("Core", null) returns true.
91 domImpl = domImplRegistry.getDOMImplementation("xMl 3.0 cOrE");
93 hasFeature = domImpl.hasFeature("XML","3.0");
documentrenamenode07.js 79 to one whose namespaceURI is http://www.w3.org/XML/1998/namespace and name is xml:dom.
116 attr = newDoc.createAttributeNS("http://www.w3.org/XML/1998/namespace","xml:lang");
117 renamedNode = newDoc.renameNode(attr,"http://www.w3.org/XML/1998/namespace","xml:dom");
122 assertEquals("documentrenamenode07_nodeName","xml:dom",nodeName);
123 assertEquals("documentrenamenode07_namespaceURI","http://www.w3.org/XML/1998/namespace",namespaceURI);
domimplementationregistry17.js 42 checkFeature("XML", null);
73 If the implementation supports "XML", DOMImplementationRegistry.getDOMImplementationList("xMl 3.0 cOrE") should
74 return a list of DOMImplementation where hasFeature("XML", "3.0"), and hasFeature("Core", null) returns true.
93 domImplList = domImplRegistry.getDOMImplementationList("xMl 3.0 cOrE");
102 hasFeature = domImpl.hasFeature("XML","3.0");
hasFeature01.js 42 checkFeature("XML", null);
73 DOMImplementation.hasFeature("XML", "3.0") should return true.
84 state = impl.hasFeature("xMl","3.0");
hasFeature04.js 42 checkFeature("XML", null);
73 DOMImplementation.hasFeature("XML", "3.0") should return true.
84 state = impl.hasFeature("+xMl","3.0");
  /external/protobuf/gtest/test/
gtest_xml_output_unittest.py 39 from xml.dom import minidom, Node
46 GTEST_DEFAULT_OUTPUT_FILE = "test_detail.xml"
56 EXPECTED_NON_EMPTY_XML = """<?xml version="1.0" encoding="UTF-8"?>
82 <failure message="Failed&#x0A;XML output: &lt;?xml encoding=&quot;utf-8&quot;&gt;&lt;top&gt;&lt;![CDATA[cdata text]]&gt;&lt;/top&gt;" type=""><![CDATA[gtest_xml_output_unittest_.cc:*
84 XML output: <?xml encoding="utf-8"><top><![CDATA[cdata text]]>]]&gt;<![CDATA[</top>%(stack)s]]></failure>
111 EXPECTED_EMPTY_XML = """<?xml version="1.0" encoding="UTF-8"?>
118 Unit test for Google Test's XML output functionality.
123 Runs a test program that generates a non-empty XML output, an
    [all...]
  /external/webkit/Source/WebCore/loader/
TextResourceDecoder.h 72 enum ContentType { PlainText, HTML, XML, CSS }; // PlainText only checks for BOM.
92 bool m_useLenientXMLDecoding; // Don't stop on XML decoding errors.
  /external/valgrind/main/none/tests/
cmdline1.stdout.exp 31 --xml=yes emit error output in XML (some tools only)
32 --xml-fd=<number> XML output to file descriptor
33 --xml-file=<file> XML output to <file>
34 --xml-socket=ipaddr:port XML output to socket ipaddr:port
35 --xml-user-comment=STR copy STR verbatim into XML outpu
    [all...]
  /cts/build/
test_host_java_library.mk 17 # package XML needed by CTS.
22 cts_library_xml := $(CTS_TESTCASES_OUT)/$(LOCAL_MODULE).xml
  /external/webkit/LayoutTests/fast/dom/Node/script-tests/
normalize-with-cdata.js 1 description('Test of normalize on an XML document with CDATA.');
12 'application/xml');
  /cts/
CtsTestCaseList.mk 45 # directory but do not require an associated test package XML.
53 # Test packages that require an associated test package XML.
  /external/webkit/LayoutTests/dom/html/level1/core/
documentgetdoctypenodtd.js 79 The "getDoctype()" method returns null for XML documents
81 Retrieve the XML document without a DTD and invoke the
hc_documentgetimplementation.js 81 Otherwise, DOMImplementation.hasFeature("XML", "1.0")
102 xmlstate = docImpl.hasFeature("XML","1.0");
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLBodyElement09.js 78 Checks that Node.isSupported("xhTmL", null) returns true if hasFeature("XML", null) is true.
101 hasXML = body.isSupported("XML",version);

Completed in 5349 milliseconds

1 2 3 4 5 6 7 8 9