Home
last modified time | relevance | path

Searched refs:root_dir (Results 1 – 14 of 14) 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/header-checker/src/utils/
Dcollect_exported_headers.cpp50 const std::string &root_dir) { in NormalizePath() argument
57 if (llvm::sys::path::replace_path_prefix(norm_path, root_dir, "")) { in NormalizePath()
66 const std::string &root_dir) { in CollectExportedHeaderSet() argument
101 exported_headers->insert(NormalizePath(file_path, root_dir)); in CollectExportedHeaderSet()
108 const std::string &root_dir) { in CollectAllExportedHeaders() argument
111 if (!CollectExportedHeaderSet(dir, &exported_headers, root_dir)) { in CollectAllExportedHeaders()
Dheader_abi_util.h33 std::string NormalizePath(const std::string &path, const std::string &root_dir);
37 const std::string &root_dir);
/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/dumper/
Dast_util.h33 const std::string &root_dir) in ASTCaches()
34 : translation_unit_source_(translation_unit_source), root_dir_(root_dir) { in ASTCaches()
Dheader_checker.h42 std::string root_dir, repr::TextFormatIR text_format, in HeaderCheckerOptions() argument
47 root_dir_(std::move(root_dir)), text_format_(text_format), in HeaderCheckerOptions()
Dheader_checker.cpp66 static llvm::cl::opt<std::string> root_dir( variable
175 const std::string root_dir_or_cwd = (root_dir.empty() ? GetCwd() : root_dir); in main()
Dast_processing.cpp36 PrintNormalizedPath(const std::string root_dir) : root_dir_(root_dir) {} in PrintNormalizedPath() argument
Dabi_wrappers.h52 const std::string &root_dir);
Dabi_wrappers.cpp72 const std::string &root_dir) { in GetDeclSourceFile() argument
83 root_dir); in GetDeclSourceFile()
/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)
/development/vndk/tools/header-checker/src/linker/
Dheader_abi_linker.cpp61 static llvm::cl::opt<std::string> root_dir( variable
259 exported_header_dirs_, root_dir.empty() ? GetCwd() : root_dir); in LinkAndDump()