Lines Matching refs:ccj
441 def add_ccj(self, ccj): argument
443 for entry in ccj:
559 def gen_xcode(ccj): argument
562 p.add_ccj(ccj)
584 def add_ccj(self, ccj): argument
585 for entry in ccj:
610 def gen_vscode(ccj): argument
612 p.add_ccj(ccj)
726 def gen_clion(ccj): argument
728 p.add_ccj(ccj)
745 ccj = json.load(open(args.compile_commands, 'r'))
748 return gen_xcode(ccj)
750 return gen_vscode(ccj)
752 return gen_clion(ccj)