Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DCompilerType.h104 size_t GetNumberOfFunctionArguments() const;
H A DTypeSystem.h161 GetNumberOfFunctionArguments(lldb::opaque_compiler_type_t type) = 0;
H A DClangASTContext.h579 GetNumberOfFunctionArguments(lldb::opaque_compiler_type_t type) override;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DCompilerType.cpp129 size_t CompilerType::GetNumberOfFunctionArguments() const { in GetNumberOfFunctionArguments() function in CompilerType
131 return m_type_system->GetNumberOfFunctionArguments(m_type); in GetNumberOfFunctionArguments()
H A DType.cpp1082 return m_type.GetNumberOfFunctionArguments(); in GetNumArguments()
H A DClangASTContext.cpp3250 size_t ClangASTContext::GetNumberOfFunctionArguments( in GetNumberOfFunctionArguments() function in ClangASTContext
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBType.cpp232 size_t count = func_type.GetNumberOfFunctionArguments(); in GetFunctionArgumentTypes()