HomeSort by relevance Sort by last modified time
    Searched refs:IsPathSeparator (Results 1 - 25 of 39) sorted by null

1 2

  /prebuilts/go/darwin-x86/src/os/
path_plan9.go 12 // IsPathSeparator reports whether c is a directory separator character.
13 func IsPathSeparator(c uint8) bool {
path_windows.go 12 // IsPathSeparator reports whether c is a directory separator character.
13 func IsPathSeparator(c uint8) bool {
51 return IsPathSeparator(path[0])
66 if l := len(path); l >= 5 && IsPathSeparator(path[0]) && IsPathSeparator(path[1]) &&
67 !IsPathSeparator(path[2]) && path[2] != '.' {
71 if IsPathSeparator(path[n]) {
74 if !IsPathSeparator(path[n]) {
79 if IsPathSeparator(path[n]) {
117 for i >= len(vol) && !IsPathSeparator(path[i])
    [all...]
path_unix.go 14 // IsPathSeparator reports whether c is a directory separator character.
15 func IsPathSeparator(c uint8) bool {
executable_path.go 19 if IsPathSeparator(Args[0][0]) {
25 if IsPathSeparator(Args[0][i]) {
47 if !IsPathSeparator(dir[0]) {
path.go 32 for i > 0 && IsPathSeparator(path[i-1]) { // Skip trailing path separator.
37 for j > 0 && !IsPathSeparator(path[j-1]) { // Scan backward over element.
  /prebuilts/go/linux-x86/src/os/
path_plan9.go 12 // IsPathSeparator reports whether c is a directory separator character.
13 func IsPathSeparator(c uint8) bool {
path_windows.go 12 // IsPathSeparator reports whether c is a directory separator character.
13 func IsPathSeparator(c uint8) bool {
51 return IsPathSeparator(path[0])
66 if l := len(path); l >= 5 && IsPathSeparator(path[0]) && IsPathSeparator(path[1]) &&
67 !IsPathSeparator(path[2]) && path[2] != '.' {
71 if IsPathSeparator(path[n]) {
74 if !IsPathSeparator(path[n]) {
79 if IsPathSeparator(path[n]) {
117 for i >= len(vol) && !IsPathSeparator(path[i])
    [all...]
path_unix.go 14 // IsPathSeparator reports whether c is a directory separator character.
15 func IsPathSeparator(c uint8) bool {
executable_path.go 19 if IsPathSeparator(Args[0][0]) {
25 if IsPathSeparator(Args[0][i]) {
47 if !IsPathSeparator(dir[0]) {
path.go 32 for i > 0 && IsPathSeparator(path[i-1]) { // Skip trailing path separator.
37 for j > 0 && !IsPathSeparator(path[j-1]) { // Scan backward over element.
  /external/google-breakpad/src/testing/gtest/src/
gtest-filepath.cc 91 static bool IsPathSeparator(char c) {
253 return pathname_.length() == 1 && IsPathSeparator(pathname_.c_str()[0]);
265 IsPathSeparator(name[2]);
267 return IsPathSeparator(name[0]);
295 IsPathSeparator(pathname_.c_str()[pathname_.length() - 1]);
361 if (!IsPathSeparator(*src)) {
369 while (IsPathSeparator(*src))
  /external/googletest/googletest/src/
gtest-filepath.cc 90 static bool IsPathSeparator(char c) {
260 return pathname_.length() == 1 && IsPathSeparator(pathname_.c_str()[0]);
272 IsPathSeparator(name[2]);
274 return IsPathSeparator(name[0]);
302 IsPathSeparator(pathname_.c_str()[pathname_.length() - 1]);
368 if (!IsPathSeparator(*src)) {
376 while (IsPathSeparator(*src))
  /external/libvpx/libvpx/third_party/googletest/src/src/
gtest-filepath.cc 90 static bool IsPathSeparator(char c) {
260 return pathname_.length() == 1 && IsPathSeparator(pathname_.c_str()[0]);
272 IsPathSeparator(name[2]);
274 return IsPathSeparator(name[0]);
302 IsPathSeparator(pathname_.c_str()[pathname_.length() - 1]);
368 if (!IsPathSeparator(*src)) {
376 while (IsPathSeparator(*src))
  /external/llvm/utils/unittest/googletest/src/
gtest-filepath.cc 89 static bool IsPathSeparator(char c) {
251 return pathname_.length() == 1 && IsPathSeparator(pathname_.c_str()[0]);
263 IsPathSeparator(name[2]);
265 return IsPathSeparator(name[0]);
293 IsPathSeparator(pathname_.c_str()[pathname_.length() - 1]);
359 if (!IsPathSeparator(*src)) {
367 while (IsPathSeparator(*src))
  /external/mesa3d/src/gtest/src/
gtest-filepath.cc 92 static bool IsPathSeparator(char c) {
255 return pathname_.length() == 1 && IsPathSeparator(pathname_.c_str()[0]);
267 IsPathSeparator(name[2]);
269 return IsPathSeparator(name[0]);
297 IsPathSeparator(pathname_.c_str()[pathname_.length() - 1]);
363 if (!IsPathSeparator(*src)) {
371 while (IsPathSeparator(*src))
  /external/protobuf/gtest/src/
gtest-filepath.cc 91 static bool IsPathSeparator(char c) {
253 return pathname_.length() == 1 && IsPathSeparator(pathname_.c_str()[0]);
265 IsPathSeparator(name[2]);
267 return IsPathSeparator(name[0]);
295 IsPathSeparator(pathname_.c_str()[pathname_.length() - 1]);
361 if (!IsPathSeparator(*src)) {
369 while (IsPathSeparator(*src))
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/
gtest-filepath.cc 91 static bool IsPathSeparator(char c) {
253 return pathname_.length() == 1 && IsPathSeparator(pathname_.c_str()[0]);
265 IsPathSeparator(name[2]);
267 return IsPathSeparator(name[0]);
295 IsPathSeparator(pathname_.c_str()[pathname_.length() - 1]);
361 if (!IsPathSeparator(*src)) {
369 while (IsPathSeparator(*src))
  /external/v8/testing/gtest/src/
gtest-filepath.cc 90 static bool IsPathSeparator(char c) {
260 return pathname_.length() == 1 && IsPathSeparator(pathname_.c_str()[0]);
272 IsPathSeparator(name[2]);
274 return IsPathSeparator(name[0]);
302 IsPathSeparator(pathname_.c_str()[pathname_.length() - 1]);
368 if (!IsPathSeparator(*src)) {
376 while (IsPathSeparator(*src))
  /external/vulkan-validation-layers/tests/gtest-1.7.0/src/
gtest-filepath.cc 92 static bool IsPathSeparator(char c) {
255 return pathname_.length() == 1 && IsPathSeparator(pathname_.c_str()[0]);
267 IsPathSeparator(name[2]);
269 return IsPathSeparator(name[0]);
297 IsPathSeparator(pathname_.c_str()[pathname_.length() - 1]);
363 if (!IsPathSeparator(*src)) {
371 while (IsPathSeparator(*src))
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/src/
gtest-filepath.cc 92 static bool IsPathSeparator(char c) {
255 return pathname_.length() == 1 && IsPathSeparator(pathname_.c_str()[0]);
267 IsPathSeparator(name[2]);
269 return IsPathSeparator(name[0]);
297 IsPathSeparator(pathname_.c_str()[pathname_.length() - 1]);
363 if (!IsPathSeparator(*src)) {
371 while (IsPathSeparator(*src))
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/gtest-1.7.0/src/
gtest-filepath.cc 92 static bool IsPathSeparator(char c) {
255 return pathname_.length() == 1 && IsPathSeparator(pathname_.c_str()[0]);
267 IsPathSeparator(name[2]);
269 return IsPathSeparator(name[0]);
297 IsPathSeparator(pathname_.c_str()[pathname_.length() - 1]);
363 if (!IsPathSeparator(*src)) {
371 while (IsPathSeparator(*src))
  /prebuilts/go/darwin-x86/src/path/filepath/
symlink.go 21 return os.IsPathSeparator(path[0])
23 return path[1] == ':' && os.IsPathSeparator(path[2])
64 if os.IsPathSeparator(dir[len(dir)-1]) {
84 if IsAbs(newpath) || os.IsPathSeparator(newpath[0]) {
path.go 99 rooted := os.IsPathSeparator(path[0])
116 case os.IsPathSeparator(path[r]):
119 case path[r] == '.' && (r+1 == n || os.IsPathSeparator(path[r+1])):
122 case path[r] == '.' && path[r+1] == '.' && (r+2 == n || os.IsPathSeparator(path[r+2])):
129 for out.w > dotdot && !os.IsPathSeparator(out.index(out.w)) {
148 for ; r < n && !os.IsPathSeparator(path[r]); r++ {
198 for i >= len(vol) && !os.IsPathSeparator(path[i]) {
218 for i := len(path) - 1; i >= 0 && !os.IsPathSeparator(path[i]); i-- {
436 for len(path) > 0 && os.IsPathSeparator(path[len(path)-1]) {
443 for i >= 0 && !os.IsPathSeparator(path[i])
    [all...]
  /prebuilts/go/linux-x86/src/path/filepath/
symlink.go 21 return os.IsPathSeparator(path[0])
23 return path[1] == ':' && os.IsPathSeparator(path[2])
64 if os.IsPathSeparator(dir[len(dir)-1]) {
84 if IsAbs(newpath) || os.IsPathSeparator(newpath[0]) {
path.go 99 rooted := os.IsPathSeparator(path[0])
116 case os.IsPathSeparator(path[r]):
119 case path[r] == '.' && (r+1 == n || os.IsPathSeparator(path[r+1])):
122 case path[r] == '.' && path[r+1] == '.' && (r+2 == n || os.IsPathSeparator(path[r+2])):
129 for out.w > dotdot && !os.IsPathSeparator(out.index(out.w)) {
148 for ; r < n && !os.IsPathSeparator(path[r]); r++ {
198 for i >= len(vol) && !os.IsPathSeparator(path[i]) {
218 for i := len(path) - 1; i >= 0 && !os.IsPathSeparator(path[i]); i-- {
436 for len(path) > 0 && os.IsPathSeparator(path[len(path)-1]) {
443 for i >= 0 && !os.IsPathSeparator(path[i])
    [all...]

Completed in 906 milliseconds

1 2