/development/testrunner/ |
D | android_manifest.py | 49 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
|
D | create_test.py | 86 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/ |
D | vintf_utils.py | 23 def checkvintf(manifest, matrix): argument 35 logging.debug('checkvintf %s %s...', manifest, matrix) 39 ['checkvintf', manifest, matrix],
|
/development/gsi/gsi_util/gsi_util/checkers/ |
D | vintf_checker.py | 67 [manifest_filename, matrix_filename]) as [manifest, matrix]: 68 if not manifest: 74 result_ok, stderr = vintf_utils.checkvintf(manifest, matrix)
|
/development/tools/bugreport/ |
D | Android.bp | 7 manifest: "manifest-library.mf",
|
/development/samples/ShortcutDemo/publisher/ |
D | Android.mk | 30 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/ |
D | Android.bp | 20 manifest: "manifest.txt",
|
/development/tools/apkcheck/ |
D | Android.bp | 18 manifest: "etc/manifest.txt",
|
/development/samples/ShortcutDemo/launcher/ |
D | Android.mk | 28 LOCAL_AAPT_FLAGS += --rename-manifest-package com.example.android.pm.shortcutlauncherdemo 54 LOCAL_AAPT_FLAGS += --rename-manifest-package com.example.android.pm.shortcutlauncherdemo2
|
/development/tools/rmtypedefs/ |
D | Android.bp | 18 manifest: "etc/manifest.txt",
|
/development/tools/line_endings/ |
D | Android.bp | 3 // Copies files into the directory structure described by a manifest
|
/development/vndk/tools/sourcedr/sourcedr/tests/ |
D | test_ninja.py | 492 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/ |
D | README.md | 19 --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
|
D | repo_diff_trees.py | 38 manifest = source_tree + '/.repo/manifest.xml' 39 tree = et.parse(manifest)
|
/development/vndk/tools/sourcedr/sourcedr/ |
D | map.py | 49 manifest = ninja.Parser().parse(ninja_path, 'utf-8', ninja_deps) 51 for build in manifest.builds:
|
D | ninja.py | 1002 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/ |
D | build.gradle | 14 manifest.srcFile 'AndroidManifest.xml'
|
/development/samples/browseable/ScopedDirectoryAccess/ |
D | _index.jd | 10 READ_EXTERNAL_STORAGE or WRITE_EXTERNAL_STORAGE in your manifest.
|
/development/python-packages/ |
D | .gitignore | 30 *.manifest
|
/development/vndk/snapshot/ |
D | check_gpl_license.py | 56 manifest=self.MANIFEST_XML, 152 path=module_path, manifest=self.MANIFEST_XML))
|
/development/tools/checkcolor/ |
D | build.gradle | 40 manifest {
|
/development/tools/idegen/src/com/android/idegen/ |
D | Module.java | 161 File manifest = new File(moduleRoot, "AndroidManifest.xml"); in isAndroidModule() local 162 return manifest.exists(); in isAndroidModule()
|