Home
last modified time | relevance | path

Searched refs:root_dir (Results 1 – 7 of 7) sorted by relevance

/development/tools/idegen/
Dindex-gen.sh33 root_dir=$PWD
34 if [ ! -e $root_dir/.repo ]; then
35 root_dir=$PWD/../../..
36 if [ ! -e $root_dir/.repo ]; then
41 tmp_file=${root_dir}/tmp.txt
42 dest_file=${root_dir}/module-index.txt
55 find $root_dir -name '*.mk' \( ! -path "$root_dir/build*" -prune \) \
64 grep -v "^$root_dir/vendor/google" $tmp_file > $dest_file
Dintellij-gen.sh47 root_dir=$PWD
48 if [ ! -e $root_dir/.repo ]; then
49 root_dir=$PWD/../../..
50 if [ ! -e $root_dir/.repo ]; then
55 index_file=$root_dir/module-index.txt
63 idegenjar="$root_dir/out/host/$platform-x86/framework/idegen.jar"
/development/vndk/tools/sourcedr/blueprint/
Dlist_vndk_module.py46 def print_vndk_module_csv(output_file, module_dicts, root_dir, exclude, select): argument
57 root_dir_prefix_len = len(root_dir) + 1
90 root_dir = os.path.dirname(args.root_bp)
95 output_file, module_dicts, root_dir, exclude, select)
98 sys.stdout, module_dicts, root_dir, exclude, select)
Danalyze_manifest_split.py151 root_dir = os.path.dirname(os.path.abspath(args.blueprint))
152 root_prefix_len = len(root_dir) + 1
/development/vndk/tools/header-checker/src/utils/
Dsource_path_utils.cpp112 for (const RootDir &root_dir : root_dirs) { in NormalizePath() local
115 if (!norm_path.startswith(root_dir.path)) { in NormalizePath()
118 if (norm_path.size() == root_dir.path.size()) { in NormalizePath()
119 return root_dir.replacement; in NormalizePath()
121 llvm::StringRef suffix = norm_path.substr(root_dir.path.size()); in NormalizePath()
123 if (root_dir.replacement.empty()) { in NormalizePath()
127 if (llvm::StringRef(root_dir.replacement).endswith(separator)) { in NormalizePath()
128 return root_dir.replacement + suffix.substr(separator.size()).str(); in NormalizePath()
130 return root_dir.replacement + suffix.str(); in NormalizePath()
/development/vndk/snapshot/
Dupdate.py172 def copy_owners(root_dir, install_dir): argument
174 shutil.copy(os.path.join(root_dir, path, 'OWNERS'), install_dir)
238 root_dir = os.getcwd()
260 copy_owners(root_dir, install_dir)
/development/gsi/repack_super_image/
Drepack_super_image.py57 for root_dir, dir_names, file_names in os.walk(
60 file_path = os.path.join(root_dir, file_name)