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

Declarations

tools/lldb/include/lldb/Utility/FileSpec.h
  245   ConstString GetDirectory() const;

References

tools/lldb/include/lldb/Core/ModuleSpec.h
  257                            !fspec.GetDirectory().IsEmpty()))
  263                            !fspec.GetDirectory().IsEmpty()))
  270                            !fspec.GetDirectory().IsEmpty()))
tools/lldb/source/Commands/CommandCompletions.cpp
  496         context.module_sp->GetFileSpec().GetDirectory().GetCString();
tools/lldb/source/Commands/CommandObjectSource.cpp
  152       has_path = (file_spec.GetDirectory().AsCString() != nullptr);
  219       bool has_path = (file_spec.GetDirectory().AsCString() != nullptr);
  778       if (line_entry.file.GetDirectory().GetCString() <
  779           rhs.line_entry.file.GetDirectory().GetCString())
tools/lldb/source/Commands/CommandObjectTarget.cpp
 1369       strm.Printf("%-*s", width, file_spec_ptr->GetDirectory().AsCString(""));
 1371       file_spec_ptr->GetDirectory().Dump(&strm);
tools/lldb/source/Core/FileSpecList.cpp
   67   bool compare_filename_only = file_spec.GetDirectory().IsEmpty();
tools/lldb/source/Core/FormatEntity.cpp
  580     if (file.GetDirectory()) {
  581       s << file.GetDirectory();
tools/lldb/source/Core/Module.cpp
  616   const bool compare_directory = (bool)path.GetDirectory();
 1561     if (!FileSpec::Equal(file_spec, m_file, (bool)file_spec.GetDirectory()) &&
 1563                          (bool)file_spec.GetDirectory()))
 1570                          (bool)platform_file_spec.GetDirectory()))
tools/lldb/source/Core/SearchFilter.cpp
  411   const bool full_match = (bool)spec.GetDirectory();
tools/lldb/source/Core/SourceManager.cpp
  387       if (!file_spec.GetDirectory() && file_spec.GetFilename()) {
tools/lldb/source/Plugins/ExpressionParser/Clang/CppModuleConfiguration.cpp
   36   std::string dir_buffer = convert_to_slash(f.GetDirectory().GetStringRef());
tools/lldb/source/Plugins/Platform/MacOSX/PlatformDarwin.cpp
  221             module_spec.GetFileSpec().GetDirectory().AsCString(),
  223             module_spec.GetPlatformFileSpec().GetDirectory().AsCString(),
  225             module_spec.GetSymbolFileSpec().GetDirectory().AsCString(),
  255                     module_spec.GetFileSpec().GetDirectory().AsCString(),
  286                       module_spec.GetFileSpec().GetDirectory().AsCString(),
  301                   module_spec.GetFileSpec().GetDirectory().AsCString(),
  309                 module_spec.GetFileSpec().GetDirectory().AsCString(),
  318                   module_spec.GetFileSpec().GetDirectory().AsCString(),
 1665     executable_file.GetDirectory() = executable_dir.GetDirectory();
tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
 1870       const bool full_match = (bool)file_spec.GetDirectory();
tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.cpp
  813         const bool full_match = (bool)file_spec.GetDirectory();
tools/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp
  816         bool need_full_match = !file_spec.GetDirectory().IsEmpty();
tools/lldb/source/Symbol/CompileUnit.cpp
  230   const bool full_match = (bool)file_spec.GetDirectory();
tools/lldb/source/Target/ModuleCache.cpp
  142       FileSpec(sysroot_module_path_spec.GetDirectory().AsCString()));
tools/lldb/source/Target/Platform.cpp
  648     if (dst.GetDirectory()) {
  649       const char first_dst_dir_char = dst.GetDirectory().GetCString()[0];
  651         fixed_dst.GetDirectory() = dst.GetDirectory();
tools/lldb/source/Target/Target.cpp
 1971               module_spec.GetFileSpec().GetDirectory(),
 2057               !module_spec.GetFileSpec().GetDirectory().IsEmpty()) {
tools/lldb/source/Target/TargetList.cpp
  460   bool full_match = (bool)exe_file_spec.GetDirectory();
tools/lldb/source/Utility/FileSpec.cpp
  325   if (!full && (a.GetDirectory().IsEmpty() || b.GetDirectory().IsEmpty()))
  325   if (!full && (a.GetDirectory().IsEmpty() || b.GetDirectory().IsEmpty()))
  529   StringRef dir = F.GetDirectory().GetStringRef();
tools/lldb/tools/lldb-server/lldb-platform.cpp
   99   FileSpec temp_file_spec(file_spec.GetDirectory().AsCString());