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

References

include/llvm/Support/Path.h
   65   reference operator*() const { return Component; }
lib/Support/Path.cpp
  227   i.Component = find_first_component(path, style);
  244   Position += Component.size();
  248     Component = StringRef();
  254   bool was_net = Component.size() > 2 && is_separator(Component[0], S) &&
  254   bool was_net = Component.size() > 2 && is_separator(Component[0], S) &&
  255                  Component[1] == Component[0] && !is_separator(Component[2], S);
  255                  Component[1] == Component[0] && !is_separator(Component[2], S);
  255                  Component[1] == Component[0] && !is_separator(Component[2], S);
  262         (real_style(S) == Style::windows && Component.endswith(":"))) {
  263       Component = Path.substr(Position, 1);
  273     if (Position == Path.size() && Component != "/") {
  275       Component = ".";
  282   Component = Path.slice(Position, end_pos);