/tools/asuite/atest-py2/test_finders/ |
D | test_finder_utils_unittest.py | 124 paths = [os.path.join(uc.ROOT, CLASS_DIR, uc.CLASS_NAME + '.java')] 126 self, test_finder_utils.extract_test_path(uc.FIND_ONE), paths) 127 paths = [os.path.join(uc.ROOT, CLASS_DIR, uc.CLASS_NAME + '.java')] 129 self, test_finder_utils.extract_test_path(FIND_TWO), paths) 131 paths = [os.path.join(uc.ROOT, CLASS_DIR, uc.CLASS_NAME + '.java')] 133 self, test_finder_utils.extract_test_path(uc.FIND_ONE, 'method'), paths) 161 paths = [os.path.join(uc.ROOT, CLASS_DIR, uc.CLASS_NAME + '.java')] 163 self, test_finder_utils.extract_test_path(uc.FIND_ONE), paths) 164 paths = [os.path.join(uc.ROOT, OTHER_DIR, OTHER_CLASS_NAME)] 167 self, test_finder_utils.extract_test_path(FIND_TWO), paths) [all …]
|
D | tf_integration_finder.py | 210 paths = test_finder_utils.find_class_file(self.root_dir, 212 if not paths: 214 for path in paths:
|
/tools/asuite/atest/test_finders/ |
D | test_finder_utils_unittest.py | 146 paths = [os.path.join(uc.ROOT, CLASS_DIR, uc.CLASS_NAME + '.java')] 148 self, test_finder_utils.extract_test_path(uc.FIND_ONE), paths) 149 paths = [os.path.join(uc.ROOT, CLASS_DIR, uc.CLASS_NAME + '.java')] 151 self, test_finder_utils.extract_test_path(FIND_TWO), paths) 153 paths = [os.path.join(uc.ROOT, CLASS_DIR, uc.CLASS_NAME + '.java')] 155 self, test_finder_utils.extract_test_path(uc.FIND_ONE, 'method'), paths) 198 paths = [os.path.join(uc.ROOT, CLASS_DIR, uc.CLASS_NAME + '.java')] 200 self, test_finder_utils.extract_test_path(uc.FIND_ONE), paths) 201 paths = [os.path.join(uc.ROOT, OTHER_DIR, OTHER_CLASS_NAME)] 204 self, test_finder_utils.extract_test_path(FIND_TWO), paths) [all …]
|
D | tf_integration_finder.py | 276 paths = test_finder_utils.find_class_file(self.root_dir, 278 if not paths: 280 for path in paths:
|
/tools/platform-compat/java/android/compat/testing/ |
D | SharedLibraryInfo.java | 35 public final ImmutableList<String> paths; field in SharedLibraryInfo 38 ImmutableList<String> paths) { in SharedLibraryInfo() argument 42 this.paths = paths; in SharedLibraryInfo() 54 ImmutableList.Builder<String> paths = ImmutableList.builder(); in readFromLine() local 57 paths.add(path); in readFromLine() 59 return new SharedLibraryInfo(libraryName, libraryType, libraryVersion, paths.build()); in readFromLine()
|
/tools/external_updater/ |
D | external_updater.py | 173 def check_and_update_path(args: argparse.Namespace, paths: Iterator[str], 177 for path in paths: 200 def get_paths(paths: List[str]) -> List[str]: 204 for path in paths] 207 if paths and not result: 208 print('Could not find any valid paths in %s' % str(paths)) 220 paths = _list_all_metadata() if args.all else get_paths(args.paths) 221 results = check_and_update_path(args, paths, False, args.delay) 229 all_paths = get_paths(args.paths)
|
D | notifier.py | 212 params += args.paths
|
/tools/acloud/create/ |
D | remote_image_local_instance_test.py | 72 paths = self.RemoteImageLocalInstance.GetImageArtifactsPath(avd_spec) 74 self.assertEqual(paths.image_dir, "/unit/test") 75 self.assertEqual(paths.host_bins, "/unit/test") 92 paths = self.RemoteImageLocalInstance.GetImageArtifactsPath(avd_spec) 97 self.assertEqual(paths.image_dir, "/mix_image_1234/IMAGES") 98 self.assertEqual(paths.misc_info, "/mix_image_1234/MISC") 99 self.assertEqual(paths.host_bins, "/unit/test") 100 self.assertEqual(paths.ota_tools_dir, "/ota_tools_dir") 101 self.assertEqual(paths.system_image, "/system_image_path")
|
D | local_image_local_instance_test.py | 289 paths = self.local_image_local_instance.GetImageArtifactsPath( 293 self.assertEqual(paths, (image_dir, cvd_dir, cvd_dir, 331 paths = self.local_image_local_instance.GetImageArtifactsPath( 336 self.assertEqual(paths, 372 paths = self.local_image_local_instance.GetImageArtifactsPath( 378 self.assertEqual(paths,
|
/tools/asuite/aidegen/vscode/ |
D | vscode_native_project_file_gen.py | 106 paths = _make_header_file_paths(includes) 107 configs[_INC_PATH] = paths 108 browse[_PATH] = paths 126 def _make_header_file_paths(paths): argument 137 for path in paths:
|
/tools/test/connectivity/acts_tests/tests/google/tel/live/ |
D | TelLiveSettingsTest.py | 151 paths = {} 181 paths[path_key] = path 182 if not paths: 185 self.log.info("paths = %s", paths) 187 if paths.get("radio_image"): 189 flash_radio(ad, paths["radio_image"]) 191 if not paths.get("mbn_path") or "mbn" not in ad.adb.shell( 211 if not system_file_push(ad, paths["mbn_path"],
|
/tools/test/connectivity/acts_tests/tests/google/gnss/ |
D | GnssFunctionTest.py | 176 paths = {} 185 paths["radio_image"] = os.path.join(path, path_key) 186 os.system("chmod -R 777 %s" % paths["radio_image"]) 187 self.ad.log.info("radio_image = %s" % paths["radio_image"]) 193 paths["mbn_path"] = dest_path 194 os.system("chmod -R 777 %s" % paths["mbn_path"]) 195 self.ad.log.info("mbn_path = %s" % paths["mbn_path"]) 196 self.ad.log.info(os.listdir(paths["mbn_path"])) 197 if not paths.get("radio_image"): 203 flash_radio(self.ad, paths["radio_image"]) [all …]
|
/tools/asuite/atest-py2/ |
D | atest_execution_info.py | 96 paths = glob.glob(target) 97 paths.sort(reverse=True) 103 for path in paths[0: int(history_arg)+1]:
|
/tools/asuite/atest/ |
D | atest_execution_info.py | 100 paths = glob.glob(target) 101 paths.sort(reverse=True) 115 for path in paths[0: int(history_arg)+1]:
|
/tools/treble/build/sandbox/ |
D | overlay.py | 413 paths = set() 415 paths.add(child.attrib.get("path", child.attrib["name"])) 416 return paths
|
/tools/test/connectivity/acts/framework/acts/ |
D | utils.py | 209 def find_files(paths, file_predicate): argument 222 if not isinstance(paths, list): 223 paths = [paths] 224 for path in paths:
|
/tools/asuite/aidegen/lib/ |
D | common_util.py | 140 paths = atest_module_info.get_paths(target) 141 if paths: 142 rel_path = paths[0].strip(os.sep)
|
/tools/acloud/internal/lib/ |
D | cvd_utils.py | 187 paths = [os.path.join(search_path, name) for name in _KERNEL_IMAGE_NAMES] 188 kernel_image_path = next((path for path in paths if os.path.isfile(path)),
|
/tools/treble/split/ |
D | manifest_split.py | 235 paths = module.get("path") 236 if not paths: 238 return all(not paths[0].startswith(p) for p in ignore_paths)
|
/tools/asuite/atest-py2/tools/ |
D | atest_tools.py | 96 paths = os.getenv('PATH', '').split(':') 97 for path in paths:
|
/tools/metalava/src/test/java/com/android/tools/metalava/ |
D | DriverTest.kt | 1387 val paths = mutableListOf<String>() in findKotlinStdlibPathArgs() constant 1395 paths.add(file.path) in findKotlinStdlibPathArgs() 1398 if (paths.isEmpty()) { in findKotlinStdlibPathArgs() 1402 if (paths.isNotEmpty() && in findKotlinStdlibPathArgs() 1405 arrayOf(ARG_CLASS_PATH, paths.joinToString(separator = File.pathSeparator) { it }) in findKotlinStdlibPathArgs()
|
/tools/test/connectivity/acts/ |
D | README.md | 105 a list of paths where the python test case files are located. Below are the 124 respectively. To specify multiple test paths, the key should follow
|
/tools/asuite/atest/docs/ |
D | develop_test_finders.md | 25 default test finder classes use the module-info.json and specific dir paths
|
/tools/asuite/atest-py2/docs/ |
D | develop_test_finders.md | 25 default test finder classes use the module-info.json and specific dir paths
|
/tools/asuite/aidegen/ |
D | README.md | 81 | `-e` | `--exclude-paths` | Exclude the directories in IDE. |
|