/tools/asuite/aidegen/vscode/ |
D | vscode_workspace_file_gen.py | 49 root_dir = common_util.get_android_root_dir() 51 name = _get_unique_project_name(path, root_dir) 85 def _get_unique_project_name(abs_path, root_dir): argument 98 unique_name = os.path.relpath(abs_path, root_dir).replace(os.sep, '.') 100 unique_name = os.path.basename(root_dir)
|
D | vscode_workspace_file_gen_unittest.py | 62 root_dir = 'a/b' 65 abs_path, root_dir) 70 abs_path, root_dir)
|
D | vscode_native_project_file_gen.py | 81 root_dir = common_util.get_android_root_dir() 83 [os.path.relpath(self.mod_dir, root_dir)])
|
/tools/tradefederation/core/atest/ |
D | module_info.py | 49 self.root_dir = os.environ.get(constants.ANDROID_BUILD_TOP) 63 root_dir = os.environ.get(constants.ANDROID_BUILD_TOP, '/') 64 out_dir = os.environ.get(constants.ANDROID_PRODUCT_OUT, root_dir) 69 if out_dir.find(root_dir) == 0: 71 module_info_target = os.path.relpath(module_file_path, root_dir) 241 if os.path.isfile(os.path.join(self.root_dir, test_config)): 245 if os.path.isfile(os.path.join(self.root_dir, path,
|
D | test_mapping.py | 117 root_dir = os.environ.get(constants.ANDROID_BUILD_TOP, os.sep) 118 path = os.path.realpath(os.path.join(root_dir, self.path))
|
D | cli_translator.py | 397 root_dir = os.environ.get(constants.ANDROID_BUILD_TOP, os.sep) 398 while path != root_dir and path != os.sep:
|
D | atest_utils.py | 591 def get_modified_files(root_dir): argument 608 find_git_cmd = 'cd {}; git rev-parse --show-toplevel'.format(root_dir)
|
/tools/asuite/atest/ |
D | module_info.py | 51 self.root_dir = os.environ.get(constants.ANDROID_BUILD_TOP) 65 root_dir = os.environ.get(constants.ANDROID_BUILD_TOP, '/') 66 out_dir = os.environ.get(constants.ANDROID_PRODUCT_OUT, root_dir) 71 if out_dir.find(root_dir) == 0: 73 module_info_target = os.path.relpath(module_file_path, root_dir) 244 if os.path.isfile(os.path.join(self.root_dir, test_config)): 248 if os.path.isfile(os.path.join(self.root_dir, path,
|
D | test_mapping.py | 115 root_dir = os.environ.get(constants.ANDROID_BUILD_TOP, os.sep) 116 path = os.path.realpath(os.path.join(root_dir, self.path))
|
D | cli_translator.py | 398 root_dir = os.environ.get(constants.ANDROID_BUILD_TOP, os.sep) 399 while path not in (root_dir, os.sep):
|
D | atest_utils.py | 589 def get_modified_files(root_dir): argument 606 find_git_cmd = 'cd {}; git rev-parse --show-toplevel'.format(root_dir)
|
/tools/tradefederation/core/atest/test_finders/ |
D | tf_integration_finder.py | 50 self.root_dir = os.environ.get(constants.ANDROID_BUILD_TOP) 78 config_file = os.path.join(self.root_dir, rel_config) 146 abs_path = os.path.join(self.root_dir, integration_dir) 199 rel_config = os.path.relpath(test_file, self.root_dir) 210 paths = test_finder_utils.find_class_file(self.root_dir, 256 rel_config = os.path.relpath(path, self.root_dir)
|
D | module_finder.py | 49 self.root_dir = os.environ.get(constants.ANDROID_BUILD_TOP) 100 config_file = os.path.join(self.root_dir, 108 out_dir = os.path.relpath(out_dir, self.root_dir) 180 config_file = os.path.join(self.root_dir, rel_config) 260 os.path.relpath(path, self.root_dir)): 287 self.root_dir, test_dir, self.module_info) 372 test_config_path = os.path.join(self.root_dir, test_config) 408 search_dir = os.path.join(self.root_dir, 411 search_dir = self.root_dir 417 test_paths = test_finder_utils.find_class_file(self.root_dir, [all …]
|
D | test_finder_utils.py | 486 def find_parent_module_dir(root_dir, start_dir, module_info): argument 502 if not is_equal_or_sub_dir(start_dir, root_dir): 503 raise ValueError('%s not in repo %s' % (start_dir, root_dir)) 506 while current_dir != root_dir: 509 rel_dir = os.path.relpath(current_dir, root_dir) 518 if os.path.isfile(os.path.join(root_dir, test_config)): 856 root_dir = os.environ.get(constants.ANDROID_BUILD_TOP) 859 abs_path = os.path.join(root_dir, integration_dir) 877 root_dir = os.environ.get(constants.ANDROID_BUILD_TOP) 883 abs_int_dir = os.path.join(root_dir, possible_dir)
|
D | suite_plan_finder.py | 41 self.root_dir = os.environ.get(constants.ANDROID_BUILD_TOP) 119 rel_config = os.path.relpath(path, self.root_dir)
|
/tools/asuite/atest/test_finders/ |
D | module_finder.py | 51 self.root_dir = os.environ.get(constants.ANDROID_BUILD_TOP) 102 config_file = os.path.join(self.root_dir, 110 out_dir = os.path.relpath(out_dir, self.root_dir) 182 config_file = os.path.join(self.root_dir, rel_config) 262 os.path.relpath(path, self.root_dir)): 289 self.root_dir, test_dir, self.module_info) 375 test_config_path = os.path.join(self.root_dir, test_config) 411 search_dir = os.path.join(self.root_dir, 414 search_dir = self.root_dir 420 test_paths = test_finder_utils.find_class_file(self.root_dir, [all …]
|
D | tf_integration_finder.py | 52 self.root_dir = os.environ.get(constants.ANDROID_BUILD_TOP) 80 config_file = os.path.join(self.root_dir, rel_config) 150 abs_path = os.path.join(self.root_dir, integration_dir) 203 rel_config = os.path.relpath(test_file, self.root_dir) 214 paths = test_finder_utils.find_class_file(self.root_dir, 260 rel_config = os.path.relpath(path, self.root_dir)
|
D | test_finder_utils.py | 496 def find_parent_module_dir(root_dir, start_dir, module_info): argument 512 if not is_equal_or_sub_dir(start_dir, root_dir): 513 raise ValueError('%s not in repo %s' % (start_dir, root_dir)) 516 while current_dir != root_dir: 519 rel_dir = os.path.relpath(current_dir, root_dir) 528 if os.path.isfile(os.path.join(root_dir, test_config)): 870 root_dir = os.environ.get(constants.ANDROID_BUILD_TOP) 873 abs_path = os.path.join(root_dir, integration_dir) 891 root_dir = os.environ.get(constants.ANDROID_BUILD_TOP) 897 abs_int_dir = os.path.join(root_dir, possible_dir)
|
D | suite_plan_finder.py | 41 self.root_dir = os.environ.get(constants.ANDROID_BUILD_TOP) 120 rel_config = os.path.relpath(path, self.root_dir)
|
/tools/asuite/aidegen/lib/ |
D | native_util_unittest.py | 163 root_dir = 'a/path/to/dir' 166 abs_path = os.path.join(root_dir, folder) 167 mock_walk.return_value = [(root_dir, [folder], [target])] 170 mock_walk.return_value = [(root_dir, [folder], [target])]
|
D | clion_project_file_gen.py | 365 root_dir = common_util.get_android_root_dir() 366 cc_dir = os.path.join(root_dir, constant.RELATIVE_NATIVE_PATH, 368 cc_out_dir = os.path.join(root_dir, common_util.get_android_out_dir(), 407 root_dir = common_util.get_android_root_dir() 418 link_project_dir = os.path.join(root_dir, 420 os.path.relpath(project_dir, root_dir))
|
D | native_module_info.py | 78 root_dir = common_util.get_android_root_dir() 79 module_info_target = os.path.relpath(module_file, root_dir)
|
D | common_util.py | 667 root_dir = get_android_root_dir() 669 root_dir, get_blueprint_json_path( 673 root_dir, get_blueprint_json_path(constant.BLUEPRINT_CC_JSONFILE_NAME))
|
/tools/tradefederation/core/atest/test_runners/ |
D | atest_tf_test_runner.py | 90 self.root_dir = os.environ.get(constants.ANDROID_BUILD_TOP) 107 key_path = os.path.join(self.root_dir, ape_api_key) 316 root_dir = os.environ.get(constants.ANDROID_BUILD_TOP) 317 return os.path.commonprefix([output, root_dir]) != root_dir
|
/tools/asuite/atest/test_runners/ |
D | atest_tf_test_runner.py | 92 self.root_dir = os.environ.get(constants.ANDROID_BUILD_TOP) 109 key_path = os.path.join(self.root_dir, ape_api_key) 327 root_dir = os.environ.get(constants.ANDROID_BUILD_TOP) 328 return os.path.commonprefix([output, root_dir]) != root_dir
|