Home | History | Annotate | Download | only in testrunner

Lines Matching defs:AndroidManifest

18 """In memory representation of AndroidManifest.xml file.
20 Specification of AndroidManifest.xml can be found at
30 class AndroidManifest(object):
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
113 """Factory method for creating a AndroidManifest.
119 the AndroidManifest or None if there was no file present
121 manifest_path = os.path.join(path, AndroidManifest.FILENAME)
123 manifest = AndroidManifest()