Lines Matching refs:constant

49 from aidegen import constant
92 constant.IDE_CLION, constant.IDE_INTELLIJ, constant.IDE_ECLIPSE]
96 _LANGUAGE_OPTIONS = [constant.JAVA, constant.C_CPP]
200 if config.ide_name == constant.IDE_ECLIPSE:
222 if ide_util_obj.ide_name() == constant.IDE_ECLIPSE:
232 aidegen_metrics.ends_asuite_metrics(constant.EXIT_CODE_EXCEPTION)
253 ide_name = constant.IDE_NAME_DICT[args.ide[0]]
335 print(constant.WARN_MSG.format(
340 java_list = targets[constant.JAVA] if constant.JAVA in targets else None
341 c_cpp_list = targets[constant.C_CPP] if constant.C_CPP in targets else None
342 rust_list = targets[constant.RUST] if constant.RUST in targets else None
349 print(constant.WARN_MSG.format(
352 if language == constant.JAVA:
354 print(constant.WARN_MSG.format(
356 _NO_LANGUAGE_PROJECT_EXIST.format(constant.JAVA)))
360 if language == constant.C_CPP:
362 print(constant.WARN_MSG.format(
364 _NO_LANGUAGE_PROJECT_EXIST.format(constant.C_CPP)))
393 print(constant.WARN_MSG.format(
518 exit_code = constant.EXIT_CODE_NORMAL
527 constant.VERSION_FILE)
529 sys.exit(constant.EXIT_CODE_NORMAL)
533 sys.exit(constant.EXIT_CODE_NORMAL)
539 references = [constant.ANDROID_TREE] if is_whole_android_tree else []
541 print(constant.WARN_MSG.format(
548 exit_code = constant.EXIT_CODE_EXCEPTION
551 exit_code = constant.EXIT_CODE_AIDEGEN_EXCEPTION
554 exit_code = constant.EXIT_CODE_NORMAL
555 if exit_code is not constant.EXIT_CODE_NORMAL:
569 if not launch_ide and exit_code is constant.EXIT_CODE_NORMAL:
601 constant.IDE_DICT[config.ide_name])
602 all_langs = config.ide_name == constant.IDE_VSCODE
605 language_targets = {constant.JAVA: jtargets,
606 constant.C_CPP: ctargets,
607 constant.RUST: rtargets}