Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Interpreter/
DOptionValueFileSpec.cpp21 OptionValueFileSpec::OptionValueFileSpec(bool resolve) in OptionValueFileSpec() function in OptionValueFileSpec
27 OptionValueFileSpec::OptionValueFileSpec(const FileSpec &value, bool resolve) in OptionValueFileSpec() function in OptionValueFileSpec
33 OptionValueFileSpec::OptionValueFileSpec(const FileSpec &current_value, in OptionValueFileSpec() function in OptionValueFileSpec
41 void OptionValueFileSpec::DumpValue(const ExecutionContext *exe_ctx, in DumpValue()
55 Status OptionValueFileSpec::SetValueFromString(llvm::StringRef value, in SetValueFromString()
91 lldb::OptionValueSP OptionValueFileSpec::DeepCopy() const { in DeepCopy()
92 return OptionValueSP(new OptionValueFileSpec(*this)); in DeepCopy()
95 void OptionValueFileSpec::AutoComplete(CommandInterpreter &interpreter, in AutoComplete()
101 const lldb::DataBufferSP &OptionValueFileSpec::GetFileContents() { in GetFileContents()
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()
DCMakeLists.txt37 OptionValueFileSpec.cpp
DProperty.cpp115 m_value_sp = std::make_shared<OptionValueFileSpec>(file_spec, resolve); in Property()
DOptionValueProperties.cpp355 OptionValueFileSpec *
/external/llvm-project/lldb/include/lldb/Interpreter/
DOptionValueFileSpec.h19 class OptionValueFileSpec : public OptionValue {
21 OptionValueFileSpec(bool resolve = true);
23 OptionValueFileSpec(const FileSpec &value, bool resolve = true);
25 OptionValueFileSpec(const FileSpec &current_value,
28 ~OptionValueFileSpec() override {} in ~OptionValueFileSpec()
DOptionGroupFile.h39 OptionValueFileSpec &GetOptionValue() { return m_file; } in GetOptionValue()
41 const OptionValueFileSpec &GetOptionValue() const { return m_file; } in GetOptionValue()
44 OptionValueFileSpec m_file;
DOptionGroupOutputFile.h33 const OptionValueFileSpec &GetFile() { return m_file; } in GetFile()
42 OptionValueFileSpec m_file;
DOptionValue.h204 OptionValueFileSpec *GetAsFileSpec();
206 const OptionValueFileSpec *GetAsFileSpec() const;
DOptionValueProperties.h173 OptionValueFileSpec *
/external/llvm-project/lldb/include/lldb/
Dlldb-forward.h140 class OptionValueFileSpec; variable
361 typedef std::shared_ptr<lldb_private::OptionValueFileSpec>
/external/llvm-project/lldb/source/Target/
DTarget.cpp4073 OptionValueFileSpec *file = in GetExpressionPrefixContents()