forked from OSchip/llvm-project
Add docstrings for SetCondition() and GetCondition() APIs.
llvm-svn: 142396
This commit is contained in:
parent
93b0f7b319
commit
85ced807f5
|
@ -128,9 +128,19 @@ public:
|
|||
uint32_t
|
||||
GetIgnoreCount () const;
|
||||
|
||||
%feature("docstring", "
|
||||
//--------------------------------------------------------------------------
|
||||
/// The breakpoint stops only if the condition expression evaluates to true.
|
||||
//--------------------------------------------------------------------------
|
||||
") SetCondition;
|
||||
void
|
||||
SetCondition (const char *condition);
|
||||
|
||||
%feature("docstring", "
|
||||
//------------------------------------------------------------------
|
||||
/// Get the condition expression for the breakpoint.
|
||||
//------------------------------------------------------------------
|
||||
") GetCondition;
|
||||
const char *
|
||||
GetCondition ();
|
||||
|
||||
|
|
|
@ -50,9 +50,20 @@ public:
|
|||
void
|
||||
SetIgnoreCount (uint32_t n);
|
||||
|
||||
%feature("docstring", "
|
||||
//--------------------------------------------------------------------------
|
||||
/// The breakpoint location stops only if the condition expression evaluates
|
||||
/// to true.
|
||||
//--------------------------------------------------------------------------
|
||||
") SetCondition;
|
||||
void
|
||||
SetCondition (const char *condition);
|
||||
|
||||
%feature("docstring", "
|
||||
//------------------------------------------------------------------
|
||||
/// Get the condition expression for the breakpoint location.
|
||||
//------------------------------------------------------------------
|
||||
") GetCondition;
|
||||
const char *
|
||||
GetCondition ();
|
||||
|
||||
|
|
|
@ -66,9 +66,19 @@ public:
|
|||
void
|
||||
SetIgnoreCount (uint32_t n);
|
||||
|
||||
%feature("docstring", "
|
||||
//------------------------------------------------------------------
|
||||
/// Get the condition expression for the watchpoint.
|
||||
//------------------------------------------------------------------
|
||||
") GetCondition;
|
||||
const char *
|
||||
GetCondition ();
|
||||
|
||||
%feature("docstring", "
|
||||
//--------------------------------------------------------------------------
|
||||
/// The watchpoint stops only if the condition expression evaluates to true.
|
||||
//--------------------------------------------------------------------------
|
||||
") SetCondition;
|
||||
void
|
||||
SetCondition (const char *condition);
|
||||
|
||||
|
|
Loading…
Reference in New Issue