Searched refs:isDir (Results 1 – 10 of 10) sorted by relevance
/build/soong/mk2rbc/ |
D | find_mockfs.go | 32 func (m FindMockFS) create(name string, isDir bool) { 34 m.dirs[dir] = append(m.dirs[dir], myFileInfo{filepath.Base(name), isDir}) 46 isDir bool member 86 return m.isDir 111 isDir := false 114 myfs.create(f, isDir) 116 isDir = true
|
/build/blueprint/pathtools/ |
D | fs.go | 347 isDir, err := m.IsDir(dir) 350 isDir = false 355 if !isDir { 380 if _, isDir := m.dirs[name]; isDir { 456 } else if _, isDir := m.dirs[name]; isDir { 478 if _, isDir := m.dirs[name]; isDir { 494 exists, isDir, err := m.Exists(name) 501 if !isDir { 542 isDir, err := fs.IsDir(name) 547 if !isDir {
|
D | fs_test.go | 146 isDir bool 195 if got != test.isDir { 196 t.Errorf("want: %v, got %v", test.isDir, got)
|
D | glob.go | 196 isDir, err := fs.IsDir(m) 206 if isDir {
|
/build/soong/finder/fs/ |
D | fs.go | 302 _, isDir := parentDir.subdirs[fileName] 304 if isDir || isLink { 337 dir, isDir := parentDir.subdirs[name] 338 if isDir { 837 _, isDir := parentDir.subdirs[leaf] 838 if isDir { 918 _, isDir := parentDir.subdirs[leaf] 919 if !isDir { 920 if !isDir {
|
/build/make/tools/atree/ |
D | files.cpp | 393 add_more(const string& entry, bool isDir, in add_more() argument 406 r.sourceIsDir = isDir; in add_more()
|
/build/soong/cmd/merge_zips/ |
D | merge_zips.go | 62 isDir bool member 72 isDir: fi.FileInfo().IsDir(), 84 return ze.isDir
|
/build/soong/bpfix/bpfix/ |
D | bpfix.go | 1690 _, isDir, _ := fs.Exists(relativePath) 1691 if !isDir { 1702 _, isDir, _ = fs.Exists(path) 1703 if !isDir {
|
/build/soong/zip/ |
D | zip.go | 354 if exists, isDir, err := z.fs.Exists(fa.GlobDir); err != nil { 369 } else if !isDir && !args.IgnoreMissingFiles {
|
/build/soong/android/ |
D | paths.go | 735 if isDir, err := input.context.Config().fs.IsDir(p.String()); exists && err != nil { 737 } else if isDir {
|