Home
last modified time | relevance | path

Searched refs:TextFormatIR (Results 1 – 12 of 12) sorted by relevance

/development/vndk/tools/header-checker/src/repr/
Dir_reader.cpp35 TextFormatIR text_format, const std::set<std::string> *exported_headers) { in CreateIRReader()
37 case TextFormatIR::ProtobufTextFormat: in CreateIRReader()
39 case TextFormatIR::Json: in CreateIRReader()
Dir_diff_dumper.cpp31 TextFormatIR text_format, const std::string &dump_path) { in CreateIRDiffDumper()
33 case TextFormatIR::ProtobufTextFormat: in CreateIRDiffDumper()
Dir_dumper.cpp33 TextFormatIR text_format, const std::string &dump_path) { in CreateIRDumper()
35 case TextFormatIR::ProtobufTextFormat: in CreateIRDumper()
37 case TextFormatIR::Json: in CreateIRDumper()
Dir_dumper.h34 TextFormatIR text_format, const std::string &dump_path);
Dir_reader.h32 TextFormatIR text_format,
Dir_diff_dumper.h57 TextFormatIR, const std::string &dump_path);
Dir_representation.h40 enum TextFormatIR { enum
/development/vndk/tools/header-checker/src/diff/
Dheader_abi_diff.cpp31 using header_checker::repr::TextFormatIR;
102 static llvm::cl::opt<TextFormatIR> text_format_old(
104 llvm::cl::values(clEnumValN(TextFormatIR::ProtobufTextFormat,
106 clEnumValN(TextFormatIR::Json, "Json", "JSON")),
107 llvm::cl::init(TextFormatIR::Json),
110 static llvm::cl::opt<TextFormatIR> text_format_new(
112 llvm::cl::values(clEnumValN(TextFormatIR::ProtobufTextFormat,
114 clEnumValN(TextFormatIR::Json, "Json", "JSON")),
115 llvm::cl::init(TextFormatIR::Json),
118 static llvm::cl::opt<TextFormatIR> text_format_diff(
[all …]
Dabi_diff.h42 bool check_all_apis, repr::TextFormatIR text_format_old, in HeaderAbiDiff()
43 repr::TextFormatIR text_format_new, in HeaderAbiDiff()
44 repr::TextFormatIR text_format_diff) in HeaderAbiDiff()
160 repr::TextFormatIR text_format_old_;
161 repr::TextFormatIR text_format_new_;
162 repr::TextFormatIR text_format_diff_;
/development/vndk/tools/header-checker/src/dumper/
Dheader_checker.cpp43 using header_checker::repr::TextFormatIR;
86 static llvm::cl::opt<TextFormatIR> output_format(
88 llvm::cl::values(clEnumValN(TextFormatIR::ProtobufTextFormat,
90 clEnumValN(TextFormatIR::Json, "Json", "JSON")),
91 llvm::cl::init(TextFormatIR::Json),
Dheader_checker.h35 repr::TextFormatIR text_format_;
43 repr::TextFormatIR text_format, bool dump_exported_only, in HeaderCheckerOptions()
/development/vndk/tools/header-checker/src/linker/
Dheader_abi_linker.cpp41 using header_checker::repr::TextFormatIR;
130 static llvm::cl::opt<TextFormatIR> input_format(
132 llvm::cl::values(clEnumValN(TextFormatIR::ProtobufTextFormat,
134 clEnumValN(TextFormatIR::Json, "Json", "JSON")),
135 llvm::cl::init(TextFormatIR::Json),
138 static llvm::cl::opt<TextFormatIR> output_format(
140 llvm::cl::values(clEnumValN(TextFormatIR::ProtobufTextFormat,
142 clEnumValN(TextFormatIR::Json, "Json", "JSON")),
143 llvm::cl::init(TextFormatIR::Json),