Home
last modified time | relevance | path

Searched refs:OptionValueFileSpec (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueFileSpec.cpp21 OptionValueFileSpec::OptionValueFileSpec(bool resolve) : m_resolve(resolve) {} in OptionValueFileSpec() function in OptionValueFileSpec
23 OptionValueFileSpec::OptionValueFileSpec(const FileSpec &value, bool resolve) in OptionValueFileSpec() function in OptionValueFileSpec
28 OptionValueFileSpec::OptionValueFileSpec(const FileSpec &current_value, in OptionValueFileSpec() function in OptionValueFileSpec
35 void OptionValueFileSpec::DumpValue(const ExecutionContext *exe_ctx, in DumpValue()
49 Status OptionValueFileSpec::SetValueFromString(llvm::StringRef value, in SetValueFromString()
85 void OptionValueFileSpec::AutoComplete(CommandInterpreter &interpreter, in AutoComplete()
91 const lldb::DataBufferSP &OptionValueFileSpec::GetFileContents() { in GetFileContents()
H A DOptionValue.cpp69 OptionValueFileSpec *OptionValue::GetAsFileSpec() { in GetAsFileSpecList()
71 return static_cast<OptionValueFileSpec *>(this); in GetAsFileSpecList()
75 const OptionValueFileSpec *OptionValue::GetAsFileSpec() const { in GetAsArch()
77 return static_cast<const OptionValueFileSpec *>(this); in GetAsArch()
323 if (const OptionValueFileSpec *option_value = GetAsFileSpec())
330 if (OptionValueFileSpec *option_value = GetAsFileSpec()) { in SetFormatValue()
543 value_sp = std::make_shared<OptionValueFileSpec>(); in DumpQualifiedName()
H A DProperty.cpp115 m_value_sp = std::make_shared<OptionValueFileSpec>(file_spec, resolve); in Property()
H A DOptionValueProperties.cpp248 OptionValueFileSpec *
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValueFileSpec.h20 class OptionValueFileSpec : public Cloneable<OptionValueFileSpec, OptionValue> {
22 OptionValueFileSpec(bool resolve = true);
24 OptionValueFileSpec(const FileSpec &value, bool resolve = true);
26 OptionValueFileSpec(const FileSpec &current_value,
29 ~OptionValueFileSpec() override = default;
H A DOptionGroupFile.h38 OptionValueFileSpec &GetOptionValue() { return m_file; } in GetOptionValue()
40 const OptionValueFileSpec &GetOptionValue() const { return m_file; } in GetOptionValue()
43 OptionValueFileSpec m_file;
H A DOptionGroupOutputFile.h32 const OptionValueFileSpec &GetFile() { return m_file; } in GetFile()
41 OptionValueFileSpec m_file;
H A DOptionValue.h215 OptionValueFileSpec *GetAsFileSpec();
216 const OptionValueFileSpec *GetAsFileSpec() const;
H A DOptionValueProperties.h123 OptionValueFileSpec *GetPropertyAtIndexAsOptionValueFileSpec(
/freebsd/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h149 class OptionValueFileSpec; variable
/freebsd/lib/clang/liblldb/
H A DMakefile329 SRCS+= Interpreter/OptionValueFileSpec.cpp
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp4649 OptionValueFileSpec *file = in GetExpressionPrefixContents()