/external/apache-xml/src/main/java/org/apache/xml/utils/res/ |
XResources_zh_TW.java | 21 package org.apache.xml.utils.res;
|
/external/chromium/chrome/browser/autofill/ |
autofill_xml_parser_unittest.cc | 16 // An XML string representing a basic query response. 17 std::string xml = "<autofillqueryresponse>" local 33 parser.Parse(xml.c_str(), xml.length(), true); 50 std::string xml = "<autofillqueryresponse uploadrequired=\"true\">" local 58 parser->Parse(xml.c_str(), xml.length(), true); 66 xml = "<autofillqueryresponse uploadrequired=\"false\">" 73 parser->Parse(xml.c_str(), xml.length(), true) 104 std::string xml = "<autofillqueryresponse>" local 163 std::string xml = "<autofillqueryresponse>" local 213 std::string xml = "<autofilluploadresponse positiveuploadrate=\\"0.5\\" " local 227 std::string xml = "<autofilluploadresponse positiveuploadrate=\\"\\" " local [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/net/ |
unittestresults.py | 30 import xml.dom.minidom namespace 41 dom = xml.dom.minidom.parseString(string) 49 except xml.parsers.expat.ExpatError, e: 50 _log.error("XML error %s parsing unit test output" % str(e))
|
/external/chromium_org/third_party/libjingle/source/talk/xmpp/ |
mucroomuniquehangoutidtask.cc | 19 XmlElement* xml = new XmlElement(QN_MUC_UNIQUE_QUERY, false); local 20 xml->SetAttr(QN_HANGOUT_ID, STR_TRUE); 21 return xml;
|
/external/chromium_org/v8/tools/testrunner/local/ |
junit_output.py | 29 import xml.etree.ElementTree as xml namespace 34 self.root = xml.Element("testsuite") 38 testCaseElement = xml.Element("testcase") 42 failureElement = xml.Element("failure") 48 xml.ElementTree(self.root).write(file, "UTF-8")
|
/frameworks/webview/chromium/tools/ |
generate_local_manifest.py | 15 import xml.etree.ElementTree as ET namespace 41 method='xml') 51 manifest_filename = 'default.xml' 58 '.repo/local_manifest.xml')
|
/libcore/luni/src/main/java/javax/xml/namespace/ |
NamespaceContext.java | 20 package javax.xml.namespace; 25 * <p>Interface for read only XML Namespace context processing.</p> 27 * <p>An XML Namespace has the properties:</p> 65 * @see javax.xml.XMLConstants javax.XMLConstants for declarations of common XML values 66 * @see <a href="http://www.w3.org/TR/xmlschema-2/#QName">XML Schema Part2: Datatypes</a> 67 * @see <a href="http://www.w3.org/TR/REC-xml-names/#ns-qualnames">Namespaces in XML</a> 68 * @see <a href="http://www.w3.org/XML/xml-names-19990114-errata">Namespaces in XML Errata</a [all...] |
/libcore/luni/src/main/java/javax/xml/transform/ |
ErrorListener.java | 20 package javax.xml.transform; 25 * implementation with the {@link javax.xml.transform.Transformer}. The 44 * <p><code>Transformer</code>s may use this mechanism to report XML parsing 52 * <p>{@link javax.xml.transform.Transformer} can use this method to report 63 * @throws javax.xml.transform.TransformerException if the application 66 * @see javax.xml.transform.TransformerException 82 * @throws javax.xml.transform.TransformerException if the application 85 * @see javax.xml.transform.TransformerException 102 * @throws javax.xml.transform.TransformerException if the application 105 * @see javax.xml.transform.TransformerExceptio [all...] |
Source.java | 20 package javax.xml.transform; 24 * needed to act as source input (XML source or transformation instructions).
|
Templates.java | 20 package javax.xml.transform; 48 * {@link javax.xml.transform.Transformer#setOutputProperties}.
|
/libcore/luni/src/main/java/javax/xml/transform/dom/ |
DOMLocator.java | 20 package javax.xml.transform.dom; 22 import javax.xml.transform.SourceLocator; 29 * error must downcast the {@link javax.xml.transform.SourceLocator} 30 * object returned by an exception. A {@link javax.xml.transform.Transformer}
|
/libcore/luni/src/main/java/javax/xml/validation/ |
Schema.java | 20 package javax.xml.validation; 27 * enforced against an XML document. 57 * @see <a href="http://www.w3.org/TR/xmlschema-1/">XML Schema Part 1: Structures</a> 58 * @see <a href="http://www.w3.org/TR/xml11/">Extensible Markup Language (XML) 1.1</a> 59 * @see <a href="http://www.w3.org/TR/REC-xml">Extensible Markup Language (XML) 1.0 (Second Edition)</a>
|
/libcore/luni/src/main/java/org/xml/sax/ |
DTDHandler.java | 6 package org.xml.sax; 26 * the XML recommendation <em>requires</em> processors to report: 34 * (If the {@link org.xml.sax.ext.LexicalHandler LexicalHandler} is 48 * @see org.xml.sax.XMLReader#setDTDHandler 75 * @exception org.xml.sax.SAXException Any SAX exception, possibly 78 * @see org.xml.sax.Attributes 99 * @exception org.xml.sax.SAXException Any SAX exception, possibly 107 * @see org.xml.sax.Attributes
|
ErrorHandler.java | 6 package org.xml.sax; 21 * instance with the XML reader using the 22 * {@link org.xml.sax.XMLReader#setErrorHandler setErrorHandler} 27 * register an ErrorHandler, XML parsing errors will go unreported, 32 * <p>For XML processing errors, a SAX driver must use this interface 39 * Also parsers may throw appropriate exceptions for non-XML errors. 46 * @see org.xml.sax.XMLReader#setErrorHandler 47 * @see org.xml.sax.SAXParseException 56 * are not errors or fatal errors as defined by the XML 64 * <p>Filters may use this method to report other, non-XML warning [all...] |
XMLFilter.java | 7 package org.xml.sax; 11 * Interface for an XML filter. 20 * <p>An XML filter is like an XML reader, except that it obtains its 21 * events from another XML reader rather than a primary source like 22 * an XML document or database. Filters can modify a stream of 26 * for creating SAX2 filters, by passing on all {@link org.xml.sax.EntityResolver 27 * EntityResolver}, {@link org.xml.sax.DTDHandler DTDHandler}, 28 * {@link org.xml.sax.ContentHandler ContentHandler} and {@link org.xml.sax.ErrorHandle [all...] |
/libcore/luni/src/main/java/org/xml/sax/ext/ |
Attributes2.java | 6 package org.xml.sax.ext; 8 import org.xml.sax.Attributes; 15 * provided in {@link org.xml.sax.ContentHandler#startElement 17 * and the <em>http://xml.org/sax/features/use-attributes2</em> 61 * @param qName The XML qualified (prefixed) name. 95 * @return true if the value was found in the XML text, 114 * @return true if the value was found in the XML text, 125 * @param qName The XML qualified (prefixed) name. 126 * @return true if the value was found in the XML text,
|
EntityResolver2.java | 6 package org.xml.sax.ext; 9 import org.xml.sax.EntityResolver; 10 import org.xml.sax.InputSource; 11 import org.xml.sax.SAXException; 12 import org.xml.sax.XMLReader; 33 * <em>http://xml.org/sax/features/use-entity-resolver2</em> feature flag 55 * @see org.xml.sax.XMLReader#setEntityResolver 103 * interoperating with XML processors that would always require 145 >OASIS XML Catalogs</a> specification.</p> 149 * being included because of a reference in the XML text [all...] |
Locator2.java | 6 package org.xml.sax.ext; 8 import org.xml.sax.Locator; 15 * provided in {@link org.xml.sax.ContentHandler#setDocumentLocator 18 * <em>http://xml.org/sax/features/use-locator2</em> feature 36 * Returns the version of XML used for the entity. This will 38 * <em><?xml version='...' ...?></em> declaration, 41 * @return Identifier for the XML version being used to interpret 51 * was an <em><?xml ...encoding='...'?></em> declaration at 56 * <p>When an {@link org.xml.sax.InputSource InputSource} is used
|
/libcore/luni/src/main/java/org/xml/sax/helpers/ |
ParserFactory.java | 6 package org.xml.sax.helpers; 8 import org.xml.sax.Parser; 22 * SAX1 {@link org.xml.sax.Parser Parser} class. SAX2 applications should use 23 * {@link org.xml.sax.helpers.XMLReaderFactory XMLReaderFactory} instead.</p> 27 * specifically for Java XML application writers. SAX applications 30 * `org.xml.sax.parser' system property or on a string containing the class 33 * <p>Note that the application still requires an XML parser that 37 * {@link org.xml.sax.Parser Parser} 56 * Create a new SAX parser using the `org.xml.sax.parser' system property. 59 * {@link org.xml.sax.Parser Parser} interface.</p [all...] |
/libcore/luni/src/test/java/libcore/xml/ |
KxmlPullParserDtdTest.java | 17 package libcore.xml;
|
/prebuilts/tools/common/asm-tools/ |
asm-xml-4.0.jar | |
/external/apache-xml/src/main/java/org/apache/xml/dtm/ |
DTMWSFilter.java | 21 package org.apache.xml.dtm;
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
DTMNodeListBase.java | 21 package org.apache.xml.dtm.ref;
|
SecuritySupport12.java | 22 package org.apache.xml.dtm.ref;
|
/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
|