Searched defs:xml (Results 1 - 5 of 5) sorted by relevance

/development/testrunner/
H A Dandroid_manifest.py18 """In memory representation of AndroidManifest.xml file.
20 Specification of AndroidManifest.xml can be found at
26 import xml.dom.minidom namespace
27 import xml.parsers namespace
31 """In memory representation of AndroidManifest.xml file."""
33 FILENAME = 'AndroidManifest.xml'
55 """Parse AndroidManifest.xml at the specified path.
58 app_path: path to folder containing AndroidManifest.xml
60 IOError: AndroidManifest.xml cannot be found at given path, or cannot be
65 self._dom = xml
[all...]
/development/testrunner/test_defs/
H A Dtest_defs.py18 """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
[all...]
H A Dxml_suite_helper.py18 """Utility to parse suite info from xml."""
21 import xml.dom.minidom namespace
22 import xml.parsers namespace
45 """Populates common suite attributes from given suite xml element.
48 element: xml node to parse
101 """Parses instrumentation suite attributes from xml."""
103 # for legacy reasons, the xml tag name for java (device) tests is 'test'
112 """Creates suite and populate with data from xml element."""
128 """Parses native suite attributes from xml."""
133 """Creates suite and populate with data from xml elemen
[all...]
/development/testrunner/coverage/
H A Dcoverage_targets.py17 import xml.dom.minidom namespace
18 import xml.parsers namespace
27 """Accessor for the code coverage target xml file
64 doc = xml.dom.minidom.parse(file_path)
69 except xml.parsers.expat.ExpatError:
70 logger.Log('Error Parsing xml file: %s ' % file_path)
125 """parses out a file_path class from given path to xml"""
/development/samples/MySampleRss/src/com/example/codelab/rssexample/
H A DRssService.java204 private GregorianCalendar parseRssDocPubDate(String xml){ argument
209 Matcher m = p.matcher(xml);

Completed in 74 milliseconds