Home | History | Annotate | Download | only in Support

Lines Matching refs:separators

34   const char *separators = "\\/";
37 const char separators = '/';
65 size_t end = path.find_first_of(separators, 2);
80 size_t end = path.find_first_of(separators, 2);
93 size_t pos = str.find_last_of(separators, str.size() - 1);
127 return str.find_first_of(separators, 2);
142 // Skip separators except for root dir.
200 // Both POSIX and Windows treat paths that begin with exactly two separators
207 // Handle separators.
220 // Skip extra separators.
235 size_t end_pos = Path.find_first_of(separators, Position);
255 // Skip separators unless it's the root directory.
395 // Strip separators from beginning of component.
396 size_t loc = i->find_first_not_of(separators);
666 assert(P.find_first_of(separators) == StringRef::npos &&