Searched refs:OptionValueRegex (Results 1 – 8 of 8) sorted by relevance
17 void OptionValueRegex::DumpValue(const ExecutionContext *exe_ctx, Stream &strm, in DumpValue()31 Status OptionValueRegex::SetValueFromString(llvm::StringRef value, in SetValueFromString()66 lldb::OptionValueSP OptionValueRegex::DeepCopy() const { in DeepCopy()67 return OptionValueSP(new OptionValueRegex(m_regex.GetText().str().c_str())); in DeepCopy()
216 OptionValueRegex *OptionValue::GetAsRegex() { in GetAsRegex()218 return static_cast<OptionValueRegex *>(this); in GetAsRegex()222 const OptionValueRegex *OptionValue::GetAsRegex() const { in GetAsRegex()224 return static_cast<const OptionValueRegex *>(this); in GetAsRegex()388 const OptionValueRegex *option_value = GetAsRegex(); in GetRegexValue()
164 m_value_sp.reset(new OptionValueRegex(definition.default_cstr_value)); in Property()
18 class OptionValueRegex : public OptionValue {20 OptionValueRegex(const char *value = nullptr)23 ~OptionValueRegex() override = default;
239 OptionValueRegex *GetAsRegex();241 const OptionValueRegex *GetAsRegex() const;
167 class OptionValueRegex; variable400 typedef std::shared_ptr<lldb_private::OptionValueRegex> OptionValueRegexSP;
348 OptionValueRegex *re = value_sp->GetAsRegex(); in ElideMixedSourceAndDisassemblyLine()
285 SRCS+= Interpreter/OptionValueRegex.cpp