Home
last modified time | relevance | path

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

/freebsd-13.1/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.h210 OptionValueFileSpecList *GetAsFileSpecList();
212 const OptionValueFileSpecList *GetAsFileSpecList() const;
H A DOptionValueProperties.h188 OptionValueFileSpecList *GetPropertyAtIndexAsOptionValueFileSpecList(
/freebsd-13.1/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueFileSpecList.cpp18 void OptionValueFileSpecList::DumpValue(const ExecutionContext *exe_ctx, in DumpValue()
45 Status OptionValueFileSpecList::SetValueFromString(llvm::StringRef value, in SetValueFromString()
167 OptionValueSP OptionValueFileSpecList::Clone() const { in Clone()
H A DOptionValue.cpp82 OptionValueFileSpecList *OptionValue::GetAsFileSpecList() { in GetAsFileSpecList()
84 return static_cast<OptionValueFileSpecList *>(this); in GetAsFileSpecList()
88 const OptionValueFileSpecList *OptionValue::GetAsFileSpecList() const { in GetAsFileSpecList()
90 return static_cast<const OptionValueFileSpecList *>(this); in GetAsFileSpecList()
339 const OptionValueFileSpecList *option_value = GetAsFileSpecList(); in GetFileSpecListValue()
H A DProperty.cpp122 m_value_sp = std::make_shared<OptionValueFileSpecList>(); in Property()
H A DOptionValueProperties.cpp202 OptionValueFileSpecList *
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h141 class OptionValueFileSpecList; variable
365 typedef std::shared_ptr<lldb_private::OptionValueFileSpecList>
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp4011 OptionValueFileSpecList *option_value = in AppendExecutableSearchPaths()
4020 const OptionValueFileSpecList *option_value = in GetExecutableSearchPaths()
4029 const OptionValueFileSpecList *option_value = in GetDebugFileSearchPaths()
4038 const OptionValueFileSpecList *option_value = in GetClangModuleSearchPaths()
H A DThread.cpp118 const OptionValueFileSpecList *option_value = in GetLibrariesToAvoid()
/freebsd-13.1/lib/clang/liblldb/
H A DMakefile300 SRCS+= Interpreter/OptionValueFileSpecList.cpp