Home
last modified time | relevance | path

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

/freebsd-13.1/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.cpp70 OptionValueFileSpec *OptionValue::GetAsFileSpec() { in GetAsFileSpec()
72 return static_cast<OptionValueFileSpec *>(this); in GetAsFileSpec()
76 const OptionValueFileSpec *OptionValue::GetAsFileSpec() const { in GetAsFileSpec()
78 return static_cast<const OptionValueFileSpec *>(this); in GetAsFileSpec()
323 const OptionValueFileSpec *option_value = GetAsFileSpec(); in GetFileSpecValue()
330 OptionValueFileSpec *option_value = GetAsFileSpec(); in SetFileSpecValue()
520 value_sp = std::make_shared<OptionValueFileSpec>(); in CreateValueFromCStringForTypeMask()
H A DProperty.cpp115 m_value_sp = std::make_shared<OptionValueFileSpec>(file_spec, resolve); in Property()
H A DOptionValueProperties.cpp345 OptionValueFileSpec *
/freebsd-13.1/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.h206 OptionValueFileSpec *GetAsFileSpec();
208 const OptionValueFileSpec *GetAsFileSpec() const;
H A DOptionValueProperties.h175 OptionValueFileSpec *
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h140 class OptionValueFileSpec; variable
363 typedef std::shared_ptr<lldb_private::OptionValueFileSpec>
/freebsd-13.1/lib/clang/liblldb/
H A DMakefile299 SRCS+= Interpreter/OptionValueFileSpec.cpp
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp4152 OptionValueFileSpec *file = in GetExpressionPrefixContents()