Home
last modified time | relevance | path

Searched refs:ltp_root (Results 1 – 4 of 4) sorted by relevance

/external/ltp/android/tools/
Dmake_install_parser.py38 def __init__(self, ltp_root): argument
39 self.ltp_root = ltp_root
51 (os.path.realpath(self.ltp_root), os.sep))
65 os.path.realpath(self.ltp_root) + os.sep + src):
87 make_install_parser = MakeInstallParser(args.ltp_root)
Dmake_parser.py39 def __init__(self, ltp_root): argument
40 self.ltp_root = ltp_root
66 path = os.path.realpath(self.ltp_root + os.sep + self.dir_stack[-1]
68 return os.path.realpath(path).replace(self.ltp_root + os.sep, '')
201 make_parser = MakeParser(args.ltp_root)
Dandroid_build_generator.py253 def ParseInput(self, input_list, ltp_root): argument
312 … cc_includes[target] = [i for i in cc_includes[target] if os.path.isdir(os.path.join(ltp_root, i))]
430 def ParseAll(self, ltp_root): argument
436 parser = make_parser.MakeParser(ltp_root)
437 self.ParseInput(parser.ParseFile(MAKE_DRY_RUN_FILE_NAME), ltp_root)
438 parser = make_install_parser.MakeInstallParser(ltp_root)
439 self.ParseInput(parser.ParseFile(MAKE_INSTALL_DRY_RUN_FILE_NAME), ltp_root)
480 generator.ParseAll(args.ltp_root)
Dgen_android_build.sh69 python android_build_generator.py --ltp_root $LTP_ROOT --output_mk_path $OUTPUT_MK \