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
|
uint32_t
|
||||||
GetIgnoreCount () const;
|
GetIgnoreCount () const;
|
||||||
|
|
||||||
|
%feature("docstring", "
|
||||||
|
//--------------------------------------------------------------------------
|
||||||
|
/// The breakpoint stops only if the condition expression evaluates to true.
|
||||||
|
//--------------------------------------------------------------------------
|
||||||
|
") SetCondition;
|
||||||
void
|
void
|
||||||
SetCondition (const char *condition);
|
SetCondition (const char *condition);
|
||||||
|
|
||||||
|
%feature("docstring", "
|
||||||
|
//------------------------------------------------------------------
|
||||||
|
/// Get the condition expression for the breakpoint.
|
||||||
|
//------------------------------------------------------------------
|
||||||
|
") GetCondition;
|
||||||
const char *
|
const char *
|
||||||
GetCondition ();
|
GetCondition ();
|
||||||
|
|
||||||
|
|
|
@ -50,9 +50,20 @@ public:
|
||||||
void
|
void
|
||||||
SetIgnoreCount (uint32_t n);
|
SetIgnoreCount (uint32_t n);
|
||||||
|
|
||||||
|
%feature("docstring", "
|
||||||
|
//--------------------------------------------------------------------------
|
||||||
|
/// The breakpoint location stops only if the condition expression evaluates
|
||||||
|
/// to true.
|
||||||
|
//--------------------------------------------------------------------------
|
||||||
|
") SetCondition;
|
||||||
void
|
void
|
||||||
SetCondition (const char *condition);
|
SetCondition (const char *condition);
|
||||||
|
|
||||||
|
%feature("docstring", "
|
||||||
|
//------------------------------------------------------------------
|
||||||
|
/// Get the condition expression for the breakpoint location.
|
||||||
|
//------------------------------------------------------------------
|
||||||
|
") GetCondition;
|
||||||
const char *
|
const char *
|
||||||
GetCondition ();
|
GetCondition ();
|
||||||
|
|
||||||
|
|
|
@ -66,9 +66,19 @@ public:
|
||||||
void
|
void
|
||||||
SetIgnoreCount (uint32_t n);
|
SetIgnoreCount (uint32_t n);
|
||||||
|
|
||||||
|
%feature("docstring", "
|
||||||
|
//------------------------------------------------------------------
|
||||||
|
/// Get the condition expression for the watchpoint.
|
||||||
|
//------------------------------------------------------------------
|
||||||
|
") GetCondition;
|
||||||
const char *
|
const char *
|
||||||
GetCondition ();
|
GetCondition ();
|
||||||
|
|
||||||
|
%feature("docstring", "
|
||||||
|
//--------------------------------------------------------------------------
|
||||||
|
/// The watchpoint stops only if the condition expression evaluates to true.
|
||||||
|
//--------------------------------------------------------------------------
|
||||||
|
") SetCondition;
|
||||||
void
|
void
|
||||||
SetCondition (const char *condition);
|
SetCondition (const char *condition);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue