Home
last modified time | relevance | path

Searched refs:rel_path (Results 1 – 3 of 3) sorted by relevance

/bionic/libc/kernel/tools/
Dupdate_all.py51 rel_path = src_file[src_dir_len:]
53 if os.path.exists(os.path.join(mod_src_dir, rel_path)):
54 src_file = os.path.join(mod_src_dir, rel_path)
55 src_str = os.path.join("<modified>", src_rel_dir, rel_path)
57 src_str = os.path.join("<original>", src_rel_dir, rel_path)
58 dst_file = os.path.join(update_dir, rel_path)
59 new_data = clean_header.cleanupFile(dst_file, src_file, rel_path)
70 update_path = os.path.join(update_rel_dir, rel_path)
Dclean_header.py82 def cleanupFile(dst_file, src_file, rel_path, no_update = True): argument
97 m = re.search(r"(^|/)asm-([\w\d_\+\.\-]+)/.*", rel_path)
/bionic/tools/versioner/src/
DPreprocessor.cpp459 std::string rel_path = path.substr(src_dir.length() + 1).str(); in preprocessHeaders() local
460 std::string dst_path = dst_dir + "/" + rel_path; in preprocessHeaders()
497 llvm::StringRef rel_path = file_path.substr(src_dir.size(), file_path.size() - src_dir.size()); in preprocessHeaders() local
498 std::string output_path = (llvm::Twine(dst_dir) + rel_path).str(); in preprocessHeaders()