Home
last modified time | relevance | path

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

/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.h219 OptionValueFileSpecList *GetAsFileSpecList();
220 const OptionValueFileSpecList *GetAsFileSpecList() const;
H A DOptionValueProperties.h129 OptionValueFileSpecList *GetPropertyAtIndexAsOptionValueFileSpecList(
/llvm-project/lldb/source/Interpreter/
H A DOptionValueFileSpecList.cpp1 //===-- OptionValueFileSpecList.cpp ---------------------------------------===//
9 #include "lldb/Interpreter/OptionValueFileSpecList.h"
17 void OptionValueFileSpecList::DumpValue(const ExecutionContext *exe_ctx, in DumpValue()
44 Status OptionValueFileSpecList::SetValueFromString(llvm::StringRef value, in SetValueFromString()
166 OptionValueSP OptionValueFileSpecList::Clone() const { in Clone()
H A DOptionValue.cpp79 OptionValueFileSpecList *OptionValue::GetAsFileSpecList() { in GetAsFileSpec()
81 return static_cast<OptionValueFileSpecList *>(this); in GetAsFileSpecList()
85 const OptionValueFileSpecList *OptionValue::GetAsFileSpecList() const { in GetAsFileSpecList()
87 return static_cast<const OptionValueFileSpecList *>(this); in GetAsFileSpecList()
337 if (OptionValueFileSpecList *option_value = GetAsFileSpecList()) { in AppendFileSpecValue()
346 if (const OptionValueFileSpecList *option_value = GetAsFileSpecList()) in GetFileSpecListValue()
H A DCMakeLists.txt41 OptionValueFileSpecList.cpp
H A DProperty.cpp122 m_value_sp = std::make_shared<OptionValueFileSpecList>(); in Property()
H A DOptionValueProperties.cpp174 OptionValueFileSpecList *
/llvm-project/lldb/unittests/Interpreter/
H A DTestOptionValue.cpp90 auto file_list_sp = std::make_shared<OptionValueFileSpecList>(); in CreateGlobal()
107 OptionValueFileSpecList *GetFileList() { in GetFileList()
/llvm-project/llvm/utils/gn/secondary/lldb/source/Interpreter/
H A DBUILD.gn63 "OptionValueFileSpecList.cpp",
/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h150 class OptionValueFileSpecList; variable
/llvm-project/lldb/source/Target/
H A DTarget.cpp4675 OptionValueFileSpecList *option_value = in GetExprAllocSize()