Lines Matching refs:slash
683 // search for first slash after the drive (or volume) name
684 unsigned char* slash = _mbschr(path, '\\');
686 if (slash)
689 ++slash;
690 slash = _mbschr(slash, '\\');
692 while (slash)
694 *slash = '\0';
705 *slash = '\\';
706 ++slash;
707 slash = _mbschr(slash, '\\');
798 // using ".." For a local drive this is the first slash (e.g. "c:\").
799 // For a UNC path it is the slash following the share name