/development/vndk/tools/header-checker/src/diff/ |
D | abi_diff.h | 29 using repr::AbiElementMap; 30 using repr::DiffPolicyOptions; 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() 53 repr::CompatibilityStatusIR GenerateCompatibilityReport(); 56 repr::CompatibilityStatusIR CompareTUs( 57 const repr::ModuleIR &old_tu, 58 const repr::ModuleIR &new_tu, 59 repr::IRDiffDumper *ir_diff_dumper); [all …]
|
D | abi_diff.cpp | 32 repr::CompatibilityStatusIR HeaderAbiDiff::GenerateCompatibilityReport() { in GenerateCompatibilityReport() 33 std::unique_ptr<repr::IRReader> old_reader = in GenerateCompatibilityReport() 34 repr::IRReader::CreateIRReader(text_format_old_); in GenerateCompatibilityReport() 40 std::unique_ptr<repr::IRReader> new_reader = in GenerateCompatibilityReport() 41 repr::IRReader::CreateIRReader(text_format_new_); in GenerateCompatibilityReport() 47 std::unique_ptr<repr::IRDiffDumper> ir_diff_dumper = in GenerateCompatibilityReport() 48 repr::IRDiffDumper::CreateIRDiffDumper(text_format_diff_, cr_); in GenerateCompatibilityReport() 49 repr::CompatibilityStatusIR status = in GenerateCompatibilityReport() 59 repr::CompatibilityStatusIR HeaderAbiDiff::CompareTUs( in CompareTUs() 60 const repr::ModuleIR &old_tu, const repr::ModuleIR &new_tu, in CompareTUs() [all …]
|
D | abi_diff_wrappers.cpp | 26 using repr::AbiElementMap; 27 using repr::DiffStatus; 28 using repr::Unwind; 32 bool DiffWrapper<repr::RecordTypeIR>::DumpDiff( in DumpDiff() 33 repr::DiffMessageIR::DiffKind diff_kind) { in DumpDiff() 48 bool DiffWrapper<repr::EnumTypeIR>::DumpDiff( in DumpDiff() 49 repr::DiffMessageIR::DiffKind diff_kind) { in DumpDiff() 64 bool DiffWrapper<repr::GlobalVarIR>::DumpDiff( in DumpDiff() 65 repr::DiffMessageIR::DiffKind diff_kind) { in DumpDiff() 74 repr::GlobalVarIR old_global_var = *oldp_; in DumpDiff() [all …]
|
D | abi_diff_wrappers.h | 26 using repr::AbiDiffHelper; 27 using repr::AbiElementMap; 28 using repr::DiffStatus; 42 repr::IRDiffDumper *ir_diff_dumper, in DiffWrapper() 43 const AbiElementMap<const repr::TypeIR *> &old_types, in DiffWrapper() 44 const AbiElementMap<const repr::TypeIR *> &new_types, in DiffWrapper() 45 const repr::DiffPolicyOptions &diff_policy_options, in DiffWrapper() 51 bool DumpDiff(repr::IRDiffDumper::DiffKind diff_kind);
|
D | header_abi_diff.cpp | 30 using header_checker::repr::CompatibilityStatusIR; 31 using header_checker::repr::DiffPolicyOptions; 32 using header_checker::repr::TextFormatIR;
|
/development/vndk/tools/header-checker/src/dumper/ |
D | abi_wrappers.h | 33 std::unique_ptr<repr::TypeIR> typep_; 35 TypeAndCreationStatus(std::unique_ptr<repr::TypeIR> &&typep, 46 repr::ModuleIR *module, 64 repr::TemplatedArtifactIR *ta, 69 bool SetupFunctionParameter(repr::CFunctionLikeIR *functionp, 83 repr::TypeIR *typep, 87 repr::TypeIR *typep); 101 repr::ModuleIR *module_; 111 const clang::RecordDecl *record_decl, repr::ModuleIR *module, 120 bool SetupRecordInfo(repr::RecordTypeIR *type, [all …]
|
D | abi_wrappers.cpp | 38 static repr::AccessSpecifierIR AccessClangToIR( in AccessClangToIR() 42 return repr::AccessSpecifierIR::PrivateAccess; in AccessClangToIR() 45 return repr::AccessSpecifierIR::ProtectedAccess; in AccessClangToIR() 48 return repr::AccessSpecifierIR::PublicAccess; in AccessClangToIR() 62 repr::ModuleIR *module, in ABIWrapper() 109 repr::TemplatedArtifactIR *ta, in SetupTemplateArguments() 111 repr::TemplateInfoIR template_info; in SetupTemplateArguments() 120 repr::TemplateElementIR(GetTypeUniqueId(type))); in SetupTemplateArguments() 131 repr::CFunctionLikeIR *functionp, const clang::QualType qual_type, in SetupFunctionParameter() 137 functionp->AddParameter(repr::ParamIR( in SetupFunctionParameter() [all …]
|
D | ast_processing.cpp | 36 const clang::Decl *tu_decl, repr::ModuleIR *module, in HeaderASTVisitor() 71 static bool MutateFunctionWithLinkageName(const repr::FunctionIR *function, in MutateFunctionWithLinkageName() 72 repr::ModuleIR *module, in MutateFunctionWithLinkageName() 74 auto added_function = std::make_unique<repr::FunctionIR>(); in MutateFunctionWithLinkageName() 80 static bool AddMangledFunctions(const repr::FunctionIR *function, in AddMangledFunctions() 81 repr:: ModuleIR *module, in AddMangledFunctions() 208 std::unique_ptr<repr::ModuleIR> module( in HandleTranslationUnit() 209 new repr::ModuleIR(nullptr /*FIXME*/)); in HandleTranslationUnit() 218 std::unique_ptr<repr::IRDumper> ir_dumper = in HandleTranslationUnit() 219 repr::IRDumper::CreateIRDumper(options_.text_format_, in HandleTranslationUnit()
|
D | header_checker.h | 33 repr::TextFormatIR text_format_; 40 repr::TextFormatIR text_format, in HeaderCheckerOptions()
|
D | ast_processing.h | 43 repr::ModuleIR *module, 68 repr::ModuleIR *module_;
|
/development/vndk/tools/sourcedr/blueprint/tests/ |
D | test_parser.py | 77 self.assertEqual(repr(parser.var_defs[0][1]), repr('example')) 86 self.assertEqual(repr(parser.var_defs[0][1]), repr([])) 95 self.assertEqual(repr(parser.var_defs[0][1]), repr(['x'])) 104 self.assertEqual(repr(parser.var_defs[0][1]), repr(['x'])) 113 self.assertEqual(repr(parser.var_defs[0][1]), repr(['x', 'y'])) 122 self.assertEqual(repr(parser.var_defs[0][1]), repr(['x', 'y'])) 131 self.assertEqual(repr(parser.var_defs[0][1]), repr({})) 140 self.assertEqual(repr(parser.var_defs[0][1]), '{x: \'1\'}') 149 self.assertEqual(repr(parser.var_defs[0][1]), '{x: \'1\'}') 158 self.assertEqual(repr(parser.var_defs[0][1]), '{x: \'1\', y: \'2\'}') [all …]
|
D | test_ast.py | 90 self.assertEqual('False', repr(Bool(False))) 91 self.assertEqual('True', repr(Bool(True))) 149 self.assertEqual('0', repr(Integer(0))) 150 self.assertEqual('1', repr(Integer(1)))
|
/development/vndk/tools/header-checker/src/linker/ |
D | header_abi_linker.cpp | 40 using header_checker::repr::TextFormatIR; 129 bool LinkDecl(repr::ModuleIR *dst, 130 const repr::AbiElementMap<T> &src, 133 std::unique_ptr<repr::IRReader> ReadInputDumpFiles(); 141 bool LinkTypes(repr::ModuleIR &module, repr::ModuleIR *linked_module); 143 bool LinkFunctions(repr::ModuleIR &module, repr::ModuleIR *linked_module); 145 bool LinkGlobalVars(repr::ModuleIR &module, repr::ModuleIR *linked_module); 147 bool LinkExportedSymbols(repr::ModuleIR *linked_module); 149 bool LinkExportedSymbols(repr::ModuleIR *linked_module, 150 const repr::ExportedSymbolSet &exported_symbols); [all …]
|
/development/vndk/tools/header-checker/ |
D | Android.bp | 152 "src/repr/abi_diff_helpers.cpp", 153 "src/repr/ir_diff_dumper.cpp", 154 "src/repr/ir_dumper.cpp", 155 "src/repr/ir_reader.cpp", 156 "src/repr/ir_representation.cpp", 157 "src/repr/json/converter.cpp", 158 "src/repr/json/ir_dumper.cpp", 159 "src/repr/json/ir_reader.cpp", 160 "src/repr/protobuf/converter.cpp", 161 "src/repr/protobuf/ir_diff_dumper.cpp", [all …]
|
/development/vndk/tools/header-checker/src/repr/ |
D | ir_diff_dumper.cpp | 27 namespace repr { namespace
|
D | ir_dumper.h | 24 namespace repr {
|
D | ir_diff_dumper.h | 24 namespace repr {
|
/development/vndk/tools/header-checker/src/repr/symbol/ |
D | so_file_parser.h | 26 namespace repr {
|
D | exported_symbol_set.cpp | 26 namespace repr { namespace
|
/development/vndk/tools/header-checker/src/repr/json/ |
D | api.h | 24 namespace repr {
|
D | converter.cpp | 19 namespace repr { namespace
|
/development/vndk/tools/header-checker/src/repr/protobuf/ |
D | api.h | 24 namespace repr {
|
D | ir_dumper.h | 25 namespace repr {
|
/development/vndk/tools/sourcedr/blueprint/ |
D | analyze_manifest_split.py | 111 'system_only=' + repr(self.system_only) + ', ' 112 'vendor_only=' + repr(self.vendor_only) + ', ' 113 'both=' + repr(self.both) + ')')
|
/development/tools/winscope/adb_proxy/ |
D | winscope_proxy.py | 234 return self.__internal_error(repr(ex)) 244 log.debug('Error executing adb command: {}\n{}'.format(' '.join(command), repr(ex))) 245 raise AdbError('Error executing adb command: {}\n{}'.format(' '.join(command), repr(ex))) 263 log.debug('Error executing adb command: adb {}\n{}'.format(params, repr(ex))) 264 raise AdbError('Error executing adb command: adb {}\n{}'.format(params, repr(ex))) 344 raise AdbError('Error executing adb command: adb shell\n{}'.format(repr(ex)))
|