Home | History | Annotate | Download | only in testrunner

Lines Matching refs:manifest

21 http://developer.android.com/guide/topics/manifest/manifest-intro.html
40 """Retrieve file system path to this manifest file's directory."""
44 """Retrieve package name defined at <manifest package="...">.
49 manifest = self._GetManifestElement()
50 if not manifest or not manifest.hasAttribute('package'):
52 return manifest.getAttribute('package')
68 """Adds a uses-sdk element to manifest.
73 manifest = self._GetManifestElement()
74 uses_sdk_elements = manifest.getElementsByTagName('uses-sdk')
79 manifest.appendChild(uses_sdk_element)
85 """Get the instrumentation names from manifest.
97 """Retrieve the root manifest element.
100 the DOM element for manifest or None.
102 manifests = self._dom.getElementsByTagName('manifest')
108 """Saves the manifest to disk."""