Added ClangNamespaceDecl * parameters to several

core Module functions that the expression parser
will soon be using.

llvm-svn: 141766
This commit is contained in:
Sean Callanan
2011-10-12 02:08:07 +00:00
parent 8897224363
commit b6d70ebc0a
14 changed files with 67 additions and 34 deletions

View File

@@ -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);