Searched refs:function_type (Results 1 – 7 of 7) sorted by relevance
/development/vndk/tools/header-checker/src/repr/ |
D | ir_representation.cpp | 116 void ModuleIR::AddFunctionType(FunctionTypeIR &&function_type) { in AddFunctionType() argument 117 if (!IsLinkableMessageInExportedHeaders(&function_type)) { in AddFunctionType() 121 std::move(function_type), &function_types_, &type_graph_); in AddFunctionType()
|
D | ir_representation.h | 852 void AddFunctionType(FunctionTypeIR &&function_type);
|
/development/vndk/tools/header-checker/src/repr/json/ |
D | ir_reader.cpp | 284 JsonIRReader::FunctionTypeJsonToIR(const JsonObjectRef &function_type) { in FunctionTypeJsonToIR() argument 286 ReadTypeInfo(function_type, &function_type_ir); in FunctionTypeJsonToIR() 287 ReadFunctionParametersAndReturnType(function_type, &function_type_ir); in FunctionTypeJsonToIR() 399 for (auto &&function_type : tu.GetObjects("function_types")) { in ReadFunctionTypes() 400 FunctionTypeIR function_type_ir = FunctionTypeJsonToIR(function_type); in ReadFunctionTypes()
|
D | ir_dumper.cpp | 191 JsonObject function_type; in ConvertFunctionTypeIR() local 192 AddTypeInfo(function_type, function_typep); in ConvertFunctionTypeIR() 193 AddFunctionParametersAndSetReturnType(function_type, function_typep); in ConvertFunctionTypeIR() 194 return function_type; in ConvertFunctionTypeIR()
|
D | ir_reader.h | 174 FunctionTypeJsonToIR(const JsonObjectRef &function_type);
|
/development/vndk/tools/header-checker/src/dumper/ |
D | abi_wrappers.h | 182 const clang::FunctionType *function_type, repr::ModuleIR *module,
|
D | abi_wrappers.cpp | 439 const clang::FunctionType *function_type, repr::ModuleIR *module, in FunctionTypeWrapper() argument 443 function_type_(function_type), in FunctionTypeWrapper()
|