Home
last modified time | relevance | path

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

/third_party/gn/src/gn/
Dfilesystem_utils.cc422 size_t first_after_slash = after_common_index + 1; in MakeAbsolutePathRelativeIfPossible() local
423 while (first_after_slash < path_len && IsSlash(path[first_after_slash])) in MakeAbsolutePathRelativeIfPossible()
424 first_after_slash++; in MakeAbsolutePathRelativeIfPossible()
426 dest->append(&path.data()[first_after_slash], in MakeAbsolutePathRelativeIfPossible()
427 path.size() - first_after_slash); in MakeAbsolutePathRelativeIfPossible()
447 size_t first_after_slash = source_root_len + 1; in MakeAbsolutePathRelativeIfPossible() local
448 while (first_after_slash < path_len && IsSlash(path[first_after_slash])) in MakeAbsolutePathRelativeIfPossible()
449 first_after_slash++; in MakeAbsolutePathRelativeIfPossible()
452 dest->append(&path.data()[first_after_slash], in MakeAbsolutePathRelativeIfPossible()
453 path.size() - first_after_slash); in MakeAbsolutePathRelativeIfPossible()