Home | History | Annotate | Download | only in ndk-depends

Lines Matching refs:sep

203   size_t sep;
205 sep = sep_backslash;
207 sep = sep_slash;
209 sep = std::max(sep_slash, sep_backslash);
211 size_t sep = filepath.rfind(_T('/'));
213 return sep;
218 size_t sep = path_last_dirsep(filepath);
219 if (sep == std::string::npos)
221 else if (sep == 0)
224 return filepath.substr(0, sep);
229 size_t sep = path_last_dirsep(filepath);
230 if (sep == std::string::npos)
233 return filepath.substr(sep + 1);