/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
SecuritySupport.java | 22 package org.apache.xml.serializer;
|
SerializerConstants.java | 21 package org.apache.xml.serializer; 48 static final String XML_PREFIX = "xml"; 55 * Define the XML version.
|
SerializerTrace.java | 21 package org.apache.xml.serializer; 23 import org.xml.sax.Attributes;
|
WriterToASCI.java | 21 package org.apache.xml.serializer;
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/ |
DOM3SerializerImpl.java | 22 package org.apache.xml.serializer.dom3;
26 import org.apache.xml.serializer.DOM3Serializer;
27 import org.apache.xml.serializer.SerializationHandler;
28 import org.apache.xml.serializer.utils.WrappedRuntimeException;
112 } catch (org.xml.sax.SAXException se) {
|
DOMErrorImpl.java | 22 package org.apache.xml.serializer.dom3;
|
DOMLocatorImpl.java | 22 package org.apache.xml.serializer.dom3;
|
DOMOutputImpl.java | 22 package org.apache.xml.serializer.dom3;
77 * encoding in this way will override any encoding specified in an XML
89 * encoding in this way will override any encoding specified in an XML
149 * acceptable for an XML encoding declaration ([XML 1.0] section 4.3.3
153 * any encoding specified in the XML declaration or the Text declaration, or
164 * acceptable for an XML encoding declaration ([XML 1.0] section 4.3.3
168 * any encoding specified in the XML declaration or the Text declaration, or
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/ |
AttList.java | 21 package org.apache.xml.serializer.utils; 27 import org.xml.sax.Attributes; 32 * This class is a copy of the one in org.apache.xml.utils. 38 * used in org.apache.xml.serializer. 247 * Look up the index of an attribute by raw XML 1.0 name.
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
AttList.java | 21 package org.apache.xml.utils; 27 import org.xml.sax.Attributes; 238 * Look up the index of an attribute by raw XML 1.0 name.
|
DefaultErrorHandler.java | 21 package org.apache.xml.utils; 26 import javax.xml.transform.ErrorListener; 27 import javax.xml.transform.SourceLocator; 28 import javax.xml.transform.TransformerException; 30 import org.apache.xml.res.XMLErrorResources; 31 import org.apache.xml.res.XMLMessages; 33 import org.xml.sax.ErrorHandler; 34 import org.xml.sax.SAXException; 35 import org.xml.sax.SAXParseException; 105 * are not errors or fatal errors as defined by the XML 1. [all...] |
IntStack.java | 21 package org.apache.xml.utils;
|
SecuritySupport.java | 22 package org.apache.xml.utils;
|
ThreadControllerWrapper.java | 21 package org.apache.xml.utils;
|
/external/chromium_org/components/autofill/core/browser/ |
autofill_xml_parser_unittest.cc | 24 void ParseQueryXML(const std::string& xml, bool should_succeed) { 30 parser.Parse(xml.c_str(), xml.length(), true); 45 void ParseUploadXML(const std::string& xml, bool should_succeed) { 49 parser.Parse(xml.c_str(), xml.length(), true); 59 // An XML string representing a basic query response. 60 std::string xml = "<autofillqueryresponse>" local 67 ParseQueryXML(xml, true); 83 std::string xml = "<autofillqueryresponse uploadrequired=\"true\"> local 123 std::string xml = "<autofillqueryresponse>" local 168 std::string xml = "<autofillqueryresponse>" local [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/ |
xml_unittest.py | 23 """Unit test for xml.py.""" 27 import xml namespace 51 checker = xml.XMLChecker('foo.xml', error_handler) 64 checker = xml.XMLChecker('foo.xml', error_handler) 73 self.assert_error(1, 'xml/syntax', '<<<<<<< HEAD\n<foo>\n</foo>\n') 76 self.assert_error(3, 'xml/syntax', '<foo>\n</foo>\n</foo>\n') 80 checker = xml.XMLChecker('foo.xml', error_handler [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/ |
xmlreport.py | 0 """XML reporting for coverage.py""" 4 import xml.dom.minidom namespace 16 """A reporter for writing Cobertura-style XML coverage results.""" 26 """Generate a Cobertura-compatible XML report for `morfs`. 30 `outfile` is a file object to write the XML to. `config` is a 38 impl = xml.dom.minidom.getDOMImplementation() 41 "http://cobertura.sourceforge.net/xml/coverage-03.dtd" 62 # Populate the XML DOM with the package info. 89 """Add to the XML report for a single file.""" 91 # Create the 'lines' and 'package' XML elements, whic [all...] |
/external/chromium_org/tools/grit/grit/gather/ |
igoogle_strings.py | 6 '''Support for ALL_ALL.xml format used by Igoogle plug-ins in Google Desktop.''' 10 import xml.sax namespace 11 import xml.sax.handler namespace 12 import xml.sax.saxutils namespace 18 # Placeholders can be defined in strings.xml files by putting the name of the 23 class IgoogleStringsContentHandler(xml.sax.handler.ContentHandler): 24 '''A very dumb parser for splitting the strings.xml file into translateable 49 xml.sax.saxutils.quoteattr(attrs.getValueByQName(attr_name))) 74 '''Supports the ALL_ALL.xml format used by Igoogle gadgets.''' 119 xml.sax.parse(stream, handler [all...] |
muppet_strings.py | 6 '''Support for "strings.xml" format used by Muppet plug-ins in Google Desktop.''' 9 import xml.sax namespace 10 import xml.sax.handler namespace 11 import xml.sax.saxutils namespace 19 # Placeholders can be defined in strings.xml files by putting the name of the 24 class MuppetStringsContentHandler(xml.sax.handler.ContentHandler): 25 '''A very dumb parser for splitting the strings.xml file into translateable 56 xml.sax.saxutils.quoteattr(attrs.getValueByQName(attr_name))) 80 '''Supports the strings.xml format used by Muppet gadgets.''' 129 xml.sax.parse(stream, handler [all...] |
/external/chromium_org/tools/grit/grit/ |
grd_reader.py | 11 import xml.sax namespace 12 import xml.sax.handler namespace 26 class GrdContentHandler(xml.sax.handler.ContentHandler): 89 xml.sax.parse(partname, GrdPartContentHandler(self)) 104 # TODO(joi) This is not supported by expat. Should use a different XML parser? 108 class GrdPartContentHandler(xml.sax.handler.ContentHandler): 158 filename_or_stream: './bla.xml' 180 xml.sax.parse(filename_or_stream, handler)
|
xtb_reader.py | 11 import xml.sax namespace 12 import xml.sax.handler namespace 17 class XtbContentHandler(xml.sax.handler.ContentHandler): 97 class XtbErrorHandler(xml.sax.handler.ErrorHandler): 138 xml.sax.parse(xtb_file, handler)
|
/external/chromium_org/tools/metrics/histograms/ |
extract_histograms.py | 5 """Extract histogram names from the description XML file. 7 For more information on the format of the XML file, which is self-documenting, 8 see histograms.xml; however, here is a simple example to get you started. The 9 XML below will generate the following five histograms: 59 import xml.dom.minidom namespace 105 if node.nodeType == xml.dom.minidom.Node.ELEMENT_NODE: 120 field_trial: The FieldTrial XML element. 282 tree: XML dom tree. 384 """Compute the histogram names and descriptions from the XML representation. 387 file_handle: A file or file-like with XML content [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/util/xml/ |
SAXUtil.java | 33 package com.jme3.util.xml; 37 import org.xml.sax.Attributes; 38 import org.xml.sax.SAXException; 41 * Utility methods for parsing XML data using SAX.
|
/external/smack/src/org/jivesoftware/smackx/entitycaps/packet/ |
CapsExtension.java | 76 String xml = "<" + EntityCapsManager.ELEMENT + " xmlns=\"" + EntityCapsManager.NAMESPACE + "\" " + local 81 return xml;
|
/libcore/benchmarks/src/benchmarks/regression/ |
XmlEntitiesBenchmark.java | 22 import javax.xml.parsers.DocumentBuilder; 23 import javax.xml.parsers.DocumentBuilderFactory; 24 import org.xml.sax.InputSource; 38 private String xml; field in class:XmlEntitiesBenchmark 53 xml = xmlBuilder.toString(); 59 parser.setInput(new StringReader(xml)); 68 documentBuilder.parse(new InputSource(new StringReader(xml)));
|