Searched refs:TextFormatIR (Results 1 – 12 of 12) sorted by relevance
/development/vndk/tools/header-checker/src/diff/ |
D | header_abi_diff.cpp | 32 using header_checker::repr::TextFormatIR; 105 static llvm::cl::opt<TextFormatIR> text_format_old( 107 llvm::cl::values(clEnumValN(TextFormatIR::ProtobufTextFormat, 109 clEnumValN(TextFormatIR::Json, "Json", "JSON")), 110 llvm::cl::init(TextFormatIR::Json), 113 static llvm::cl::opt<TextFormatIR> text_format_new( 115 llvm::cl::values(clEnumValN(TextFormatIR::ProtobufTextFormat, 117 clEnumValN(TextFormatIR::Json, "Json", "JSON")), 118 llvm::cl::init(TextFormatIR::Json), 121 static llvm::cl::opt<TextFormatIR> text_format_diff( [all …]
|
D | abi_diff.h | 41 bool check_all_apis, repr::TextFormatIR text_format_old, in HeaderAbiDiff() 42 repr::TextFormatIR text_format_new, in HeaderAbiDiff() 43 repr::TextFormatIR text_format_diff) in HeaderAbiDiff() 157 repr::TextFormatIR text_format_old_; 158 repr::TextFormatIR text_format_new_; 159 repr::TextFormatIR text_format_diff_;
|
/development/vndk/tools/header-checker/src/repr/ |
D | ir_diff_dumper.cpp | 31 TextFormatIR text_format, const std::string &dump_path) { in CreateIRDiffDumper() 33 case TextFormatIR::ProtobufTextFormat: in CreateIRDiffDumper()
|
D | ir_dumper.cpp | 33 TextFormatIR text_format, const std::string &dump_path) { in CreateIRDumper() 35 case TextFormatIR::ProtobufTextFormat: in CreateIRDumper() 37 case TextFormatIR::Json: in CreateIRDumper()
|
D | ir_dumper.h | 34 TextFormatIR text_format, const std::string &dump_path);
|
D | ir_diff_dumper.h | 57 TextFormatIR, const std::string &dump_path);
|
D | ir_reader.cpp | 40 TextFormatIR text_format, const std::set<std::string> *exported_headers) { in CreateIRReader() 42 case TextFormatIR::ProtobufTextFormat: in CreateIRReader() 44 case TextFormatIR::Json: in CreateIRReader()
|
D | ir_reader.h | 53 TextFormatIR text_format,
|
D | ir_representation.h | 43 enum TextFormatIR { enum
|
/development/vndk/tools/header-checker/src/dumper/ |
D | header_checker.cpp | 42 using header_checker::repr::TextFormatIR; 80 static llvm::cl::opt<TextFormatIR> output_format( 82 llvm::cl::values(clEnumValN(TextFormatIR::ProtobufTextFormat, 84 clEnumValN(TextFormatIR::Json, "Json", "JSON")), 85 llvm::cl::init(TextFormatIR::Json),
|
D | header_checker.h | 33 repr::TextFormatIR text_format_; 40 repr::TextFormatIR text_format, in HeaderCheckerOptions()
|
/development/vndk/tools/header-checker/src/linker/ |
D | header_abi_linker.cpp | 40 using header_checker::repr::TextFormatIR; 91 static llvm::cl::opt<TextFormatIR> input_format( 93 llvm::cl::values(clEnumValN(TextFormatIR::ProtobufTextFormat, 95 clEnumValN(TextFormatIR::Json, "Json", "JSON")), 96 llvm::cl::init(TextFormatIR::Json), 99 static llvm::cl::opt<TextFormatIR> output_format( 101 llvm::cl::values(clEnumValN(TextFormatIR::ProtobufTextFormat, 103 clEnumValN(TextFormatIR::Json, "Json", "JSON")), 104 llvm::cl::init(TextFormatIR::Json),
|