Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DPath.cpp732 size_t next_slash = remaining.find_first_of(separators(style)); in remove_dots() local
733 if (next_slash == StringRef::npos) in remove_dots()
734 next_slash = remaining.size(); in remove_dots()
735 StringRef component = remaining.take_front(next_slash); in remove_dots()
736 remaining = remaining.drop_front(next_slash); in remove_dots()