Home
last modified time | relevance | path

Searched refs:manifest (Results 1 – 22 of 22) sorted by relevance

/development/testrunner/
Dandroid_manifest.py49 manifest = self._GetManifestElement()
50 if not manifest or not manifest.hasAttribute('package'):
52 return manifest.getAttribute('package')
73 manifest = self._GetManifestElement()
74 uses_sdk_elements = manifest.getElementsByTagName('uses-sdk')
79 manifest.appendChild(uses_sdk_element)
123 manifest = AndroidManifest()
124 manifest._ParseManifest(path)
125 return manifest
Dcreate_test.py86 def _GenerateTestManifest(manifest, module_name, mapping=None): argument
101 tests_path = "%s/%s" % (manifest.GetAppPath(), TestsConsts.TESTS_FOLDER)
102 tests_manifest_path = "%s/%s" % (tests_path, manifest.FILENAME)
108 package_name = manifest.GetPackageName()
199 def _ValidateInputFiles(mk, manifest): argument
214 package_name = manifest.GetPackageName()
216 raise RuntimeError("Variable package missing from %s" % manifest.FILENAME)
229 manifest = android_manifest.AndroidManifest(app_path=app_path)
230 _ValidateInputFiles(mk, manifest)
234 _GenerateTestManifest(manifest, module_name)
/development/gsi/gsi_util/gsi_util/utils/
Dvintf_utils.py23 def checkvintf(manifest, matrix): argument
35 logging.debug('checkvintf %s %s...', manifest, matrix)
39 ['checkvintf', manifest, matrix],
/development/gsi/gsi_util/gsi_util/checkers/
Dvintf_checker.py67 [manifest_filename, matrix_filename]) as [manifest, matrix]:
68 if not manifest:
74 result_ok, stderr = vintf_utils.checkvintf(manifest, matrix)
/development/tools/bugreport/
DAndroid.bp7 manifest: "manifest-library.mf",
/development/samples/ShortcutDemo/publisher/
DAndroid.mk30 LOCAL_AAPT_FLAGS += --rename-manifest-package com.example.android.pm.shortcutdemo
52 LOCAL_AAPT_FLAGS += --rename-manifest-package com.example.android.pm.shortcutdemo2
/development/tools/mkstubs/
DAndroid.bp20 manifest: "manifest.txt",
/development/tools/apkcheck/
DAndroid.bp18 manifest: "etc/manifest.txt",
/development/tools/rmtypedefs/
DAndroid.bp18 manifest: "etc/manifest.txt",
/development/samples/ShortcutDemo/launcher/
DAndroid.mk28 LOCAL_AAPT_FLAGS += --rename-manifest-package com.example.android.pm.shortcutlauncherdemo
54 LOCAL_AAPT_FLAGS += --rename-manifest-package com.example.android.pm.shortcutlauncherdemo2
/development/vndk/tools/sourcedr/sourcedr/tests/
Dtest_ninja.py492 manifest = parser.parse(input_path, ENCODING)
494 self.assertEqual(2, len(manifest.rules))
496 rule_cc = manifest.rules[0]
508 rule_ld = manifest.rules[1]
524 manifest = parser.parse(input_path, ENCODING)
526 self.assertEqual(1, len(manifest.builds))
528 build = manifest.builds[0]
548 manifest = parser.parse(input_path, ENCODING)
550 self.assertEqual(1, len(manifest.defaults))
552 default = manifest.defaults[0]
[all …]
/development/tools/repo_diff/
DREADME.md19 --manifest-url=https://android.googlesource.com/platform/manifest \
20 --manifest-branch=android-8.0.0_r1
27 --manifest-url=https://android.googlesource.com/platform/manifest \
28 --manifest-branch=android-8.0.0_r11
Drepo_diff_trees.py38 manifest = source_tree + '/.repo/manifest.xml'
39 tree = et.parse(manifest)
/development/tools/line_endings/
DAndroid.bp3 // Copies files into the directory structure described by a manifest
/development/vndk/tools/sourcedr/sourcedr/
Dmap.py49 manifest = ninja.Parser().parse(ninja_path, 'utf-8', ninja_deps)
51 for build in manifest.builds:
Dninja.py1002 manifest = Parser().parse(args.input_file, args.encoding, args.ninja_deps)
1007 for rule in manifest.rules:
1010 for build in manifest.builds:
1025 for pool in manifest.pools:
1028 for default in manifest.defaults:
/development/samples/training/testingfun/app/
Dbuild.gradle14 manifest.srcFile 'AndroidManifest.xml'
/development/samples/browseable/ScopedDirectoryAccess/
D_index.jd10 READ_EXTERNAL_STORAGE or WRITE_EXTERNAL_STORAGE in your manifest.
/development/python-packages/
D.gitignore30 *.manifest
/development/vndk/snapshot/
Dcheck_gpl_license.py56 manifest=self.MANIFEST_XML,
152 path=module_path, manifest=self.MANIFEST_XML))
/development/tools/checkcolor/
Dbuild.gradle40 manifest {
/development/tools/idegen/src/com/android/idegen/
DModule.java161 File manifest = new File(moduleRoot, "AndroidManifest.xml"); in isAndroidModule() local
162 return manifest.exists(); in isAndroidModule()