Home
last modified time | relevance | path

Searched refs:arg_types (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/
H A DSymbolFileCTF.cpp478 std::vector<CompilerType> arg_types; in CreateFunction() local
481 arg_types.push_back(arg_type->GetFullCompilerType()); in CreateFunction()
492 ret_type->GetFullCompilerType(), arg_types, ctf_function.variadic, 0, in CreateFunction()
790 std::vector<CompilerType> arg_types; in ParseFunctions() local
791 arg_types.reserve(num_args); in ParseFunctions()
804 arg_types.push_back(arg_type ? arg_type->GetFullCompilerType() in ParseFunctions()
817 arg_types, is_variadic, 0, clang::CallingConv::CC_C); in ParseFunctions()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbAstBuilder.cpp1199 std::vector<CompilerType> arg_types; in CreateFunctionType() local
1200 arg_types.reserve(arg_indices.size()); in CreateFunctionType()
1206 arg_types.push_back(ToCompilerType(arg_type)); in CreateFunctionType()
1220 m_clang.CreateFunctionType(return_ct, arg_types, is_variadic, 0, *cc); in CreateFunctionType()