/third_party/python/Lib/zoneinfo/ |
H A D | _tzpath.py | 140 for root, dirnames, files in os.walk(tz_root): 144 if "right" in dirnames: 145 dirnames.remove("right") 146 if "posix" in dirnames: 147 dirnames.remove("posix")
|
/third_party/icu/icu4c/source/python/icutools/databuilder/renderers/ |
H A D | makefile.py | 77 dirnames = [utils.dir_for(file).format(**common_vars) for file in files] 80 return "%s/%s" % (dirnames[0], files[0].filename) 81 elif len(set(dirnames)) == 1: 82 return "$(addprefix %s/,%s)" % (dirnames[0], join_str.join(file.filename for file in files)) 84 return join_str.join("%s/%s" % (d, f.filename) for d,f in zip(dirnames, files))
|
/third_party/skia/third_party/externals/icu/source/python/icutools/databuilder/renderers/ |
H A D | makefile.py | 77 dirnames = [utils.dir_for(file).format(**common_vars) for file in files] 80 return "%s/%s" % (dirnames[0], files[0].filename) 81 elif len(set(dirnames)) == 1: 82 return "$(addprefix %s/,%s)" % (dirnames[0], join_str.join(file.filename for file in files)) 84 return join_str.join("%s/%s" % (d, f.filename) for d,f in zip(dirnames, files))
|
/third_party/python/Tools/scripts/ |
H A D | pysource.py | 111 for dirpath, dirnames, filenames in os.walk(path): 113 if exclude in dirnames: 114 dirnames.remove(exclude)
|
/third_party/python/Lib/test/test_importlib/ |
H A D | update-zips.py | 44 for dirpath, dirnames, filenames in os.walk(datapath): 46 dirnames.remove('__pycache__')
|
/third_party/skia/third_party/externals/harfbuzz/test/shape/ |
H A D | hb_test_tools.py | 471 for dirpath, dirnames, filenames in os.walk (s, followlinks=True): 474 if f in dirnames: 475 dirnames.remove (f) 478 dirnames.sort () 485 for f in dirnames: 487 for f in dirnames:
|
/third_party/skia/gn/ |
H A D | copy_git_directory.py | 33 for dirpath, dirnames, filenames in os.walk('.', topdown=False): 39 for filename in dirnames:
|
/third_party/python/Lib/distutils/ |
H A D | archive_util.py | 174 for dirpath, dirnames, filenames in os.walk(base_dir): 175 for name in dirnames:
|
/third_party/skia/third_party/externals/brotli/scripts/ |
H A D | fix-win-bazel-build.py | 9 for root, dirnames, filenames in os.walk('bazel-bin\\org\\brotli'):
|
/third_party/python/Lib/lib2to3/tests/ |
H A D | support.py | 53 for dirpath, dirnames, filenames in os.walk(proj_dir):
|
/third_party/python/Lib/lib2to3/ |
H A D | refactor.py | 296 for dirpath, dirnames, filenames in os.walk(dir_name): 298 dirnames.sort() 305 # Modify dirnames in-place to remove subdirs with leading dots 306 dirnames[:] = [dn for dn in dirnames if not dn.startswith(".")]
|
/third_party/jerryscript/targets/curie_bsp/ |
H A D | setup.py | 61 for root, dirnames, filenames in os.walk(src_dir):
|
/third_party/skia/src/core/ |
H A D | SkYUVMath.cpp | 305 const char* dirnames[] = { in dump() local 308 SkDebugf("const float %s_%s[] = {\n", names[cs], dirnames[rgb2yuv]); in dump()
|
/third_party/python/Lib/test/ |
H A D | test_reprlib.py | 253 for dirpath, dirnames, filenames in os.walk(self.pkgname): 254 for name in dirnames + filenames:
|
/third_party/protobuf/python/ |
H A D | setup.py | 118 for (dirpath, dirnames, filenames) in os.walk("."):
|
/third_party/node/tools/inspector_protocol/jinja2/ |
H A D | loaders.py | 193 for dirpath, dirnames, filenames in walk_dir:
|
/third_party/node/tools/ |
H A D | install.py | 137 for dirpath, dirnames, filenames in os.walk(path):
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/scripts/ |
H A D | update.py | 230 for base_dir, dirnames, filenames in os.walk(src):
|
/third_party/python/Lib/ |
H A D | shutil.py | 1002 for dirpath, dirnames, filenames in os.walk(base_dir): 1007 for name in sorted(dirnames):
|
/third_party/python/Mac/BuildScript/ |
H A D | build-installer.py | 1253 for dirpath, dirnames, filenames in os.walk(frmDir): 1254 for dn in dirnames:
|
/third_party/python/ |
H A D | setup.py | 1551 for dirpath, dirnames, fnames in os.walk(dirname):
|