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

References

include/llvm/DebugInfo/DWARF/DWARFDebugLine.h
  136                        sys::path::Style Style = sys::path::Style::native) const;
include/llvm/DebugInfo/GSYM/GsymCreator.h
  181                       sys::path::Style Style = sys::path::Style::native);
include/llvm/Support/Path.h
  101 const_iterator begin(StringRef path, Style style = Style::native);
  111 reverse_iterator rbegin(StringRef path, Style style = Style::native);
  134 void remove_filename(SmallVectorImpl<char> &path, Style style = Style::native);
  149                        Style style = Style::native);
  166                          Style style = Style::native);
  198             const_iterator end, Style style = Style::native);
  211             Style style = Style::native);
  218 void native(SmallVectorImpl<char> &path, Style style = Style::native);
  226 std::string convert_to_slash(StringRef path, Style style = Style::native);
  242 StringRef root_name(StringRef path, Style style = Style::native);
  255 StringRef root_directory(StringRef path, Style style = Style::native);
  263 StringRef root_path(StringRef path, Style style = Style::native);
  275 StringRef relative_path(StringRef path, Style style = Style::native);
  287 StringRef parent_path(StringRef path, Style style = Style::native);
  301 StringRef filename(StringRef path, Style style = Style::native);
  319 StringRef stem(StringRef path, Style style = Style::native);
  335 StringRef extension(StringRef path, Style style = Style::native);
  341 bool is_separator(char value, Style style = Style::native);
  346 StringRef get_separator(Style style = Style::native);
  371 bool has_root_name(const Twine &path, Style style = Style::native);
  379 bool has_root_directory(const Twine &path, Style style = Style::native);
  387 bool has_root_path(const Twine &path, Style style = Style::native);
  395 bool has_relative_path(const Twine &path, Style style = Style::native);
  403 bool has_parent_path(const Twine &path, Style style = Style::native);
  411 bool has_filename(const Twine &path, Style style = Style::native);
  419 bool has_stem(const Twine &path, Style style = Style::native);
  427 bool has_extension(const Twine &path, Style style = Style::native);
  433 bool is_absolute(const Twine &path, Style style = Style::native);
  439 bool is_relative(const Twine &path, Style style = Style::native);
  445 StringRef remove_leading_dotslash(StringRef path, Style style = Style::native);
  454                  Style style = Style::native);
lib/Support/Path.cpp
  457   append(path, Style::native, a, b, c, d);
  797   assert(P.find_first_of(separators(Style::native)) == StringRef::npos &&
  861   if ((rootName || real_style(Style::native) != Style::windows) &&
tools/lldb/include/lldb/Utility/FileSpec.h
   74   explicit FileSpec(llvm::StringRef path, Style style = Style::native);
tools/lldb/include/lldb/Utility/ProcessInfo.h
  209                                              FileSpec::Style::native);
tools/lldb/source/API/SBAttachInfo.cpp
   35     m_opaque_sp->GetExecutableFile().SetFile(path, FileSpec::Style::native);
   45     m_opaque_sp->GetExecutableFile().SetFile(path, FileSpec::Style::native);
  111     m_opaque_sp->GetExecutableFile().SetFile(path, FileSpec::Style::native);
tools/lldb/source/API/SBTarget.cpp
  523     attach_info.GetExecutableFile().SetFile(name, FileSpec::Style::native);
 1575       module_spec.GetFileSpec().SetFile(path, FileSpec::Style::native);
 1587       module_spec.GetSymbolFileSpec().SetFile(symfile, FileSpec::Style::native);
tools/lldb/source/Breakpoint/BreakpointResolverAddress.cpp
   62     module_filespec.SetFile(module_name, FileSpec::Style::native);
tools/lldb/source/Commands/CommandObjectLog.cpp
  100         log_file.SetFile(option_arg, FileSpec::Style::native);
tools/lldb/source/Commands/CommandObjectMemory.cpp
 1211         m_infile.SetFile(option_value, FileSpec::Style::native);
tools/lldb/source/Commands/CommandObjectPlatform.cpp
 1231             option_arg, FileSpec::Style::native);
 1237             option_arg, FileSpec::Style::native);
 1243             option_arg, FileSpec::Style::native);
 1249             option_arg, FileSpec::Style::native);
 1255             option_arg, FileSpec::Style::native);
 1418                                                 FileSpec::Style::native);
 1465             partial_name, FileSpec::Style::native);
tools/lldb/source/Commands/CommandObjectProcess.cpp
  298                                                 FileSpec::Style::native);
  348             partial_name, FileSpec::Style::native);
  883           install_path.SetFile(option_arg, FileSpec::Style::native);
tools/lldb/source/Commands/CommandObjectReproducer.cpp
  186         file.SetFile(option_arg, FileSpec::Style::native);
tools/lldb/source/Commands/CommandObjectTarget.cpp
  316         file_spec.SetFile(file_path, FileSpec::Style::native);
 3608         m_file.SetFile(option_arg, FileSpec::Style::native);
 4325             symbol_file_spec.SetFile(entry.ref(), FileSpec::Style::native);
tools/lldb/source/Host/common/File.cpp
  355       file_spec.SetFile(path, FileSpec::Style::native);
tools/lldb/source/Host/common/Host.cpp
  416       module_filespec.SetFile(info.dli_fname, FileSpec::Style::native);
tools/lldb/source/Host/linux/Host.cpp
  185     process_info.GetExecutableFile().SetFile(PathRef, FileSpec::Style::native);
tools/lldb/source/Host/linux/HostInfoLinux.cpp
  169       g_program_filespec.SetFile(exe_path, FileSpec::Style::native);
tools/lldb/source/Host/posix/FileSystem.cpp
   51     dst.SetFile(buf, FileSpec::Style::native);
tools/lldb/source/Interpreter/OptionValueFileSpec.cpp
   76       m_current_value.SetFile(value.str(), FileSpec::Style::native);
tools/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderDarwin.cpp
  372         FileSpec::Style::native);
tools/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderMacOSXDYLD.cpp
  679         image_infos[i].file_spec.SetFile(raw_path, FileSpec::Style::native);
  872           lc_id_dylinker->SetFile(path, FileSpec::Style::native);
tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp
  278   entry.file_spec.SetFile(name, FileSpec::Style::native);
  549   entry.file_spec.SetFile(file_path, FileSpec::Style::native);
tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp
 4529         m_outfile.SetFile(option_arg, FileSpec::Style::native);
tools/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
 3912                                    FileSpec::Style::native);
tools/lldb/source/Plugins/Platform/MacOSX/PlatformDarwin.cpp
 1167       temp_file_spec.SetFile(xcode_dir_path, FileSpec::Style::native);
 1191       temp_file_spec.SetFile(developer_dir_path, FileSpec::Style::native);
tools/lldb/source/Plugins/Platform/MacOSX/PlatformMacOSX.cpp
  211           fspec.SetFile(sdk_path.GetString(), FileSpec::Style::native);
  217           fspec.SetFile(default_xcode_sdk, FileSpec::Style::native);
tools/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteDarwinDevice.cpp
  428         local_file.SetFile(sdkroot_path, FileSpec::Style::native);
  459       local_file.SetFile(resolved_path, FileSpec::Style::native);
  472       local_file.SetFile(resolved_path, FileSpec::Style::native);
  486       local_file.SetFile(resolved_path, FileSpec::Style::native);
tools/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.cpp
   83                                                  FileSpec::Style::native);
tools/lldb/source/Plugins/Platform/Windows/PlatformWindows.cpp
  174                                                  FileSpec::Style::native);
tools/lldb/source/Plugins/Process/elf-core/ProcessElfCore.cpp
  242           m_nt_file_entries[0].path.GetCString(), FileSpec::Style::native);
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
  946                                   FileSpec::Style::native);
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
 1930         process_info.GetExecutableFile().SetFile(name, FileSpec::Style::native);
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp
  351             file, FileSpec::Style::native);
 1039                       arg, FileSpec::Style::native);
tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
  839                                   FileSpec::Style::native);
  842                                    FileSpec::Style::native);
  845                                    FileSpec::Style::native);
tools/lldb/source/Plugins/SymbolFile/Breakpad/SymbolFileBreakpad.cpp
  655                                 .getValueOr(FileSpec::Style::native);
tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.cpp
  692         FileSpec::GuessPathStyle(comp_dir).getValueOr(FileSpec::Style::native);
  700         "", FileSpec::GuessPathStyle(name).getValueOr(FileSpec::Style::native));
tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
  718               cu_file_spec.SetFile(remapped_file, FileSpec::Style::native);
 1572     dwo_file.SetFile(comp_dir, FileSpec::Style::native);
 1618                                                   FileSpec::Style::native);
 1624                                                       FileSpec::Style::native);
tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.cpp
  345               so_symbol->GetName().AsCString(), FileSpec::Style::native);
tools/lldb/source/Symbol/ObjectFile.cpp
  584   archive_file.SetFile(archive, FileSpec::Style::native);
tools/lldb/source/Target/PathMappingList.cpp
  193     fixed.SetFile(it.first.GetStringRef(), FileSpec::Style::native);
  227       FileSpec prefix_spec(prefix_ref, FileSpec::Style::native);
  234       new_spec.SetFile(entry.second.GetCString(), FileSpec::Style::native);
tools/lldb/source/Target/TargetList.cpp
  116     module_spec.GetFileSpec().SetFile(user_exe_path, FileSpec::Style::native);
tools/lldb/source/Utility/FileSpec.cpp
   47           (style == FileSpec::Style::native &&
  197   m_style = (style == Style::native) ? GetNativeStyle() : style;
tools/lldb/source/Utility/ProcessInfo.cpp
   91       m_executable.SetFile(first_arg, FileSpec::Style::native);
  107       m_executable.SetFile(first_arg, FileSpec::Style::native);
tools/lldb/tools/lldb-server/lldb-platform.cpp
  199         socket_file.SetFile(optarg, FileSpec::Style::native);
tools/lldb/tools/lldb-test/lldb-test.cpp
  806   Spec.GetSymbolFileSpec().SetFile(Symbols, FileSpec::Style::native);
tools/lldb/unittests/ObjectFile/ELF/TestObjectFileELF.cpp
  109                                    FileSpec::Style::native);
  230                                    FileSpec::Style::native);
  295                                    FileSpec::Style::native);
tools/lldb/unittests/Symbol/LocateSymbolFileTest.cpp
   48       "4A524676-B24B-4F4E-968A-551D465EBAF1.so", FileSpec::Style::native);
unittests/Support/Path.cpp
  254 GetComponents(StringRef Path, path::Style S = path::Style::native) {
  281   Paths.emplace_back("/foo/", path::Style::native);
  282   Paths.emplace_back("/foo//", path::Style::native);
  283   Paths.emplace_back("//net/foo/", path::Style::native);
  293   RootPaths.emplace_back("/", path::Style::native);
  294   RootPaths.emplace_back("//net/", path::Style::native);
  296   RootPaths.emplace_back("//net//", path::Style::native);