Home
last modified time | relevance | path

Searched refs:isDir (Results 1 – 6 of 6) sorted by relevance

/build/blueprint/pathtools/
Dfs.go307 isDir, err := m.IsDir(dir)
310 isDir = false
315 if !isDir {
340 if _, isDir := m.dirs[name]; isDir {
416 } else if _, isDir := m.dirs[name]; isDir {
438 if _, isDir := m.dirs[name]; isDir {
454 exists, isDir, err := m.Exists(name)
461 if !isDir {
502 isDir, err := fs.IsDir(name)
507 if !isDir {
Dfs_test.go145 isDir bool
194 if got != test.isDir {
195 t.Errorf("want: %v, got %v", test.isDir, got)
Dglob.go198 isDir, err := fs.IsDir(m)
208 if isDir {
/build/soong/finder/fs/
Dfs.go302 _, 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/
Dfiles.cpp393 add_more(const string& entry, bool isDir, in add_more() argument
406 r.sourceIsDir = isDir; in add_more()
/build/soong/zip/
Dzip.go314 if exists, isDir, err := z.fs.Exists(fa.GlobDir); err != nil {
327 } else if !isDir && !args.IgnoreMissingFiles {