Searched refs:OptionValueRegex (Results 1 – 8 of 8) sorted by relevance
16 void OptionValueRegex::DumpValue(const ExecutionContext *exe_ctx, Stream &strm, in DumpValue()30 Status OptionValueRegex::SetValueFromString(llvm::StringRef value, in SetValueFromString()63 lldb::OptionValueSP OptionValueRegex::DeepCopy() const { in DeepCopy()64 return OptionValueSP(new OptionValueRegex(m_regex.GetText().str().c_str())); in DeepCopy()
214 OptionValueRegex *OptionValue::GetAsRegex() { in GetAsRegex()216 return static_cast<OptionValueRegex *>(this); in GetAsRegex()220 const OptionValueRegex *OptionValue::GetAsRegex() const { in GetAsRegex()222 return static_cast<const OptionValueRegex *>(this); in GetAsRegex()386 const OptionValueRegex *option_value = GetAsRegex(); in GetRegexValue()
44 OptionValueRegex.cpp
176 std::make_shared<OptionValueRegex>(definition.default_cstr_value); in Property()
17 class OptionValueRegex : public OptionValue {19 OptionValueRegex(const char *value = nullptr)23 ~OptionValueRegex() override = default;
228 OptionValueRegex *GetAsRegex();230 const OptionValueRegex *GetAsRegex() const;
147 class OptionValueRegex; variable370 typedef std::shared_ptr<lldb_private::OptionValueRegex> OptionValueRegexSP;
261 OptionValueRegex *re = value_sp->GetAsRegex(); in ElideMixedSourceAndDisassemblyLine()