HomeSort by relevance Sort by last modified time
    Searched defs:xml (Results 151 - 175 of 580) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/components/policy/resources/
PRESUBMIT.py 10 import xml.dom.minidom namespace
78 root, 'tools', 'metrics', 'histograms', 'histograms.xml')
80 tree = xml.dom.minidom.parseString(f.read())
90 'to src/tools/metrics/histograms/histograms.xml. '
  /external/chromium_org/remoting/tools/
verify_resources.py 32 import xml.dom.minidom as minidom namespace
42 xml = minidom.parse(filename)
44 msgs_and_structs = xml.getElementsByTagName("message")
45 msgs_and_structs.extend(xml.getElementsByTagName("structure"))
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XSLImportRule.cpp 23 #include "core/xml/XSLImportRule.h"
100 FetchRequest request(ResourceRequest(fetcher->document()->completeURL(absHref)), FetchInitiatorTypeNames::xml); member in class:WebCore::FetchInitiatorTypeNames
  /external/chromium_org/tools/grit/grit/format/
android_xml.py 6 """Produces localized strings.xml files for Android.
10 strings.xml that is properly localized with the specified language.
15 <output filename="values-es/strings.xml" type="android" lang="es" />
27 <?xml version="1.0" encoding="utf-8"?>
33 which would be written to values-es/strings.xml and usable by the Android
62 import xml.sax.saxutils namespace
100 yield ('<?xml version="1.0" encoding="utf-8"?>\n'
138 # Replace < > & with &lt; &gt; &amp; to ensure we generate valid XML and
140 value = xml.sax.saxutils.escape(value, {"'": "\\'", '"': '\\"'})
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
XmlBox.java 13 String xml = ""; field in class:XmlBox
14 public static final String TYPE = "xml ";
21 return xml;
24 public void setXml(String xml) {
25 this.xml = xml;
30 return 4 + Utf8.utf8StringLengthInBytes(xml);
36 xml = IsoTypeReader.readString(content, content.remaining());
42 byteBuffer.put(Utf8.convert(xml));
48 "xml='" + xml + '\''
    [all...]
  /libcore/luni/src/main/java/javax/xml/
XMLConstants.java 20 package javax.xml;
23 * <p>Utility class to contain basic XML values as constants.</p>
27 * @see <a href="http://www.w3.org/TR/xml11/">Extensible Markup Language (XML) 1.1</a>
28 * @see <a href="http://www.w3.org/TR/REC-xml">Extensible Markup Language (XML) 1.0 (Second Edition)</a>
29 * @see <a href="http://www.w3.org/XML/xml-V10-2e-errata">XML 1.0 Second Edition Specification Errata</a>
30 * @see <a href="http://www.w3.org/TR/xml-names11/">Namespaces in XML 1.1</a
    [all...]
  /libcore/luni/src/main/java/javax/xml/transform/
OutputKeys.java 20 package javax.xml.transform;
40 * method = "xml" | "html" | "text" | <var>expanded name</var>.
47 * then {@link javax.xml.transform.Transformer#setOutputProperty}
48 * or {@link javax.xml.transform.Transformer#setOutputProperties} will
61 * <p>When the output method is "xml", the version value specifies the
62 * version of XML to be used for outputting the result tree. The default
63 * value for the xml output method is 1.0. When the output method is
65 * The default value for the xml output method is 4.0, which specifies
91 * omit-xml-declaration = "yes" | "no".
93 * <p><code>omit-xml-declaration</code> specifies whether the XSL
    [all...]
  /libcore/luni/src/main/java/javax/xml/transform/dom/
DOMResult.java 20 package javax.xml.transform.dom;
22 import javax.xml.transform.Result;
36 /** <p>If {@link javax.xml.transform.TransformerFactory#getFeature}
40 public static final String FEATURE = "http://javax.xml.transform.dom.DOMResult/feature";
DOMSource.java 20 package javax.xml.transform.dom;
22 import javax.xml.transform.Source;
32 * {@link javax.xml.parsers.DocumentBuilderFactory#setNamespaceAware(boolean awareness)}.</p>
51 /** If {@link javax.xml.transform.TransformerFactory#getFeature}
56 "http://javax.xml.transform.dom.DOMSource/feature";
63 * {@link javax.xml.parsers.DocumentBuilder#newDocument()}.</p>
65 * @see javax.xml.transform.Transformer#transform(Source xmlSource, Result outputTarget)
  /libcore/luni/src/main/java/javax/xml/transform/sax/
SAXResult.java 20 package javax.xml.transform.sax;
22 import javax.xml.transform.Result;
23 import org.xml.sax.ContentHandler;
24 import org.xml.sax.ext.LexicalHandler;
34 * If {@link javax.xml.transform.TransformerFactory#getFeature}
39 "http://javax.xml.transform.sax.SAXResult/feature";
48 * Create a SAXResult that targets a SAX2 {@link org.xml.sax.ContentHandler}.
57 * Set the target to be a SAX2 {@link org.xml.sax.ContentHandler}.
66 * Get the {@link org.xml.sax.ContentHandler} that is the Result.
75 * Set the SAX2 {@link org.xml.sax.ext.LexicalHandler} for the output
    [all...]
  /libcore/luni/src/main/java/javax/xml/transform/stream/
StreamResult.java 20 package javax.xml.transform.stream;
25 import javax.xml.transform.Result;
29 * which may be XML, plain Text, HTML, or some other form of markup.</p>
35 /** If {@link javax.xml.transform.TransformerFactory#getFeature}
40 "http://javax.xml.transform.stream.StreamResult/feature";
  /libcore/luni/src/main/java/javax/xml/validation/
Validator.java 19 package javax.xml.validation;
22 import javax.xml.transform.Result;
23 import javax.xml.transform.Source;
25 import org.xml.sax.ErrorHandler;
26 import org.xml.sax.SAXException;
27 import org.xml.sax.SAXNotRecognizedException;
28 import org.xml.sax.SAXNotSupportedException;
31 * <p>A processor that checks an XML document against {@link Schema}.</p>
42 * Note that while the {@link #validate(javax.xml.transform.Source)} and {@link #validate(javax.xml.transform.Source, javax.xml.transform.Result)
    [all...]
ValidatorHandler.java 19 package javax.xml.validation;
22 import org.xml.sax.ContentHandler;
23 import org.xml.sax.ErrorHandler;
24 import org.xml.sax.SAXNotRecognizedException;
25 import org.xml.sax.SAXNotSupportedException;
62 * <li>{@link org.xml.sax.Attributes} for the
76 * <h3><code>http://xml.org/sax/features/namespace-prefixes</code></h3>
84 * the {@link org.xml.sax.Attributes} object of the
87 * added to {@link org.xml.sax.Attributes} that's passed to the
199 * by throwing {@link org.xml.sax.SAXException} from the handler. Or for exampl
    [all...]
  /libcore/luni/src/main/java/javax/xml/xpath/
XPath.java 19 package javax.xml.xpath;
21 import javax.xml.namespace.NamespaceContext;
22 import javax.xml.namespace.QName;
23 import org.xml.sax.InputSource;
83 * @see <a href="http://www.w3.org/TR/xpath">XML Path Language (XPath) Version 1.0</a>
XPathFactory.java 19 package javax.xml.xpath;
23 * {@link javax.xml.xpath.XPath} objects.</p>
38 public static final String DEFAULT_PROPERTY_NAME = "javax.xml.xpath.XPathFactory";
98 * The class loader is asked for service provider provider-configuration files matching <code>javax.xml.xpath.XPathFactory</code>
215 * All implementations are required to support the {@link javax.xml.XMLConstants#FEATURE_SECURE_PROCESSING} feature.
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DOMErrorImpl.java 17 package org.apache.harmony.xml.dom;
DOMImplementationImpl.java 17 package org.apache.harmony.xml.dom;
64 } else if (feature.equalsIgnoreCase("XML")) {
LeafNodeImpl.java 17 package org.apache.harmony.xml.dom;
NotationImpl.java 17 package org.apache.harmony.xml.dom;
ProcessingInstructionImpl.java 17 package org.apache.harmony.xml.dom;
  /libcore/luni/src/main/java/org/xml/sax/
Attributes.java 7 package org.xml.sax;
11 * Interface for a list of XML attributes.
32 * the <code>http://xml.org/sax/features/namespace-prefixes</code>
35 * Because SAX2 conforms to the original "Namespaces in XML"
41 * (<code>http://xml.org/sax/features/xmlns-uris</code>) to request
51 * the <code>http://xml.org/sax/features/namespaces</code> feature is
56 * org.xml.sax.AttributeList AttributeList} interface, which does not
66 * @see org.xml.sax.helpers.AttributesImpl
67 * @see org.xml.sax.ext.DeclHandler#attributeDecl
120 * Look up an attribute's XML qualified (prefixed) name by index
    [all...]
ContentHandler.java 7 package org.xml.sax;
23 * the SAX parser using the {@link org.xml.sax.XMLReader#setContentHandler
36 * and for reporting skipped entities (in non-validating XML
44 * import org.xml.sax.*;
54 * @see org.xml.sax.XMLReader
55 * @see org.xml.sax.DTDHandler
56 * @see org.xml.sax.ErrorHandler
86 * @see org.xml.sax.Locator
98 * @throws org.xml.sax.SAXException any SAX exception, possibly
111 * org.xml.sax.ErrorHandler#fatalError}. Until this ambiguity i
    [all...]
DocumentHandler.java 6 package org.xml.sax;
19 * SAX2, it has been replaced by {@link org.xml.sax.ContentHandler
38 * {@link org.xml.sax.ContentHandler ContentHandler}
43 * @see org.xml.sax.Parser#setDocumentHandler
44 * @see org.xml.sax.Locator
45 * @see org.xml.sax.HandlerBase
74 * @see org.xml.sax.Locator
86 * @exception org.xml.sax.SAXException Any SAX exception, possibly
102 * @exception org.xml.sax.SAXException Any SAX exception, possibly
113 * element in the XML document; there will be a correspondin
    [all...]
  /libcore/luni/src/main/java/org/xml/sax/ext/
LexicalHandler.java 6 package org.xml.sax.ext;
8 import org.xml.sax.SAXException;
21 * lexical information about an XML document, such as comments
23 * XML readers are not required to recognize this handler, and it
31 * <p>To set the LexicalHandler for an XML reader, use the
32 * {@link org.xml.sax.XMLReader#setProperty setProperty} method
34 * <code>http://xml.org/sax/properties/lexical-handler</code>
37 * {@link org.xml.sax.SAXNotRecognizedException SAXNotRecognizedException}
55 * {@link org.xml.sax.DTDHandler DTDHandler} or
56 * {@link org.xml.sax.ext.DeclHandler DeclHandler} events must appea
    [all...]
Locator2Impl.java 6 package org.xml.sax.ext;
8 import org.xml.sax.Locator;
9 import org.xml.sax.helpers.LocatorImpl;

Completed in 89 milliseconds

1 2 3 4 5 67 8 91011>>