Home
last modified time | relevance | path

Searched refs:path_end (Results 1 – 2 of 2) sorted by relevance

/vim-8.2.3635/src/
H A Dfilepath.c3342 char_u *path_end; in dos_expandpath() local
3380 path_end = path; in dos_expandpath()
3385 if (path_end >= path + wildoff && rem_backslash(path_end)) in dos_expandpath()
3386 *p++ = *path_end++; in dos_expandpath()
3387 else if (*path_end == '\\' || *path_end == ':' || *path_end == '/') in dos_expandpath()
3401 path_end += len; in dos_expandpath()
3523 if (*path_end != 0) in dos_expandpath()
3587 char_u *path_end; in unix_expandpath() local
3622 path_end = path; in unix_expandpath()
3627 if (path_end >= path + wildoff && rem_backslash(path_end)) in unix_expandpath()
[all …]
H A Dfindfile.c712 char_u *path_end = NULL; in vim_findfile() local
740 path_end = &search_ctx->ffsc_start_dir[ in vim_findfile()
1150 (int)(path_end - search_ctx->ffsc_start_dir), in vim_findfile()
1155 while (path_end > search_ctx->ffsc_start_dir in vim_findfile()
1156 && vim_ispathsep(*path_end)) in vim_findfile()
1157 path_end--; in vim_findfile()
1158 while (path_end > search_ctx->ffsc_start_dir in vim_findfile()
1159 && !vim_ispathsep(path_end[-1])) in vim_findfile()
1160 path_end--; in vim_findfile()
1161 *path_end = 0; in vim_findfile()
[all …]