LLDB mainline
|
#include <StopCondition.h>
Public Member Functions | |
StopCondition ()=default | |
StopCondition (std::string text, lldb::LanguageType language=lldb::eLanguageTypeUnknown) | |
operator bool () const | |
llvm::StringRef | GetText () const |
void | SetText (std::string text) |
size_t | GetHash () const |
lldb::LanguageType | GetLanguage () const |
void | SetLanguage (lldb::LanguageType language) |
Private Attributes | |
std::string | m_text |
The condition to test. | |
size_t | m_hash = 0 |
Its hash, so that locations know when the condition is updated. | |
lldb::LanguageType | m_language = lldb::eLanguageTypeUnknown |
The language for this condition. |
Definition at line 17 of file StopCondition.h.
|
default |
|
inline |
Definition at line 20 of file StopCondition.h.
References lldb::eLanguageTypeUnknown, m_language, and SetText().
|
inline |
Definition at line 36 of file StopCondition.h.
References m_hash.
Referenced by lldb_private::BreakpointLocation::ConditionSaysStop().
|
inline |
Definition at line 38 of file StopCondition.h.
References m_language.
Referenced by lldb_private::BreakpointLocation::ConditionSaysStop().
|
inline |
Definition at line 28 of file StopCondition.h.
References m_text.
Referenced by lldb_private::BreakpointLocation::ConditionSaysStop(), and lldb::SBBreakpointName::GetCondition().
|
inlineexplicit |
Definition at line 26 of file StopCondition.h.
References m_text.
|
inline |
Definition at line 40 of file StopCondition.h.
References m_language.
|
inline |
Definition at line 30 of file StopCondition.h.
References m_hash, and m_text.
Referenced by StopCondition().
|
private |
Its hash, so that locations know when the condition is updated.
Definition at line 47 of file StopCondition.h.
|
private |
The language for this condition.
Definition at line 50 of file StopCondition.h.
Referenced by GetLanguage(), SetLanguage(), and StopCondition().
|
private |
The condition to test.
Definition at line 44 of file StopCondition.h.
Referenced by GetText(), operator bool(), and SetText().