Lines Matching defs:OutputFormatTy
102 enum OutputFormatTy {
108 static llvm::cl::opt<OutputFormatTy>
110 llvm::cl::values(clEnumValN(OutputFormatTy::yaml, "yaml",
112 clEnumValN(OutputFormatTy::md, "md",
114 clEnumValN(OutputFormatTy::html, "html",
116 llvm::cl::init(OutputFormatTy::yaml),
121 case OutputFormatTy::yaml:
123 case OutputFormatTy::md:
125 case OutputFormatTy::html:
128 llvm_unreachable("Unknown OutputFormatTy");