func internal/filepathlite.IsPathSeparator
14 uses
internal/filepathlite (current package)
path.go#L70: if volLen > 1 && IsPathSeparator(originalPath[0]) && IsPathSeparator(originalPath[1]) {
path.go#L76: rooted := IsPathSeparator(path[0])
path.go#L93: case IsPathSeparator(path[r]):
path.go#L96: case path[r] == '.' && (r+1 == n || IsPathSeparator(path[r+1])):
path.go#L99: case path[r] == '.' && path[r+1] == '.' && (r+2 == n || IsPathSeparator(path[r+2])):
path.go#L106: for out.w > dotdot && !IsPathSeparator(out.index(out.w)) {
path.go#L125: for ; r < n && !IsPathSeparator(path[r]); r++ {
path.go#L208: for i >= len(vol) && !IsPathSeparator(path[i]) {
path.go#L216: for i := len(path) - 1; i >= 0 && !IsPathSeparator(path[i]); i-- {
path.go#L230: for len(path) > 0 && IsPathSeparator(path[len(path)-1]) {
path.go#L237: for i >= 0 && !IsPathSeparator(path[i]) {
path.go#L254: for i >= len(vol) && !IsPathSeparator(path[i]) {
path_unix.go#L19: func IsPathSeparator(c uint8) bool {