/external/python/pyfakefs/pyfakefs/ |
D | fake_scandir.py | 210 def walk(filesystem, top, topdown=True, onerror=None, followlinks=False): argument 230 if not top_most and not followlinks and filesystem.islink(top_dir): 244 if not followlinks and filesystem.islink(directory): 294 def walk(self, top, topdown=True, onerror=None, followlinks=False): argument 311 return walk(self.filesystem, top, topdown, onerror, followlinks)
|
D | fake_filesystem.py | 3883 def walk(self, top, topdown=True, onerror=None, followlinks=False): argument 3900 return walk(self.filesystem, top, topdown, onerror, followlinks)
|
/external/libchrome/third_party/jinja2/ |
D | loaders.py | 160 def __init__(self, searchpath, encoding='utf-8', followlinks=False): argument 165 self.followlinks = followlinks 192 walk_dir = os.walk(searchpath, followlinks=self.followlinks)
|
/external/python/jinja/src/jinja2/ |
D | loaders.py | 166 def __init__(self, searchpath, encoding="utf-8", followlinks=False): argument 172 self.followlinks = followlinks 200 walk_dir = os.walk(searchpath, followlinks=self.followlinks)
|
/external/python/cpython3/Lib/ |
D | os.py | 282 def walk(top, topdown=True, onerror=None, followlinks=False): argument 341 sys.audit("os.walk", top, topdown, onerror, followlinks) 342 return _walk(fspath(top), topdown, onerror, followlinks) 344 def _walk(top, topdown, onerror, followlinks): argument 390 if followlinks: 417 if followlinks or not islink(new_path): 418 yield from _walk(new_path, topdown, onerror, followlinks) 422 yield from _walk(new_path, topdown, onerror, followlinks)
|
/external/python/setuptools/setuptools/ |
D | __init__.py | 68 for root, dirs, files in os.walk(where, followlinks=True): 162 for base, dirs, files in os.walk(path, followlinks=True)
|
/external/tensorflow/tensorflow/tools/test/ |
D | file_name_test.py | 38 for dirpath, dirnames, filenames in os.walk(BASE_DIR, followlinks=True):
|
/external/python/cpython2/Lib/ |
D | os.py | 209 def walk(top, topdown=True, onerror=None, followlinks=False): argument 295 if followlinks or not islink(new_path): 296 for x in walk(new_path, topdown, onerror, followlinks):
|
/external/tensorflow/tensorflow/python/keras/preprocessing/ |
D | dataset_utils.py | 134 walk = os.walk(directory, followlinks=follow_links)
|
/external/python/cpython3/Lib/distutils/ |
D | filelist.py | 252 for base, dirs, files in os.walk(path, followlinks=True)
|
/external/harfbuzz_ng/test/shaping/ |
D | hb_test_tools.py | 556 for dirpath, dirnames, filenames in os.walk (s, followlinks=True):
|
/external/python/cpython2/Lib/test/ |
D | test_os.py | 469 for root, dirs, files in os.walk(walk_path, followlinks=True):
|
/external/python/pyfakefs/pyfakefs/tests/ |
D | fake_os_test.py | 4335 followlinks=False): argument 4339 top, topdown=topdown, followlinks=followlinks)] 4471 self.assertWalkResults(expected, base_dir, followlinks=False) 4477 followlinks=False) 4495 self.assertWalkResults(expected, base_dir, followlinks=True) 4501 followlinks=True)
|
/external/python/cpython2/Doc/library/ |
D | os.rst | 1589 .. function:: walk(top, topdown=True, onerror=None, followlinks=False) 1631 directories. Set *followlinks* to ``True`` to visit directories pointed to by 1635 The *followlinks* parameter. 1639 Be aware that setting *followlinks* to ``True`` can lead to infinite recursion if a
|
/external/python/pyfakefs/ |
D | CHANGES.md | 509 * `os.walk`: Support for `followlinks` argument
|
/external/python/cpython3/Doc/library/ |
D | os.rst | 2983 .. function:: walk(top, topdown=True, onerror=None, followlinks=False) 3028 directories. Set *followlinks* to ``True`` to visit directories pointed to by 3033 Be aware that setting *followlinks* to ``True`` can lead to infinite 3071 .. audit-event:: os.walk top,topdown,onerror,followlinks os.walk
|
/external/python/cpython3/Lib/test/ |
D | test_os.py | 1336 walk_kwargs.update(topdown=topdown, followlinks=follow_symlinks)
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.6a1.rst | 2623 os.walk() now has a "followlinks" parameter. If set to True (which is not
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.6.rst | 2183 * The :func:`os.walk` function now has a ``followlinks`` parameter. If
|
/external/python/cpython3/Doc/whatsnew/ |
D | 2.6.rst | 2187 * The :func:`os.walk` function now has a ``followlinks`` parameter. If
|