diff options
author | Sean Callanan <scallanan@apple.com> | 2011-10-12 02:08:07 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2011-10-12 02:08:07 +0000 |
commit | b6d70ebc0a37c6e1657cb1f17d8f67dabefbeda8 (patch) | |
tree | 81eda6ffe0a14872577ec166e33200a4f4a67814 /lldb/source/API/SBModule.cpp | |
parent | 88972243638da61c7807ef9715cc2ad10b80dd42 (diff) | |
download | bcm5719-llvm-b6d70ebc0a37c6e1657cb1f17d8f67dabefbeda8.tar.gz bcm5719-llvm-b6d70ebc0a37c6e1657cb1f17d8f67dabefbeda8.zip |
Added ClangNamespaceDecl * parameters to several
core Module functions that the expression parser
will soon be using.
llvm-svn: 141766
Diffstat (limited to 'lldb/source/API/SBModule.cpp')
-rw-r--r-- | lldb/source/API/SBModule.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lldb/source/API/SBModule.cpp b/lldb/source/API/SBModule.cpp index 790d8ddca89..98bb195ca72 100644 --- a/lldb/source/API/SBModule.cpp +++ b/lldb/source/API/SBModule.cpp @@ -344,7 +344,8 @@ SBModule::FindFunctions (const char *name, if (m_opaque_sp) { const bool symbols_ok = true; - return m_opaque_sp->FindFunctions (ConstString(name), + return m_opaque_sp->FindFunctions (ConstString(name), + NULL, name_type_mask, symbols_ok, append, @@ -361,7 +362,8 @@ SBModule::FindGlobalVariables (SBTarget &target, const char *name, uint32_t max_ if (m_opaque_sp) { VariableList variable_list; - const uint32_t match_count = m_opaque_sp->FindGlobalVariables (ConstString (name), + const uint32_t match_count = m_opaque_sp->FindGlobalVariables (ConstString (name), + NULL, false, max_matches, variable_list); @@ -398,6 +400,7 @@ SBModule::FindFirstType (const char* name_cstr) num_matches = m_opaque_sp->FindTypes(sc, name, + NULL, false, 1, type_list); @@ -423,6 +426,7 @@ SBModule::FindTypes (const char* type) num_matches = m_opaque_sp->FindTypes(sc, name, + NULL, false, UINT32_MAX, type_list); |