Home
last modified time | relevance | path

Searched refs:FindFileIndex (Results 1 – 8 of 8) sorted by relevance

/llvm-project/lldb/source/Utility/
H A DFileSpecList.cpp76 static size_t FindFileIndex(size_t start_idx, const FileSpec &file_spec, in FindFileIndex()
100 size_t FileSpecList::FindFileIndex(size_t start_idx, const FileSpec &file_spec, in FindFileIndex()
102 return ::FindFileIndex( in FindFileIndex() function in SupportFileList
107 size_t SupportFileList::FindFileIndex(size_t start_idx, in FindFileIndex()
110 return ::FindFileIndex(start_idx, file_spec, full, m_files.size(),
71 static size_t FindFileIndex(size_t start_idx, const FileSpec &file_spec, FindFileIndex() function
95 size_t FileSpecList::FindFileIndex(size_t start_idx, const FileSpec &file_spec, FindFileIndex() function in FileSpecList
/llvm-project/lldb/source/Core/
H A DFileLineResolver.cpp43 cu->GetSupportFiles().FindFileIndex(start_file_idx, m_file_spec, false); in SearchCallback()
55 file_idx = cu->GetSupportFiles().FindFileIndex(file_idx + 1, in SearchCallback()
H A DSearchFilter.cpp519 return module_sp && m_module_spec_list.FindFileIndex( in ModulePasses()
527 return m_module_spec_list.FindFileIndex(0, spec, true) != UINT32_MAX; in AddressPasses()
549 if (m_module_spec_list.FindFileIndex(0, module_sp->GetFileSpec(), false) == in Search()
708 if (m_cu_spec_list.FindFileIndex(0, cu_spec, false) == UINT32_MAX) in CompUnitPasses()
714 return m_cu_spec_list.FindFileIndex(0, fileSpec, false) != UINT32_MAX; in CompUnitPasses()
718 bool in_cu_list = m_cu_spec_list.FindFileIndex(0, compUnit.GetPrimaryFile(), in CompUnitPasses()
749 m_module_spec_list.FindFileIndex(0, module_sp->GetFileSpec(), false) == in Search()
769 if (m_cu_spec_list.FindFileIndex( in Search()
/llvm-project/lldb/source/API/
H A DSBFileSpecList.cpp68 uint32_t SBFileSpecList::FindFileIndex(uint32_t idx, const SBFileSpec &sb_file, in FindFileIndex() function in SBFileSpecList
72 return m_opaque_up->FindFileIndex(idx, sb_file.ref(), full); in FindFileIndex()
H A DSBCompileUnit.cpp175 return support_files.FindFileIndex(start_idx, sb_file.ref(), full); in FindSupportFileIndex()
/llvm-project/lldb/include/lldb/Utility/
H A DFileSpecList.h45 size_t FindFileIndex(size_t idx, const FileSpec &file, bool full) const;
182 size_t FindFileIndex(size_t idx, const FileSpec &file, bool full) const;
/llvm-project/lldb/include/lldb/API/
H A DSBFileSpecList.h37 uint32_t FindFileIndex(uint32_t idx, const SBFileSpec &sb_file, bool full);
/llvm-project/lldb/source/Commands/
H A DCommandObjectSource.cpp208 size_t file_idx = cu_file_list.FindFileIndex(0, file_spec, has_path); in DumpFileLinesInCompUnit()