Lines Matching refs:cl
49 static llvm::cl::OptionCategory header_checker_category(
52 static llvm::cl::opt<std::string> header_file(
53 llvm::cl::Positional, llvm::cl::desc("<source.cpp>"), llvm::cl::Required,
54 llvm::cl::cat(header_checker_category));
56 static llvm::cl::opt<std::string> out_dump(
57 "o", llvm::cl::value_desc("out_dump"), llvm::cl::Required,
58 llvm::cl::desc("Specify the reference dump file name"),
59 llvm::cl::cat(header_checker_category));
61 static llvm::cl::list<std::string> exported_header_dirs(
62 "I", llvm::cl::desc("<export_include_dirs>"), llvm::cl::Prefix,
63 llvm::cl::ZeroOrMore, llvm::cl::cat(header_checker_category));
65 static llvm::cl::opt<bool> no_filter(
66 "no-filter", llvm::cl::desc("Do not filter any abi"), llvm::cl::Optional,
67 llvm::cl::cat(header_checker_category));
69 static llvm::cl::opt<bool> suppress_errors(
71 llvm::cl::desc("Suppress preprocess and semantic errors"),
72 llvm::cl::Optional, llvm::cl::cat(header_checker_category));
74 static llvm::cl::opt<bool> dump_function_declarations(
76 llvm::cl::desc("Output the functions declared but not defined in the input "
78 llvm::cl::Optional, llvm::cl::cat(header_checker_category));
80 static llvm::cl::opt<TextFormatIR> output_format(
81 "output-format", llvm::cl::desc("Specify format of output dump file"),
82 llvm::cl::values(clEnumValN(TextFormatIR::ProtobufTextFormat,
85 llvm::cl::init(TextFormatIR::Json),
86 llvm::cl::cat(header_checker_category));
109 llvm::cl::ParseCommandLineOptions( in main()