Lines Matching defs:clean
235 "clean": {
236 "flags": ["--clean", "-clean"],
241 "clean-continue": {
242 "flags": ["--clean-continue", "-clean-continue"],
753 " python3 ark.py \033[92mx64.release ark_js_vm es2panda --clean\033[0m\n"
777 def clean(self, out_path: str):
779 print("Path \"{}\" does not exist! No need to clean it.".format(out_path))
781 print("=== clean start ===")
782 code = _call("{0} clean {1}".format(self.gn_binary_path, out_path))
784 print("=== clean failed! ===\n")
786 print("=== clean success! ===\n")
996 # match [option][clean] flag
997 if self.is_dict_flags_match_arg(self.ARG_DICT.get("option").get("clean"), arg):
998 self.clean(out_path)
1000 # match [option][clean-continue] flag
1001 elif self.is_dict_flags_match_arg(self.ARG_DICT.get("option").get("clean-continue"), arg):
1003 self.clean(out_path)