reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
680 while (Path.size() > 2 && Path[0] == '.' && is_separator(Path[1], style)) { 680 while (Path.size() > 2 && Path[0] == '.' && is_separator(Path[1], style)) { 680 while (Path.size() > 2 && Path[0] == '.' && is_separator(Path[1], style)) { 681 Path = Path.substr(2); 681 Path = Path.substr(2); 682 while (Path.size() > 0 && is_separator(Path[0], style)) 682 while (Path.size() > 0 && is_separator(Path[0], style)) 683 Path = Path.substr(1); 683 Path = Path.substr(1); 685 return Path;