Lines Matching refs:args
31 def gen_doc(args): argument
32 html_output_dir = args.output
35 suffix=os.path.basename(args.doxygen_file)) as doxygen_file:
36 shutil.copyfile(args.doxygen_file, doxygen_file.name)
40 raise Exception('Failed to read %s' % args.doxygen_file)
44 args.version,
46 args.exclude_dir,
48 os.path.relpath(html_output_dir, args.working_dir)
62 if os.path.exists(args.working_dir) is not True:
65 os.chdir(args.working_dir)
75 args.working_dir)
95 args = parser.parse_args()
97 return gen_doc(args)