Home
last modified time | relevance | path

Searched refs:topdown (Results 1 – 17 of 17) sorted by relevance

/third_party/python/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
387 if not topdown and is_dir:
406 if topdown:
418 yield from _walk(new_path, topdown, onerror, followlinks)
422 yield from _walk(new_path, topdown, onerror, followlinks)
430 def fwalk(top=".", topdown=True, onerror=None, *, follow_symlinks=False, dir_fd=None): argument
463 sys.audit("os.fwalk", top, topdown, onerror, follow_symlinks, dir_fd)
[all …]
Dmailbox.py473 for root, dirs, files in os.walk(path, topdown=False):
/third_party/ltp/testcases/kernel/mem/vma/
Dvma01.c92 int topdown; in check_vma() local
112 topdown = (u > t) ? 0 : 1; in check_vma()
117 if (topdown) { in check_vma()
/third_party/jerryscript/targets/mbedos5/tools/
Dgenerate_pins.py69 for root, dirs, files in os.walk(root_dir, topdown=True):
82 for root, dirs, _ in os.walk(root_dir, topdown=True):
/third_party/skia/gn/
Dcopy_git_directory.py33 for dirpath, dirnames, filenames in os.walk('.', topdown=False):
/third_party/skia/infra/bots/
Dzip_utils.py34 for r, d, f in os.walk(target_dir, topdown=True):
Dutils.py193 for root, dirs, files in os.walk(file_path, topdown=False):
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/include/llvm/IR/
DIntrinsicEnums.inc194 objc_arc_annotation_topdown_bbend, // llvm.objc.arc.annotation.topdown.bbend
195 objc_arc_annotation_topdown_bbstart, // llvm.objc.arc.annotation.topdown.bbstart
DIntrinsicImpl.inc222 "llvm.objc.arc.annotation.topdown.bbend",
223 "llvm.objc.arc.annotation.topdown.bbstart",
10355 5, // llvm.objc.arc.annotation.topdown.bbend
10356 5, // llvm.objc.arc.annotation.topdown.bbstart
/third_party/node/tools/
Dinstall.py93 for dirname, subdirs, basenames in os.walk(root, topdown=True):
/third_party/python/Lib/test/
Dtest_os.py1384 all = list(self.walk(self.walk_path, topdown=False))
1444 iters = [self.walk(base, topdown=False) for j in range(100)]
1451 iters = [self.walk(base, topdown=True) for j in range(100)]
1477 for topdown, follow_symlinks in itertools.product((True, False), repeat=2):
1478 walk_kwargs.update(topdown=topdown, followlinks=follow_symlinks)
1479 fwalk_kwargs.update(topdown=topdown, follow_symlinks=follow_symlinks)
1505 for topdown, follow_symlinks in itertools.product((True, False), repeat=2):
1506 args = os_helper.TESTFN, topdown, None
Dtest_tempfile.py1649 for root, dirs, files in os.walk(d.name, topdown=False):
1662 for root, dirs, files in os.walk(d.name, topdown=False):
Dtest_runpy.py259 for root, dirs, files in os.walk(top, topdown=False):
Dtest_argparse.py40 for root, dirs, files in os.walk(self.temp_dir, topdown=False):
/third_party/node/deps/v8/tools/
Dgenerate-runtime-call-stats.py478 output_dir, topdown=False):
/third_party/python/Doc/library/
Dos.rst3117 .. function:: walk(top, topdown=True, onerror=None, followlinks=False)
3138 If optional argument *topdown* is ``True`` or not specified, the triple for a
3140 (directories are generated top-down). If *topdown* is ``False``, the triple
3142 (directories are generated bottom-up). No matter the value of *topdown*, the
3146 When *topdown* is ``True``, the caller can modify the *dirnames* list in-place
3151 :func:`walk` again. Modifying *dirnames* when *topdown* is ``False`` has
3199 for root, dirs, files in os.walk(top, topdown=False):
3205 .. audit-event:: os.walk top,topdown,onerror,followlinks os.walk
3215 .. function:: fwalk(top='.', topdown=True, onerror=None, *, follow_symlinks=False, dir_fd=None)
3260 for root, dirs, files, rootfd in os.fwalk(top, topdown=False):
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DMachineScheduler.cpp3613 InstructionShuffler(bool alternate, bool topdown) in InstructionShuffler() argument
3614 : IsAlternating(alternate), IsTopDown(topdown) {} in InstructionShuffler()