/libcore/luni/src/main/java/org/xml/sax/helpers/ |
NewInstance.java | 8 package org.xml.sax.helpers;
|
XMLReaderFactory.java | 8 package org.xml.sax.helpers; 14 import org.xml.sax.SAXException; 15 import org.xml.sax.XMLReader; 19 * Factory for creating an XML reader. 28 * <p>This class contains static methods for creating an XML reader 44 * nothing bound its class name to <code>org.xml.sax.driver</code> so 62 private static final String property = "org.xml.sax.driver"; 70 * <li>If the system property <code>org.xml.sax.driver</code> 74 * in the <em>META-INF/services/org.xml.sax.driver</em> file in 84 * environments, where the <code>org.xml.sax.parser</code> syste [all...] |
/libcore/luni/src/test/java/tests/api/javax/xml/parsers/ |
ParserConfigurationExceptionTest.java | 16 package tests.api.javax.xml.parsers; 18 import javax.xml.parsers.ParserConfigurationException;
|
/libcore/luni/src/test/java/tests/api/org/xml/sax/ |
SAXNotRecognizedExceptionTest.java | 17 package tests.api.org.xml.sax; 21 import org.xml.sax.SAXNotRecognizedException;
|
SAXNotSupportedExceptionTest.java | 17 package tests.api.org.xml.sax; 21 import org.xml.sax.SAXNotSupportedException;
|
/libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/ |
ParserFactoryTest.java | 17 package tests.api.org.xml.sax.helpers; 21 import org.xml.sax.helpers.ParserFactory; 33 System.clearProperty("org.xml.sax.parser"); 44 System.setProperty("org.xml.sax.parser", "foo.bar.SAXParser"); 54 System.setProperty("org.xml.sax.parser", 55 "tests.api.org.xml.sax.support.NoAccessParser"); 65 System.setProperty("org.xml.sax.parser", 66 "tests.api.org.xml.sax.support.NoInstanceParser"); 76 System.setProperty("org.xml.sax.parser", 77 "tests.api.org.xml.sax.support.NoSubclassParser") [all...] |
/libcore/luni/src/test/java/tests/api/org/xml/sax/support/ |
BrokenInputStream.java | 17 package tests.api.org.xml.sax.support;
|
DoNothingParser.java | 17 package tests.api.org.xml.sax.support; 19 import org.xml.sax.DTDHandler; 20 import org.xml.sax.DocumentHandler; 21 import org.xml.sax.EntityResolver; 22 import org.xml.sax.ErrorHandler; 23 import org.xml.sax.InputSource; 24 import org.xml.sax.Parser;
|
MockParser.java | 17 package tests.api.org.xml.sax.support; 22 import org.xml.sax.DTDHandler; 23 import org.xml.sax.DocumentHandler; 24 import org.xml.sax.EntityResolver; 25 import org.xml.sax.ErrorHandler; 26 import org.xml.sax.InputSource; 27 import org.xml.sax.Parser; 28 import org.xml.sax.SAXException;
|
MockResolver.java | 17 package tests.api.org.xml.sax.support; 23 import org.xml.sax.EntityResolver; 24 import org.xml.sax.InputSource; 25 import org.xml.sax.SAXException;
|
NoAccessParser.java | 17 package tests.api.org.xml.sax.support; 19 import org.xml.sax.DTDHandler; 20 import org.xml.sax.DocumentHandler; 21 import org.xml.sax.EntityResolver; 22 import org.xml.sax.ErrorHandler; 23 import org.xml.sax.InputSource; 24 import org.xml.sax.Parser;
|
NoInstanceParser.java | 17 package tests.api.org.xml.sax.support; 19 import org.xml.sax.DTDHandler; 20 import org.xml.sax.DocumentHandler; 21 import org.xml.sax.EntityResolver; 22 import org.xml.sax.ErrorHandler; 23 import org.xml.sax.InputSource; 24 import org.xml.sax.Parser;
|
NoSubclassParser.java | 17 package tests.api.org.xml.sax.support; 19 import org.xml.sax.DTDHandler; 20 import org.xml.sax.DocumentHandler; 21 import org.xml.sax.EntityResolver; 22 import org.xml.sax.ErrorHandler; 23 import org.xml.sax.InputSource;
|
/frameworks/base/core/tests/coretests/src/android/app/activity/ |
MetaDataTest.java | 57 assertEquals(R.xml.metadata, md.getInt("com.android.frameworks.coretests.reference")); 59 XmlResourceParser xml = ci.loadXmlMetaData(mContext.getPackageManager(), local 61 assertNotNull(xml); 64 while ((type = xml.next()) != XmlPullParser.START_TAG 68 assertEquals("thedata", xml.getName()); 71 final String rawAttr = xml.getAttributeValue(null, "rawText"); 75 final int rawColorIntAttr = xml.getAttributeIntValue(null, "rawColor", 0); 77 final String rawColorStrAttr = xml.getAttributeValue(null, "rawColor"); 82 final int colorIntAttr = xml.getAttributeIntValue(nameSpace, "color", 0); 84 final String colorStrAttr = xml.getAttributeValue(nameSpace, "color") [all...] |
/libcore/luni/src/test/java/libcore/xml/ |
SaxTest.java | 17 package libcore.xml; 22 import javax.xml.parsers.SAXParser; 23 import javax.xml.parsers.SAXParserFactory; 26 import org.xml.sax.Attributes; 27 import org.xml.sax.ContentHandler; 28 import org.xml.sax.InputSource; 29 import org.xml.sax.SAXParseException; 30 import org.xml.sax.XMLReader; 31 import org.xml.sax.helpers.DefaultHandler; 162 String xml = "<!DOCTYPE foo [ local 174 String xml = "<!DOCTYPE foo [" local [all...] |
/cts/tools/utils/cts/ |
tools.py | 20 import xml.dom.minidom as minidom namespace 30 to XML is done via a DOM tree that gets created on demand. 33 the usability. For example, one could easily create an instance by parsing an existing XML. 104 """Write the description as XML to the given writer.""" 177 """This class parses Xml files and allows reading attribute values by tag and attribute name."""
|
/development/samples/ApiDemos/src/com/example/android/apis/preference/ |
PreferenceWithHeaders.java | 53 loadHeadersFromResource(R.xml.preference_headers, target); 68 R.xml.advanced_preferences, false); 70 // Load the preferences from an XML resource 71 addPreferencesFromResource(R.xml.fragmented_preferences); 84 // Can retrieve arguments from preference XML. 87 // Load the preferences from an XML resource 88 addPreferencesFromResource(R.xml.fragmented_preferences_inner); 100 // Can retrieve arguments from headers XML. 103 // Load the preferences from an XML resource 104 addPreferencesFromResource(R.xml.preference_dependencies) [all...] |
/development/testrunner/test_defs/ |
test_defs.py | 18 """Parser for test definition xml files.""" 21 import xml.dom.minidom namespace 22 import xml.parsers namespace 31 """Accessor for a test definitions xml file data. 55 doc = xml.dom.minidom.parse(file_path) 60 except xml.parsers.expat.ExpatError: 61 logger.Log("Error Parsing xml file: %s " % file_path) 64 logger.Log("Error Parsing xml file: %s Reason: %s" % (file_path, e.msg)) 68 """Alternate parse method that accepts a string of the xml data.""" 69 doc = xml.dom.minidom.parseString(xml_string [all...] |
/external/apache-xml/src/main/java/org/apache/xml/dtm/ |
DTMAxisIterator.java | 21 package org.apache.xml.dtm;
|
SecuritySupport.java | 22 package org.apache.xml.dtm;
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
DTMNodeIterator.java | 21 package org.apache.xml.dtm.ref; 23 import org.apache.xml.dtm.DTM; 24 import org.apache.xml.dtm.DTMDOMException; 25 import org.apache.xml.dtm.DTMIterator; 78 throw new org.apache.xml.utils.WrappedRuntimeException(cnse);
|
ExtendedType.java | 21 package org.apache.xml.dtm.ref;
|
SecuritySupport.java | 22 package org.apache.xml.dtm.ref;
|
/external/apache-xml/src/main/java/org/apache/xml/res/ |
XMLMessages.java | 21 package org.apache.xml.res; 29 * A utility class for issuing XML error messages. 38 /** The language specific resource object for XML messages. */
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
ElemContext.java | 21 package org.apache.xml.serializer;
|