Home
last modified time | relevance | path

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

/external/llvm-project/lldb/include/lldb/Interpreter/
DOptionValueFileSpecList.h19 class OptionValueFileSpecList : public OptionValue {
21 OptionValueFileSpecList() : OptionValue(), m_current_value() {} in OptionValueFileSpecList() function
23 OptionValueFileSpecList(const FileSpecList &current_value) in OptionValueFileSpecList() function
26 ~OptionValueFileSpecList() override {} in ~OptionValueFileSpecList()
DOptionGroupFile.h70 OptionValueFileSpecList &GetOptionValue() { return m_file_list; } in GetOptionValue()
72 const OptionValueFileSpecList &GetOptionValue() const { return m_file_list; } in GetOptionValue()
75 OptionValueFileSpecList m_file_list;
DOptionValue.h208 OptionValueFileSpecList *GetAsFileSpecList();
210 const OptionValueFileSpecList *GetAsFileSpecList() const;
DOptionValueProperties.h186 OptionValueFileSpecList *GetPropertyAtIndexAsOptionValueFileSpecList(
/external/llvm-project/lldb/source/Interpreter/
DOptionValueFileSpecList.cpp18 void OptionValueFileSpecList::DumpValue(const ExecutionContext *exe_ctx, in DumpValue()
45 Status OptionValueFileSpecList::SetValueFromString(llvm::StringRef value, in SetValueFromString()
167 lldb::OptionValueSP OptionValueFileSpecList::DeepCopy() const { in DeepCopy()
169 return OptionValueSP(new OptionValueFileSpecList(m_current_value)); in DeepCopy()
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()
DCMakeLists.txt38 OptionValueFileSpecList.cpp
DProperty.cpp122 m_value_sp = std::make_shared<OptionValueFileSpecList>(); in Property()
DOptionValueProperties.cpp224 OptionValueFileSpecList *
/external/llvm-project/lldb/include/lldb/
Dlldb-forward.h141 class OptionValueFileSpecList; variable
363 typedef std::shared_ptr<lldb_private::OptionValueFileSpecList>
/external/llvm-project/lldb/source/Target/
DTarget.cpp3932 OptionValueFileSpecList *option_value = in AppendExecutableSearchPaths()
3941 const OptionValueFileSpecList *option_value = in GetExecutableSearchPaths()
3950 const OptionValueFileSpecList *option_value = in GetDebugFileSearchPaths()
3959 const OptionValueFileSpecList *option_value = in GetClangModuleSearchPaths()
DThread.cpp124 const OptionValueFileSpecList *option_value = in GetLibrariesToAvoid()
/external/llvm-project/lldb/source/Plugins/Platform/MacOSX/
DPlatformDarwinKernel.cpp204 const OptionValueFileSpecList *option_value = in GetKextDirectories()