Update docstrings for SBModeule/SBTarget::FindGlobalVariables().

llvm-svn: 135019
This commit is contained in:
Johnny Chen 2011-07-13 00:46:49 +00:00
parent 16323380cd
commit 4c9c3ee08a
2 changed files with 24 additions and 2 deletions

View File

@ -175,12 +175,15 @@ public:
//------------------------------------------------------------------
/// Find global and static variables by name.
///
/// @param[in] target
/// A valid SBTarget instance representing the debuggee.
///
/// @param[in] name
/// The name of the global or static variable we are looking
/// for.
///
/// @param[in] target
/// The target program where the variables reside.
/// @param[in] max_matches
/// Allow the number of matches to be limited to \a max_matches.
///
/// @return
/// A list of matched variables in an SBValueList.

View File

@ -290,6 +290,25 @@ public:
bool append,
lldb::SBSymbolContextList& sc_list);
#ifdef SWIG
%feature("autodoc", "
#endif
//------------------------------------------------------------------
/// Find global and static variables by name.
///
/// @param[in] name
/// The name of the global or static variable we are looking
/// for.
///
/// @param[in] max_matches
/// Allow the number of matches to be limited to \a max_matches.
///
/// @return
/// A list of matched variables in an SBValueList.
//------------------------------------------------------------------
#ifdef SWIG
") FindGlobalVariables;
#endif
lldb::SBValueList
FindGlobalVariables (const char *name,
uint32_t max_matches);