Home
last modified time | relevance | path

Searched refs:OptionValueRegex (Results 1 – 8 of 8) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/
H A DOptionValueRegex.cpp17 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()
H A DOptionValue.cpp216 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()
H A DProperty.cpp164 m_value_sp.reset(new OptionValueRegex(definition.default_cstr_value)); in Property()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DOptionValueRegex.h18 class OptionValueRegex : public OptionValue {
20 OptionValueRegex(const char *value = nullptr)
23 ~OptionValueRegex() override = default;
H A DOptionValue.h239 OptionValueRegex *GetAsRegex();
241 const OptionValueRegex *GetAsRegex() const;
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/
H A Dlldb-forward.h167 class OptionValueRegex; variable
400 typedef std::shared_ptr<lldb_private::OptionValueRegex> OptionValueRegexSP;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DDisassembler.cpp348 OptionValueRegex *re = value_sp->GetAsRegex(); in ElideMixedSourceAndDisassemblyLine()
/freebsd-12.1/lib/clang/liblldb/
H A DMakefile285 SRCS+= Interpreter/OptionValueRegex.cpp