Home
last modified time | relevance | path

Searched refs:followlinks (Results 1 – 20 of 20) sorted by relevance

/external/python/pyfakefs/pyfakefs/
Dfake_scandir.py210 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)
Dfake_filesystem.py3883 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/
Dloaders.py160 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/
Dloaders.py166 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/
Dos.py282 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__.py68 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/
Dfile_name_test.py38 for dirpath, dirnames, filenames in os.walk(BASE_DIR, followlinks=True):
/external/python/cpython2/Lib/
Dos.py209 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/
Ddataset_utils.py134 walk = os.walk(directory, followlinks=follow_links)
/external/python/cpython3/Lib/distutils/
Dfilelist.py252 for base, dirs, files in os.walk(path, followlinks=True)
/external/harfbuzz_ng/test/shaping/
Dhb_test_tools.py556 for dirpath, dirnames, filenames in os.walk (s, followlinks=True):
/external/python/cpython2/Lib/test/
Dtest_os.py469 for root, dirs, files in os.walk(walk_path, followlinks=True):
/external/python/pyfakefs/pyfakefs/tests/
Dfake_os_test.py4335 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/
Dos.rst1589 .. 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/
DCHANGES.md509 * `os.walk`: Support for `followlinks` argument
/external/python/cpython3/Doc/library/
Dos.rst2983 .. 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/
Dtest_os.py1336 walk_kwargs.update(topdown=topdown, followlinks=follow_symlinks)
/external/python/cpython2/Misc/NEWS.d/
D2.6a1.rst2623 os.walk() now has a "followlinks" parameter. If set to True (which is not
/external/python/cpython2/Doc/whatsnew/
D2.6.rst2183 * The :func:`os.walk` function now has a ``followlinks`` parameter. If
/external/python/cpython3/Doc/whatsnew/
D2.6.rst2187 * The :func:`os.walk` function now has a ``followlinks`` parameter. If