Searched refs:isDir (Results 1 – 6 of 6) sorted by relevance
/build/blueprint/pathtools/ |
D | fs.go | 261 isDir, err := m.IsDir(dir) 264 isDir = false 269 if !isDir { 294 if _, isDir := m.dirs[name]; isDir { 370 } else if _, isDir := m.dirs[name]; isDir { 392 if _, isDir := m.dirs[name]; isDir { 408 exists, isDir, err := m.Exists(name) 415 if !isDir { 456 isDir, err := fs.IsDir(name) 461 if !isDir { [all …]
|
D | glob.go | 83 isDir, err := fs.IsDir(match) 93 if isDir { 147 isDir, err := fs.IsDir(m) 157 if isDir {
|
D | fs_test.go | 107 isDir bool 164 if got != test.isDir { 165 t.Errorf("want: %v, got %v", test.isDir, got)
|
/build/soong/finder/fs/ |
D | fs.go | 297 _, isDir := parentDir.subdirs[fileName] 299 if isDir || isLink { 332 dir, isDir := parentDir.subdirs[name] 333 if isDir { 379 isDir bool member 401 return m.isDir 414 isDir: true, 427 isDir: false, 439 isDir: false, 822 _, isDir := parentDir.subdirs[leaf] [all …]
|
/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/zip/ |
D | zip.go | 328 if exists, isDir, err := z.fs.Exists(fa.GlobDir); err != nil { 341 } else if !isDir && !args.IgnoreMissingFiles {
|