Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Interpreter/
DOptionValueRegex.cpp16 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()
DOptionValue.cpp214 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()
DCMakeLists.txt44 OptionValueRegex.cpp
DProperty.cpp176 std::make_shared<OptionValueRegex>(definition.default_cstr_value); in Property()
/external/llvm-project/lldb/include/lldb/Interpreter/
DOptionValueRegex.h17 class OptionValueRegex : public OptionValue {
19 OptionValueRegex(const char *value = nullptr)
23 ~OptionValueRegex() override = default;
DOptionValue.h228 OptionValueRegex *GetAsRegex();
230 const OptionValueRegex *GetAsRegex() const;
/external/llvm-project/lldb/include/lldb/
Dlldb-forward.h147 class OptionValueRegex; variable
370 typedef std::shared_ptr<lldb_private::OptionValueRegex> OptionValueRegexSP;
/external/llvm-project/lldb/source/Core/
DDisassembler.cpp261 OptionValueRegex *re = value_sp->GetAsRegex(); in ElideMixedSourceAndDisassemblyLine()