Home
last modified time | relevance | path

Searched refs:isDir (Results 1 – 7 of 7) 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 {
[all …]
Dglob.go84 isDir, err := fs.IsDir(match)
94 if isDir {
150 isDir, err := fs.IsDir(m)
160 if isDir {
Dfs_test.go145 isDir bool
194 if got != test.isDir {
195 t.Errorf("want: %v, got %v", test.isDir, got)
/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/cmd/merge_zips/
Dmerge_zips.go60 isDir bool member
70 isDir: fi.FileInfo().IsDir(),
82 return ze.isDir
/build/soong/zip/
Dzip.go329 if exists, isDir, err := z.fs.Exists(fa.GlobDir); err != nil {
342 } else if !isDir && !args.IgnoreMissingFiles {