Home
last modified time | relevance | path

Searched refs:function_type (Results 1 – 7 of 7) sorted by relevance

/development/vndk/tools/header-checker/src/repr/
Dir_representation.cpp134 void ModuleIR::AddFunctionType(FunctionTypeIR &&function_type) { in AddFunctionType() argument
135 if (!IsLinkableMessageInExportedHeaders(&function_type)) { in AddFunctionType()
139 std::move(function_type), &function_types_, &type_graph_); in AddFunctionType()
Dir_representation.h952 void AddFunctionType(FunctionTypeIR &&function_type);
/development/vndk/tools/header-checker/src/repr/json/
Dir_reader.cpp328 JsonIRReader::FunctionTypeJsonToIR(const JsonObjectRef &function_type) { in FunctionTypeJsonToIR() argument
330 ReadTypeInfo(function_type, &function_type_ir); in FunctionTypeJsonToIR()
331 ReadFunctionParametersAndReturnType(function_type, &function_type_ir); in FunctionTypeJsonToIR()
448 for (auto &&function_type : tu.GetObjects("function_types")) { in ReadFunctionTypes()
449 FunctionTypeIR function_type_ir = FunctionTypeJsonToIR(function_type); in ReadFunctionTypes()
Dir_dumper.cpp216 JsonObject function_type; in ConvertFunctionTypeIR() local
217 AddTypeInfo(function_type, function_typep); in ConvertFunctionTypeIR()
218 AddFunctionParametersAndSetReturnType(function_type, function_typep); in ConvertFunctionTypeIR()
219 return function_type; in ConvertFunctionTypeIR()
Dir_reader.h178 FunctionTypeJsonToIR(const JsonObjectRef &function_type);
/development/vndk/tools/header-checker/src/dumper/
Dabi_wrappers.h188 const clang::FunctionType *function_type, repr::ModuleIR *module,
Dabi_wrappers.cpp470 const clang::FunctionType *function_type, repr::ModuleIR *module, in FunctionTypeWrapper() argument
474 function_type_(function_type), in FunctionTypeWrapper()