reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/lldb/include/lldb/Core/ModuleList.h
   34 class FileSpecList;
tools/lldb/include/lldb/lldb-forward.h
  102 class FileSpecList;

References

include/llvm/ADT/DenseMap.h
   40 struct DenseMapPair : public std::pair<KeyT, ValueT> {
   45   ValueT &getSecond() { return std::pair<KeyT, ValueT>::second; }
   46   const ValueT &getSecond() const { return std::pair<KeyT, ValueT>::second; }
   66   using mapped_type = ValueT;
   69   using iterator = DenseMapIterator<KeyT, ValueT, KeyInfoT, BucketT>;
   71       DenseMapIterator<KeyT, ValueT, KeyInfoT, BucketT, true>;
  185   ValueT lookup(const_arg_type_t<KeyT> Val) const {
  195   std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV) {
  202   std::pair<iterator, bool> insert(std::pair<KeyT, ValueT> &&KV) {
  249   std::pair<iterator, bool> insert_as(std::pair<KeyT, ValueT> &&KV,
  299   ValueT &operator[](const KeyT &Key) {
  311   ValueT &operator[](KeyT &&Key) {
  380         ::new (&DestBucket->getSecond()) ValueT(std::move(B->getSecond()));
  392       const DenseMapBase<OtherBaseT, KeyT, ValueT, KeyInfoT, BucketT> &other) {
  520     ::new (&TheBucket->getSecond()) ValueT(std::forward<ValueArgs>(Values)...);
  526                                       ValueT &&Value, LookupKeyT &Lookup) {
  684 class DenseMap : public DenseMapBase<DenseMap<KeyT, ValueT, KeyInfoT, BucketT>,
  685                                      KeyT, ValueT, KeyInfoT, BucketT> {
  690   using BaseT = DenseMapBase<DenseMap, KeyT, ValueT, KeyInfoT, BucketT>;
 1163   using ConstIterator = DenseMapIterator<KeyT, ValueT, KeyInfoT, Bucket, true>;
 1199       const DenseMapIterator<KeyT, ValueT, KeyInfoT, Bucket, IsConstSrc> &I)
include/llvm/ADT/Optional.h
   39     T value;
   72   T &getValue() LLVM_LVALUE_FUNCTION noexcept {
   76   T const &getValue() const LLVM_LVALUE_FUNCTION noexcept {
   81   T &&getValue() && noexcept {
  106       ::new ((void *)std::addressof(value)) T(std::move(y));
  216   optional_detail::OptionalStorage<T> Storage;
  219   using value_type = T;
  224   Optional(const T &y) : Storage(optional_detail::in_place_t{}, y) {}
  227   Optional(T &&y) : Storage(optional_detail::in_place_t{}, std::move(y)) {}
  230   Optional &operator=(T &&y) {
  241   static inline Optional create(const T *y) {
  245   Optional &operator=(const T &y) {
  253   const T *getPointer() const { return &Storage.getValue(); }
  254   T *getPointer() { return &Storage.getValue(); }
  255   const T &getValue() const LLVM_LVALUE_FUNCTION { return Storage.getValue(); }
  256   T &getValue() LLVM_LVALUE_FUNCTION { return Storage.getValue(); }
  260   const T *operator->() const { return getPointer(); }
  261   T *operator->() { return getPointer(); }
  262   const T &operator*() const LLVM_LVALUE_FUNCTION { return getValue(); }
  263   T &operator*() LLVM_LVALUE_FUNCTION { return getValue(); }
  266   constexpr T getValueOr(U &&value) const LLVM_LVALUE_FUNCTION {
  271   T &&getValue() && { return std::move(Storage.getValue()); }
  272   T &&operator*() && { return std::move(Storage.getValue()); }
  275   T getValueOr(U &&value) && {
include/llvm/ADT/STLExtras.h
  154 auto adl_begin(ContainerTy &&container)
  162 auto adl_end(ContainerTy &&container)
  178 auto adl_begin(ContainerTy &&container)
  184 auto adl_end(ContainerTy &&container)
 1165 bool all_of(R &&Range, UnaryPredicate P) {
include/llvm/Support/type_traits.h
   91     T t;
  122     static auto get(F*) -> decltype(std::declval<F &>() = std::declval<const F &>(), std::true_type{});
  122     static auto get(F*) -> decltype(std::declval<F &>() = std::declval<const F &>(), std::true_type{});
  122     static auto get(F*) -> decltype(std::declval<F &>() = std::declval<const F &>(), std::true_type{});
  130     static auto get(F*) -> decltype(std::declval<F &>() = std::declval<F &&>(), std::true_type{});
  130     static auto get(F*) -> decltype(std::declval<F &>() = std::declval<F &&>(), std::true_type{});
  130     static auto get(F*) -> decltype(std::declval<F &>() = std::declval<F &&>(), std::true_type{});
  145       std::is_copy_constructible<detail::trivial_helper<T>>::value;
  147       !std::is_copy_constructible<T>::value;
  151       std::is_move_constructible<detail::trivial_helper<T>>::value;
  153       !std::is_move_constructible<T>::value;
  157       is_copy_assignable<detail::trivial_helper<T>>::value;
  159       !is_copy_assignable<T>::value;
  163       is_move_assignable<detail::trivial_helper<T>>::value;
  165       !is_move_assignable<T>::value;
  169       std::is_destructible<detail::trivial_helper<T>>::value;
tools/lldb/include/lldb/API/SBFileSpecList.h
   44   const lldb_private::FileSpecList *operator->() const;
   46   const lldb_private::FileSpecList *get() const;
   48   const lldb_private::FileSpecList &operator*() const;
   50   const lldb_private::FileSpecList &ref() const;
   52   std::unique_ptr<lldb_private::FileSpecList> m_opaque_up;
tools/lldb/include/lldb/Core/FileSpecList.h
   37   FileSpecList(const FileSpecList &rhs) = default;
   40   FileSpecList(FileSpecList &&rhs) = default;
   57   FileSpecList &operator=(const FileSpecList &rhs) = default;
   57   FileSpecList &operator=(const FileSpecList &rhs) = default;
   60   FileSpecList &operator=(FileSpecList &&rhs) = default;
   60   FileSpecList &operator=(FileSpecList &&rhs) = default;
  195                                             FileSpecList &matches);
tools/lldb/include/lldb/Core/ModuleList.h
  467                                 const FileSpecList *module_search_paths_ptr,
tools/lldb/include/lldb/Core/SearchFilter.h
  245                              OptionNames name, FileSpecList &file_list);
  361                            const FileSpecList &module_list);
  364                            const FileSpecList &module_list,
  402   FileSpecList m_module_spec_list;
  416                                 const FileSpecList &module_list,
  417                                 const FileSpecList &cu_list);
  451   FileSpecList m_cu_spec_list;
tools/lldb/include/lldb/Interpreter/CommandCompletions.h
  136     FileSpecList m_matching_files;
tools/lldb/include/lldb/Interpreter/OptionValue.h
  270   FileSpecList GetFileSpecListValue() const;
tools/lldb/include/lldb/Interpreter/OptionValueFileSpecList.h
   23   OptionValueFileSpecList(const FileSpecList &current_value)
   55   FileSpecList GetCurrentValue() const {
   60   void SetCurrentValue(const FileSpecList &value) {
   72   FileSpecList m_current_value;
tools/lldb/include/lldb/Symbol/CompileUnit.h
  243   const FileSpecList &GetSupportFiles();
  309   void SetSupportFiles(const FileSpecList &support_files);
  399   FileSpecList m_support_files;
tools/lldb/include/lldb/Symbol/LocateSymbolFile.h
   37                              const FileSpecList &default_search_paths);
tools/lldb/include/lldb/Symbol/ObjectFile.h
  253   virtual uint32_t GetDependentModules(FileSpecList &file_list) = 0;
  387   virtual lldb_private::FileSpecList GetReExportedLibraries() {
tools/lldb/include/lldb/Symbol/SymbolFile.h
  129                                  FileSpecList &support_files) = 0;
tools/lldb/include/lldb/Target/Platform.h
  148                                    const FileSpecList *module_search_paths_ptr);
  296   virtual FileSpecList
  302                                  const FileSpecList *module_search_paths_ptr,
  879                              const FileSpecList *module_search_paths_ptr,
  905                               const FileSpecList *module_search_paths_ptr,
tools/lldb/include/lldb/Target/Target.h
  122   FileSpecList GetExecutableSearchPaths();
  126   FileSpecList GetDebugFileSearchPaths();
  128   FileSpecList GetClangModuleSearchPaths();
  492   static FileSpecList GetDefaultExecutableSearchPaths();
  494   static FileSpecList GetDefaultDebugFileSearchPaths();
  588   lldb::BreakpointSP CreateBreakpoint(const FileSpecList *containingModules,
  600       const FileSpecList *containingModules,
  601       const FileSpecList *source_file_list,
  625       const FileSpecList *containingModules,
  626       const FileSpecList *containingSourceFiles, RegularExpression func_regexp,
  636       const FileSpecList *containingModules,
  637       const FileSpecList *containingSourceFiles, const char *func_name,
  649       const llvm::StringRef class_name, const FileSpecList *containingModules,
  650       const FileSpecList *containingSourceFiles, bool internal,
  660       const FileSpecList *containingModules,
  661       const FileSpecList *containingSourceFiles, const char *func_names[],
  667   CreateBreakpoint(const FileSpecList *containingModules,
  668                    const FileSpecList *containingSourceFiles,
 1246   GetSearchFilterForModuleList(const FileSpecList *containingModuleList);
 1249   GetSearchFilterForModuleAndCUList(const FileSpecList *containingModules,
 1250                                     const FileSpecList *containingSourceFiles);
tools/lldb/include/lldb/Target/Thread.h
   46   FileSpecList GetLibrariesToAvoid() const;
tools/lldb/source/API/SBCompileUnit.cpp
  174     const FileSpecList &support_files = m_opaque_ptr->GetSupportFiles();
tools/lldb/source/API/SBFileSpecList.cpp
   24 SBFileSpecList::SBFileSpecList() : m_opaque_up(new FileSpecList()) {
   91 const lldb_private::FileSpecList *SBFileSpecList::operator->() const {
   95 const lldb_private::FileSpecList *SBFileSpecList::get() const {
   99 const lldb_private::FileSpecList &SBFileSpecList::operator*() const {
  103 const lldb_private::FileSpecList &SBFileSpecList::ref() const {
tools/lldb/source/API/SBTarget.cpp
  760     const FileSpecList *module_list = nullptr;
  787       FileSpecList module_spec_list;
tools/lldb/source/API/Utils.h
   17 template <typename T> std::unique_ptr<T> clone(const std::unique_ptr<T> &src) {
   17 template <typename T> std::unique_ptr<T> clone(const std::unique_ptr<T> &src) {
   19     return std::make_unique<T>(*src);
tools/lldb/source/Commands/CommandCompletions.cpp
  362       FileSpecList supporting_files = context.comp_unit->GetSupportFiles();
tools/lldb/source/Commands/CommandObjectBreakpoint.cpp
  505     FileSpecList m_filenames;
  513     FileSpecList m_modules;
tools/lldb/source/Commands/CommandObjectSource.cpp
  220       const FileSpecList &cu_file_list = cu->GetSupportFiles();
tools/lldb/source/Commands/CommandObjectTarget.cpp
  903       const FileSpecList &compile_units =
  905       const FileSpecList &shlibs =
tools/lldb/source/Commands/CommandObjectThread.cpp
 1745     FileSpecList m_filenames;
tools/lldb/source/Core/FileSpecList.cpp
  105   size_t mem_size = sizeof(FileSpecList);
  119                                                  FileSpecList &matches) {
tools/lldb/source/Core/Module.cpp
 1486     FileSpecList file_specs = platform_sp->LocateExecutableScriptingResources(
tools/lldb/source/Core/ModuleList.cpp
  714                                    const FileSpecList *module_search_paths_ptr,
tools/lldb/source/Core/SearchFilter.cpp
  186     FileSpecList &file_list) {
  517     const lldb::TargetSP &target_sp, const FileSpecList &module_list)
  522     const lldb::TargetSP &target_sp, const FileSpecList &module_list,
  631   FileSpecList modules;
  666     const lldb::TargetSP &target_sp, const FileSpecList &module_list,
  667     const FileSpecList &cu_list)
  694   FileSpecList modules;
  718   FileSpecList cus;
tools/lldb/source/Interpreter/OptionValue.cpp
  337 FileSpecList OptionValue::GetFileSpecListValue() const {
tools/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp
  821 	  FileSpecList search_paths = target.GetExecutableSearchPaths();
 1472     FileSpecList module_spec_list;
tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp
  345     FileSpecList containingModules;
  736   const auto executable_search_paths(Target::GetDefaultExecutableSearchPaths());
tools/lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.cpp
  621   FileSpecList module_search_paths = target.GetClangModuleSearchPaths();
tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.cpp
  474   FileSpecList files;
  481       const FileSpecList &support_files =
tools/lldb/source/Plugins/ExpressionParser/Clang/CppModuleConfiguration.cpp
   64     const FileSpecList &support_files) {
tools/lldb/source/Plugins/ExpressionParser/Clang/CppModuleConfiguration.h
   63   explicit CppModuleConfiguration(const FileSpecList &support_files);
tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.cpp
  463   FileSpecList filter_modules;
  476   FileSpecList filter_modules;
tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.cpp
  461   FileSpecList filter_modules;
tools/lldb/source/Plugins/ObjectFile/Breakpad/ObjectFileBreakpad.h
   88   uint32_t GetDependentModules(FileSpecList &files) override { return 0; }
tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
  789 uint32_t ObjectFileELF::GetDependentModules(FileSpecList &files) {
  902   m_filespec_up.reset(new FileSpecList());
tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.h
  129   uint32_t GetDependentModules(lldb_private::FileSpecList &files) override;
  217   mutable std::unique_ptr<lldb_private::FileSpecList> m_filespec_up;
tools/lldb/source/Plugins/ObjectFile/JIT/ObjectFileJIT.cpp
  176 uint32_t ObjectFileJIT::GetDependentModules(FileSpecList &files) {
tools/lldb/source/Plugins/ObjectFile/JIT/ObjectFileJIT.h
   80   uint32_t GetDependentModules(lldb_private::FileSpecList &files) override;
tools/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
 2060   FileSpecList dylib_files;
 5019 uint32_t ObjectFileMachO::GetDependentModules(FileSpecList &files) {
tools/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.h
  101   uint32_t GetDependentModules(lldb_private::FileSpecList &files) override;
  103   lldb_private::FileSpecList GetReExportedLibraries() override {
  229   lldb_private::FileSpecList m_reexported_dylibs;
tools/lldb/source/Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.cpp
 1000 uint32_t ObjectFilePECOFF::GetDependentModules(FileSpecList &files) {
tools/lldb/source/Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.h
  121   uint32_t GetDependentModules(lldb_private::FileSpecList &files) override;
  301   llvm::Optional<lldb_private::FileSpecList> m_deps_filespec;
tools/lldb/source/Plugins/Platform/MacOSX/PlatformDarwin.cpp
   60 FileSpecList PlatformDarwin::LocateExecutableScriptingResources(
   62   FileSpecList file_list;
  213     const lldb_private::FileSpecList *module_search_paths_ptr,
  334     const FileSpecList *module_search_paths_ptr, ModuleSP *old_module_sp_ptr,
 1219   FileSpecList bp_modules;
 1698                                                    const FileSpecList *module_search_paths_ptr, 
tools/lldb/source/Plugins/Platform/MacOSX/PlatformDarwin.h
   34   lldb_private::FileSpecList LocateExecutableScriptingResources(
   41                   const lldb_private::FileSpecList *module_search_paths_ptr,
   95       const lldb_private::FileSpecList *module_search_paths_ptr,
  128                                      lldb::ModuleSP &module_sp, const lldb_private::FileSpecList *module_search_paths_ptr, 
tools/lldb/source/Plugins/Platform/MacOSX/PlatformMacOSX.cpp
  300     const lldb_private::FileSpecList *module_search_paths_ptr,
tools/lldb/source/Plugins/Platform/MacOSX/PlatformMacOSX.h
   42                   const lldb_private::FileSpecList *module_search_paths_ptr,
tools/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteDarwinDevice.cpp
   69     const FileSpecList *module_search_paths_ptr) {
  394                                               FileSpecList &file_list) {
  512     const FileSpecList *module_search_paths_ptr, ModuleSP *old_module_sp_ptr,
tools/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteDarwinDevice.h
   28       const lldb_private::FileSpecList *module_search_paths_ptr) override;
   40                   const lldb_private::FileSpecList *module_search_paths_ptr,
   86                              lldb_private::FileSpecList &file_list);
   92                              lldb_private::FileSpecList &file_list);
tools/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.cpp
   70                                  const FileSpecList *module_search_paths_ptr) {
tools/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.h
   42       const lldb_private::FileSpecList *module_search_paths_ptr) override;
tools/lldb/source/Plugins/Platform/Windows/PlatformWindows.cpp
  161     const FileSpecList *module_search_paths_ptr) {
tools/lldb/source/Plugins/Platform/Windows/PlatformWindows.h
   42                     const FileSpecList *module_search_paths_ptr) override;
tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.cpp
   96     const FileSpecList *module_search_paths_ptr) {
tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h
   46                     const FileSpecList *module_search_paths_ptr) override;
tools/lldb/source/Plugins/Process/mach-core/ProcessMachCore.cpp
  351         FileSpecList search_paths = Target::GetDefaultDebugFileSearchPaths();
tools/lldb/source/Plugins/Process/minidump/ProcessMinidump.cpp
   69   uint32_t GetDependentModules(FileSpecList &file_list) override { return 0; }
tools/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.cpp
 1622   FileSpecList module_spec_list;
 1628   FileSpecList *source_spec_list = nullptr;
tools/lldb/source/Plugins/SymbolFile/Breakpad/SymbolFileBreakpad.cpp
  145   FileSpecList translate(const FileSpec &cu_spec,
  153 FileSpecList SupportFileMap::translate(const FileSpec &cu_spec,
  240                                            FileSpecList &support_files) {
tools/lldb/source/Plugins/SymbolFile/Breakpad/SymbolFileBreakpad.h
   62                          FileSpecList &support_files) override;
  191     llvm::Optional<FileSpecList> support_files;
tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
  136   FileSpecList GetSymLinkPaths() {
  182 static FileSpecList ParseSupportFilesFromPrologue(
  186   FileSpecList support_files;
  218 FileSpecList SymbolFileDWARF::GetSymlinkPaths() {
  862                                         FileSpecList &support_files) {
  879 const FileSpecList &
  881   static FileSpecList empty_list;
  892   FileSpecList &list = iter_bool.first->second;
 3846     FileSpecList search_paths = Target::GetDefaultDebugFileSearchPaths();
tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h
   84   static lldb_private::FileSpecList GetSymlinkPaths();
  113                          lldb_private::FileSpecList &support_files) override;
  455   const lldb_private::FileSpecList &GetTypeUnitSupportFiles(DWARFTypeUnit &tu);
  493   llvm::DenseMap<dw_offset_t, lldb_private::FileSpecList>
tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.cpp
  664                                                 FileSpecList &support_files) {
tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.h
   61                          lldb_private::FileSpecList &support_files) override;
tools/lldb/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.cpp
 1142                                             FileSpecList &support_files) {
tools/lldb/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.h
   82                          FileSpecList &support_files) override;
tools/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp
  352     CompileUnit &comp_unit, lldb_private::FileSpecList &support_files) {
tools/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.h
   61                          lldb_private::FileSpecList &support_files) override;
tools/lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.cpp
  216                                          FileSpecList &support_files) {
tools/lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.h
   50                          lldb_private::FileSpecList &support_files) override;
tools/lldb/source/Plugins/SymbolVendor/ELF/SymbolVendorELF.cpp
   95   FileSpecList search_paths = Target::GetDefaultDebugFileSearchPaths();
tools/lldb/source/Symbol/CompileUnit.cpp
  159 void CompileUnit::SetSupportFiles(const FileSpecList &support_files) {
  207     const FileSpecList &support_files = GetSupportFiles();
  361 const FileSpecList &CompileUnit::GetSupportFiles() {
tools/lldb/source/Symbol/LocateSymbolFile.cpp
  258                                     const FileSpecList &default_search_paths) {
  264   FileSpecList debug_file_search_paths = default_search_paths;
tools/lldb/source/Symbol/Symbol.cpp
  454     FileSpecList reexported_libraries =
tools/lldb/source/Target/Platform.cpp
  174 FileSpecList
  216                                  const FileSpecList *module_search_paths_ptr,
  851                             const FileSpecList *module_search_paths_ptr) {
 1502     const FileSpecList *module_search_paths_ptr, Platform &remote_platform) {
 1516     const FileSpecList *module_search_paths_ptr, Platform &remote_platform) {
tools/lldb/source/Target/Target.cpp
  305     const FileSpecList *containingModules,
  306     const FileSpecList *source_file_spec_list,
  321 BreakpointSP Target::CreateBreakpoint(const FileSpecList *containingModules,
  354     FileSpecList compile_unit_list;
  414     const FileSpecList *containingModules,
  415     const FileSpecList *containingSourceFiles, const char *func_name,
  437 Target::CreateBreakpoint(const FileSpecList *containingModules,
  438                          const FileSpecList *containingSourceFiles,
  463 Target::CreateBreakpoint(const FileSpecList *containingModules,
  464                          const FileSpecList *containingSourceFiles,
  511 Target::GetSearchFilterForModuleList(const FileSpecList *containingModules) {
  529     const FileSpecList *containingModules,
  530     const FileSpecList *containingSourceFiles) {
  549     const FileSpecList *containingModules,
  550     const FileSpecList *containingSourceFiles, RegularExpression func_regex,
  583     const llvm::StringRef class_name, const FileSpecList *containingModules,
  584     const FileSpecList *containingSourceFiles, bool internal,
 1409     FileSpecList dependent_files;
 1528     FileSpecList search_paths = GetExecutableSearchPaths();
 1965     FileSpecList search_paths = GetExecutableSearchPaths();
 2284 FileSpecList Target::GetDefaultExecutableSearchPaths() {
 2291 FileSpecList Target::GetDefaultDebugFileSearchPaths() {
 3725 FileSpecList TargetProperties::GetExecutableSearchPaths() {
 3734 FileSpecList TargetProperties::GetDebugFileSearchPaths() {
 3743 FileSpecList TargetProperties::GetClangModuleSearchPaths() {
tools/lldb/source/Target/TargetList.cpp
  375       FileSpecList executable_search_paths(
tools/lldb/source/Target/Thread.cpp
  123 FileSpecList ThreadProperties::GetLibrariesToAvoid() const {
tools/lldb/source/Target/ThreadPlanStepInRange.cpp
  333   FileSpecList libraries_to_avoid(GetThread().GetLibrariesToAvoid());
tools/lldb/tools/lldb-test/lldb-test.cpp
  900       FileSpecList Files;
tools/lldb/unittests/Expression/CppModuleConfigurationTest.cpp
   43 static FileSpecList makeFiles(llvm::ArrayRef<std::string> paths) {
   44   FileSpecList result;
tools/lldb/unittests/Expression/DWARFExpressionTest.cpp
  104   uint32_t GetDependentModules(FileSpecList &file_list) override { return 0; }
tools/lldb/unittests/Symbol/LocateSymbolFileTest.cpp
   37   FileSpecList search_paths = Target::GetDefaultDebugFileSearchPaths();
   49   FileSpecList search_paths = Target::GetDefaultDebugFileSearchPaths();
usr/include/c++/7.4.0/bits/alloc_traits.h
  474 	construct(allocator_type& __a, _Up* __p, _Args&&... __args)
  475 	{ __a.construct(__p, std::forward<_Args>(__args)...); }
usr/include/c++/7.4.0/bits/move.h
   46     inline _GLIBCXX_CONSTEXPR _Tp*
   47     __addressof(_Tp& __r) _GLIBCXX_NOEXCEPT
   72     constexpr _Tp&&
   73     forward(typename std::remove_reference<_Tp>::type& __t) noexcept
   83     constexpr _Tp&&
   84     forward(typename std::remove_reference<_Tp>::type&& __t) noexcept
   98     move(_Tp&& __t) noexcept
  136     inline _GLIBCXX17_CONSTEXPR _Tp*
  137     addressof(_Tp& __r) noexcept
  143     const _Tp* addressof(const _Tp&&) = delete;
  143     const _Tp* addressof(const _Tp&&) = delete;
usr/include/c++/7.4.0/bits/range_access.h
   58     begin(const _Container& __cont) -> decltype(__cont.begin())
   78     end(const _Container& __cont) -> decltype(__cont.end())
usr/include/c++/7.4.0/bits/shared_ptr.h
  343 		   _Args&&... __args)
  344 	: __shared_ptr<_Tp>(__tag, __a, std::forward<_Args>(__args)...)
  688     allocate_shared(const _Alloc& __a, _Args&&... __args)
  691 			     std::forward<_Args>(__args)...);
  703     make_shared(_Args&&... __args)
  707 				       std::forward<_Args>(__args)...);
usr/include/c++/7.4.0/bits/shared_ptr_base.h
 1317 		     _Args&&... __args)
 1328 			      std::forward<_Args>(__args)...);
usr/include/c++/7.4.0/bits/stl_pair.h
  209     : private __pair_base<_T1, _T2>
  212       typedef _T2 second_type;   /// @c second_type is the second bound type
  215       _T2 second;                /// @c second is a copy of the second object
  252       using _PCCP = _PCC<true, _T1, _T2>;
  260       constexpr pair(const _T1& __a, const _T2& __b)
  269       explicit constexpr pair(const _T1& __a, const _T2& __b)
  283 			    _T1, _T2>;
  311        constexpr pair(_U1&& __x, const _T2& __y)
  318        explicit constexpr pair(_U1&& __x, const _T2& __y)
  380 		       is_copy_assignable<_T2>>::value,
  391 		       is_move_assignable<_T2>>::value,
  403 				is_assignable<_T2&, const _U2&>>::value,
  403 				is_assignable<_T2&, const _U2&>>::value,
  405 	operator=(const pair<_U1, _U2>& __p)
  414 				is_assignable<_T2&, _U2&&>>::value,
  414 				is_assignable<_T2&, _U2&&>>::value,
  416 	operator=(pair<_U1, _U2>&& __p)
usr/include/c++/7.4.0/bits/unique_ptr.h
   68         default_delete(const default_delete<_Up>&) noexcept { }
   72       operator()(_Tp* __ptr) const
   74 	static_assert(!is_void<_Tp>::value,
   76 	static_assert(sizeof(_Tp)>0,
  122 	  using type = _Up*;
  137       using pointer = typename _Ptr<_Tp, _Dp>::type;
  161 	typename __uniq_ptr_impl<_Tp, _Up>::_DeleterConstraint::type;
  163       __uniq_ptr_impl<_Tp, _Dp> _M_t;
  166       using pointer	  = typename __uniq_ptr_impl<_Tp, _Dp>::pointer;
  167       using element_type  = _Tp;
  252 	unique_ptr(unique_ptr<_Up, _Ep>&& __u) noexcept
  297           __safe_conversion_up<_Up, _Ep>,
  301 	operator=(unique_ptr<_Up, _Ep>&& __u) noexcept
  811     { typedef unique_ptr<_Tp> __single_object; };
  823     inline typename _MakeUniq<_Tp>::__single_object
  824     make_unique(_Args&&... __args)
  825     { return unique_ptr<_Tp>(new _Tp(std::forward<_Args>(__args)...)); }
usr/include/c++/7.4.0/ext/new_allocator.h
  135 	construct(_Up* __p, _Args&&... __args)
  136 	{ ::new((void *)__p) _Up(std::forward<_Args>(__args)...); }
usr/include/c++/7.4.0/type_traits
  215     : public __is_void_helper<typename remove_cv<_Tp>::type>::type
  326     : public __is_integral_helper<typename remove_cv<_Tp>::type>::type
  354     : public __is_floating_point_helper<typename remove_cv<_Tp>::type>::type
  381     : public __is_pointer_helper<typename remove_cv<_Tp>::type>::type
  567     : public __is_null_pointer_helper<typename remove_cv<_Tp>::type>::type
  581     : public __or_<is_lvalue_reference<_Tp>,
  582                    is_rvalue_reference<_Tp>>::type
  588     : public __or_<is_integral<_Tp>, is_floating_point<_Tp>>::type
  588     : public __or_<is_integral<_Tp>, is_floating_point<_Tp>>::type
  601     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
  601     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
  602                           is_void<_Tp>>>::type
  611     : public __or_<is_arithmetic<_Tp>, is_enum<_Tp>, is_pointer<_Tp>,
  611     : public __or_<is_arithmetic<_Tp>, is_enum<_Tp>, is_pointer<_Tp>,
  611     : public __or_<is_arithmetic<_Tp>, is_enum<_Tp>, is_pointer<_Tp>,
  612                    is_member_pointer<_Tp>, is_null_pointer<_Tp>>::type
  612                    is_member_pointer<_Tp>, is_null_pointer<_Tp>>::type
  631     : public __is_member_pointer_helper<typename remove_cv<_Tp>::type>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
  762     typename add_rvalue_reference<_Tp>::type declval() noexcept;
  777     : public __and_<is_array<_Tp>, __not_<extent<_Tp>>>
  777     : public __and_<is_array<_Tp>, __not_<extent<_Tp>>>
  798       typedef decltype(__test<_Tp>(0)) type;
  811                remove_all_extents<_Tp>::type>::type
  825     : public __is_destructible_safe<_Tp>::type
  889       typedef decltype(__test<_Tp>(0)) type;
  894     : public __and_<__not_<is_void<_Tp>>,
  895                     __is_default_constructible_impl<_Tp>>
  915     : public __is_default_constructible_atom<_Tp>::type
  921     : public __is_default_constructible_safe<_Tp>::type
  984       typedef decltype(__test<_Tp, _Arg>(0)) type;
  989     : public __and_<is_destructible<_Tp>,
  990                     __is_direct_constructible_impl<_Tp, _Arg>>
 1072 			 __is_direct_constructible_ref_cast<_Tp, _Arg>,
 1073 			 __is_direct_constructible_new_safe<_Tp, _Arg>
 1079     : public __is_direct_constructible_new<_Tp, _Arg>::type
 1119     : public __is_direct_constructible<_Tp, _Arg>
 1130     : public __is_constructible_impl<_Tp, _Args...>::type
 1142     : public is_constructible<_Tp, const _Tp&>
 1142     : public is_constructible<_Tp, const _Tp&>
 1148     : public __is_copy_constructible_impl<_Tp>
 1160     : public is_constructible<_Tp, _Tp&&>
 1160     : public is_constructible<_Tp, _Tp&&>
 1166     : public __is_move_constructible_impl<_Tp>
 1286     : public is_assignable<_Tp&, const _Tp&>
 1286     : public is_assignable<_Tp&, const _Tp&>
 1292     : public __is_copy_assignable_impl<_Tp>
 1304     : public is_assignable<_Tp&, _Tp&&>
 1304     : public is_assignable<_Tp&, _Tp&&>
 1310     : public __is_move_assignable_impl<_Tp>
 1377     static void __helper(const _Tp&);
 1380     static true_type __test(const _Tp&,
 1381                             decltype(__helper<const _Tp&>({}))* = 0);
 1390     typedef decltype(__test(declval<_Tp>())) type;
 1395       : public __is_implicitly_default_constructible_impl<_Tp>::type
 1400       : public __and_<is_default_constructible<_Tp>,
 1401                       __is_implicitly_default_constructible_safe<_Tp>>
 1554     { typedef _Tp     type; };
 1563     { typedef _Tp     type; };
 1574       remove_const<typename remove_volatile<_Tp>::type>::type     type;
 1629     { typedef _Tp   type; };
 1633     { typedef _Tp   type; };
 1645     { typedef _Tp&   type; };
 1650     : public __add_lvalue_reference_helper<_Tp>
 1659     { typedef _Tp&&   type; };
 1664     : public __add_rvalue_reference_helper<_Tp>
 1955     { typedef _Tp     type; };