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

1 2 3

  /prebuilts/go/darwin-x86/src/path/filepath/
path_plan9.go 9 // IsAbs reports whether the path is absolute.
10 func IsAbs(path string) bool {
path_unix.go 11 // IsAbs reports whether the path is absolute.
12 func IsAbs(path string) bool {
symlink.go 84 if IsAbs(newpath) || os.IsPathSeparator(newpath[0]) {
109 if path[volumeNameLen(path):] == "." && !IsAbs(newpath) {
path_windows.go 16 // IsAbs reports whether the path is absolute.
17 func IsAbs(path string) (b bool) {
path_test.go 692 isAbs bool
731 tests = append(tests, IsAbsTest{"c:" + test.path, test.isAbs})
738 if r := filepath.IsAbs(test.path); r != test.isAbs {
739 t.Errorf("IsAbs(%q) = %v, want %v", test.path, r, test.isAbs)
842 if filepath.IsAbs(d.dest) || os.IsPathSeparator(d.dest[0]) {
931 if filepath.IsAbs(d.dest) || os.IsPathSeparator(d.dest[0]) {
1135 if !filepath.IsAbs(abspath) {
1138 if filepath.IsAbs(abspath) && abspath != filepath.Clean(abspath)
    [all...]
  /prebuilts/go/linux-x86/src/path/filepath/
path_plan9.go 9 // IsAbs reports whether the path is absolute.
10 func IsAbs(path string) bool {
path_unix.go 11 // IsAbs reports whether the path is absolute.
12 func IsAbs(path string) bool {
symlink.go 84 if IsAbs(newpath) || os.IsPathSeparator(newpath[0]) {
109 if path[volumeNameLen(path):] == "." && !IsAbs(newpath) {
path_windows.go 16 // IsAbs reports whether the path is absolute.
17 func IsAbs(path string) (b bool) {
path_test.go 692 isAbs bool
731 tests = append(tests, IsAbsTest{"c:" + test.path, test.isAbs})
738 if r := filepath.IsAbs(test.path); r != test.isAbs {
739 t.Errorf("IsAbs(%q) = %v, want %v", test.path, r, test.isAbs)
842 if filepath.IsAbs(d.dest) || os.IsPathSeparator(d.dest[0]) {
931 if filepath.IsAbs(d.dest) || os.IsPathSeparator(d.dest[0]) {
1135 if !filepath.IsAbs(abspath) {
1138 if filepath.IsAbs(abspath) && abspath != filepath.Clean(abspath)
    [all...]
  /prebuilts/go/darwin-x86/src/path/
example_test.go 51 fmt.Println(path.IsAbs("/dev/null"))
path_test.go 215 isAbs bool
231 if r := IsAbs(test.path); r != test.isAbs {
232 t.Errorf("IsAbs(%q) = %v, want %v", test.path, r, test.isAbs)
path.go 197 // IsAbs reports whether the path is absolute.
198 func IsAbs(path string) bool {
  /prebuilts/go/linux-x86/src/path/
example_test.go 51 fmt.Println(path.IsAbs("/dev/null"))
path_test.go 215 isAbs bool
231 if r := IsAbs(test.path); r != test.isAbs {
232 t.Errorf("IsAbs(%q) = %v, want %v", test.path, r, test.isAbs)
path.go 197 // IsAbs reports whether the path is absolute.
198 func IsAbs(path string) bool {
  /external/swiftshader/third_party/LLVM/lib/MC/
MCAssembler.cpp 721 bool IsAbs = LF.getValue().EvaluateAsAbsolute(Value, Layout);
722 (void)IsAbs;
723 assert(IsAbs);
739 bool IsAbs = DF.getAddrDelta().EvaluateAsAbsolute(AddrDelta, Layout);
740 (void)IsAbs;
741 assert(IsAbs);
756 bool IsAbs = DF.getAddrDelta().EvaluateAsAbsolute(AddrDelta, Layout);
757 (void)IsAbs;
758 assert(IsAbs);
  /prebuilts/go/darwin-x86/src/os/
executable_test.go 48 if !filepath.IsAbs(outs) {
  /prebuilts/go/linux-x86/src/os/
executable_test.go 48 if !filepath.IsAbs(outs) {
  /prebuilts/go/darwin-x86/src/cmd/link/internal/ld/
ld.go 62 if filepath.IsAbs(name) {
  /prebuilts/go/darwin-x86/src/go/internal/gcimporter/
gcimporter.go 56 case filepath.IsAbs(path):
  /prebuilts/go/linux-x86/src/cmd/link/internal/ld/
ld.go 62 if filepath.IsAbs(name) {
  /prebuilts/go/linux-x86/src/go/internal/gcimporter/
gcimporter.go 56 case filepath.IsAbs(path):
  /build/kati/
pathutil.go 118 if filepath.IsAbs(path) {
464 if filepath.IsAbs(fcp.fc.chdir) {
468 if filepath.IsAbs(dir) {
  /prebuilts/go/darwin-x86/src/debug/dwarf/
line.go 250 if !path.IsAbs(directory) {
286 if !path.IsAbs(name) {

Completed in 565 milliseconds

1 2 3