Home
last modified time | relevance | path

Searched refs:OptionValueFileSpecList (Results 1 – 11 of 11) sorted by relevance

/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValueFileSpecList.h19 class OptionValueFileSpecList
20 : public Cloneable<OptionValueFileSpecList, OptionValue> {
22 OptionValueFileSpecList() = default;
24 OptionValueFileSpecList(const OptionValueFileSpecList &other) in OptionValueFileSpecList() function
27 ~OptionValueFileSpecList() override = default;
H A DOptionGroupFile.h68 OptionValueFileSpecList &GetOptionValue() { return m_file_list; } in GetOptionValue()
70 const OptionValueFileSpecList &GetOptionValue() const { return m_file_list; } in GetOptionValue()
73 OptionValueFileSpecList m_file_list;
H A DOptionValue.h218 OptionValueFileSpecList *GetAsFileSpecList();
219 const OptionValueFileSpecList *GetAsFileSpecList() const;
H A DOptionValueProperties.h129 OptionValueFileSpecList *GetPropertyAtIndexAsOptionValueFileSpecList(
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValue.cpp81 OptionValueFileSpecList *OptionValue::GetAsFileSpecList() { in GetAsArch()
83 return static_cast<OptionValueFileSpecList *>(this); in GetAsArch()
87 const OptionValueFileSpecList *OptionValue::GetAsFileSpecList() const { in GetAsArray()
89 return static_cast<const OptionValueFileSpecList *>(this); in GetAsArray()
339 if (OptionValueFileSpecList *option_value = GetAsFileSpecList()) { in GetLanguageValue()
348 if (const OptionValueFileSpecList *option_value = GetAsFileSpecList()) in SetLanguageValue()
H A DOptionValueFileSpecList.cpp17 void OptionValueFileSpecList::DumpValue(const ExecutionContext *exe_ctx, in DumpValue()
44 Status OptionValueFileSpecList::SetValueFromString(llvm::StringRef value, in SetValueFromString()
163 OptionValueSP OptionValueFileSpecList::Clone() const { in Clone()
H A DProperty.cpp122 m_value_sp = std::make_shared<OptionValueFileSpecList>(); in Property()
H A DOptionValueProperties.cpp174 OptionValueFileSpecList *
/freebsd/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h150 class OptionValueFileSpecList; variable
/freebsd/lib/clang/liblldb/
H A DMakefile324 SRCS+= Interpreter/OptionValueFileSpecList.cpp
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp4470 OptionValueFileSpecList *option_value = in AppendExecutableSearchPaths()