Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/
H A DOptionValueFileSpec.cpp22 OptionValueFileSpec::OptionValueFileSpec(bool resolve) in OptionValueFileSpec() function in OptionValueFileSpec
28 OptionValueFileSpec::OptionValueFileSpec(const FileSpec &value, bool resolve) in OptionValueFileSpec() function in OptionValueFileSpec
34 OptionValueFileSpec::OptionValueFileSpec(const FileSpec &current_value, in OptionValueFileSpec() function in OptionValueFileSpec
42 void OptionValueFileSpec::DumpValue(const ExecutionContext *exe_ctx, in DumpValue()
56 Status OptionValueFileSpec::SetValueFromString(llvm::StringRef value, in SetValueFromString()
99 lldb::OptionValueSP OptionValueFileSpec::DeepCopy() const { in DeepCopy()
100 return OptionValueSP(new OptionValueFileSpec(*this)); in DeepCopy()
103 size_t OptionValueFileSpec::AutoComplete(CommandInterpreter &interpreter, in AutoComplete()
111 const lldb::DataBufferSP &OptionValueFileSpec::GetFileContents() { in GetFileContents()
H A DOptionValue.cpp72 OptionValueFileSpec *OptionValue::GetAsFileSpec() { in GetAsFileSpec()
74 return static_cast<OptionValueFileSpec *>(this); in GetAsFileSpec()
78 const OptionValueFileSpec *OptionValue::GetAsFileSpec() const { in GetAsFileSpec()
80 return static_cast<const OptionValueFileSpec *>(this); in GetAsFileSpec()
325 const OptionValueFileSpec *option_value = GetAsFileSpec(); in GetFileSpecValue()
332 OptionValueFileSpec *option_value = GetAsFileSpec(); in SetFileSpecValue()
520 value_sp.reset(new OptionValueFileSpec()); in CreateValueFromCStringForTypeMask()
H A DProperty.cpp104 m_value_sp.reset(new OptionValueFileSpec(file_spec, resolve)); in Property()
H A DOptionValueProperties.cpp389 OptionValueFileSpec *
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DOptionValueFileSpec.h20 class OptionValueFileSpec : public OptionValue {
22 OptionValueFileSpec(bool resolve = true);
24 OptionValueFileSpec(const FileSpec &value, bool resolve = true);
26 OptionValueFileSpec(const FileSpec &current_value,
29 ~OptionValueFileSpec() override {} in ~OptionValueFileSpec()
H A DOptionGroupFile.h42 OptionValueFileSpec &GetOptionValue() { return m_file; } in GetOptionValue()
44 const OptionValueFileSpec &GetOptionValue() const { return m_file; } in GetOptionValue()
47 OptionValueFileSpec m_file;
H A DOptionGroupOutputFile.h36 const OptionValueFileSpec &GetFile() { return m_file; } in GetFile()
45 OptionValueFileSpec m_file;
H A DOptionValue.h215 OptionValueFileSpec *GetAsFileSpec();
217 const OptionValueFileSpec *GetAsFileSpec() const;
H A DOptionValueProperties.h187 OptionValueFileSpec *
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/
H A Dlldb-forward.h160 class OptionValueFileSpec; variable
391 typedef std::shared_ptr<lldb_private::OptionValueFileSpec>
/freebsd-12.1/lib/clang/liblldb/
H A DMakefile278 SRCS+= Interpreter/OptionValueFileSpec.cpp
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DTarget.cpp3956 OptionValueFileSpec *file = in GetExpressionPrefixContents()