HomeSort by relevance Sort by last modified time
    Searched refs:globbedpath (Results 1 - 2 of 2) sorted by null

  /external/skia/tools/
find_bad_images_in_skps.py 79 for globbedpath in glob.iglob(path): # useful on win32
80 if os.path.isdir(globbedpath):
81 for filename in os.listdir(globbedpath):
82 newpath = os.path.join(globbedpath, filename)
85 elif os.path.isfile(globbedpath):
86 yield globbedpath
88 raise NotAFileException('{} is not a file'.format(globbedpath))
test_gpuveto.py 30 for globbedpath in glob.iglob(dir_or_file): # useful on win32
31 if os.path.isdir(globbedpath):
32 for filename in os.listdir(globbedpath):
33 newpath = os.path.join(globbedpath, filename)
36 elif os.path.isfile(globbedpath):
37 files.append(globbedpath)

Completed in 35 milliseconds