Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValueRegex.h17 class OptionValueRegex : public Cloneable<OptionValueRegex, OptionValue> {
19 OptionValueRegex(const char *value = nullptr)
22 ~OptionValueRegex() override = default;
H A DOptionValue.h226 OptionValueRegex *GetAsRegex();
227 const OptionValueRegex *GetAsRegex() const;
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueRegex.cpp16 void OptionValueRegex::DumpValue(const ExecutionContext *exe_ctx, Stream &strm, in DumpValue()
30 Status OptionValueRegex::SetValueFromString(llvm::StringRef value, in SetValueFromString()
H A DOptionValue.cpp211 OptionValueRegex *OptionValue::GetAsRegex() { in GetAsRegex()
213 return static_cast<OptionValueRegex *>(this); in GetAsRegex()
217 const OptionValueRegex *OptionValue::GetAsRegex() const { in GetAsRegex()
219 return static_cast<const OptionValueRegex *>(this); in GetAsRegex()
392 if (const OptionValueRegex *option_value = GetAsRegex()) in GetRegexValue()
H A DProperty.cpp176 std::make_shared<OptionValueRegex>(definition.default_cstr_value); in Property()
/freebsd/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h156 class OptionValueRegex; variable
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DDisassembler.cpp263 OptionValueRegex *re = value_sp->GetAsRegex(); in ElideMixedSourceAndDisassemblyLine()
/freebsd/lib/clang/liblldb/
H A DMakefile339 SRCS+= Interpreter/OptionValueRegex.cpp