forked from OSchip/llvm-project
Update docstrings for SBModeule/SBTarget::FindGlobalVariables().
llvm-svn: 135019
This commit is contained in:
parent
16323380cd
commit
4c9c3ee08a
|
@ -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.
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue