Searched refs:_walk (Results 1 – 7 of 7) sorted by relevance
/third_party/python/Lib/test/test_tools/test_c_analyzer/test_common/ |
D | test_files.py | 40 def _walk(self, root, *, suffix=None, walk=None): member in IterFilesTests 57 _walk=self._walk)) 76 _walk=self._walk)) 93 _walk=self._walk)) 111 _walk=self._walk)) 126 _walk=self._walk)) 140 _walk=self._walk)) 161 _walk=self._walk)) 182 _walk=self._walk)) 206 _walk=self._walk)) [all …]
|
/third_party/python/Tools/c-analyzer/c_analyzer/common/ |
D | files.py | 15 _walk=os.walk, 18 for parent, _, names in _walk(root): 65 _walk=walk_tree, argument 85 _glob=_glob, _walk=_walk) 93 get_files = (lambda *a, **k: _walk(*a, walk=_files, **k))
|
/third_party/typescript/src/harness/ |
D | vfsUtil.ts | 187 const { node } = this._walk(this._resolve(path)); 207 const { node } = this._walk(this._cwd); 221 const { node } = this._walk(path); 269 … this._scan(path, this._stat(this._walk(path)), axis, traversal, /*noFollow*/ false, results); 282 …this._scan(path, this._stat(this._walk(path, /*noFollow*/ true)), axis, traversal, /*noFollow*/ tr… 296 const stats = this._stat(this._walk(dirname, noFollow)); 309 const stats = this._stat(this._walk(childpath, noFollow)); 330 …const { parent, links, node: existingNode, basename } = this._walk(this._resolve(target), /*noFoll… 367 const result = this._walk(path, /*noFollow*/ true, (error, result) => { 422 const result = this._walk(this._resolve(path), /*noFollow*/ true, () => "stop"); [all …]
|
/third_party/jinja2/ |
D | loaders.py | 277 def _walk(path): function 282 _walk(fullname) 286 _walk(path)
|
/third_party/node/tools/inspector_protocol/jinja2/ |
D | loaders.py | 258 def _walk(path): function 262 _walk(fullname) 265 _walk(path)
|
/third_party/skia/third_party/externals/jinja2/ |
D | loaders.py | 277 def _walk(path): function 282 _walk(fullname) 286 _walk(path)
|
/third_party/python/Lib/ |
D | os.py | 342 return _walk(fspath(top), topdown, onerror, followlinks) 344 def _walk(top, topdown, onerror, followlinks): function 418 yield from _walk(new_path, topdown, onerror, followlinks) 422 yield from _walk(new_path, topdown, onerror, followlinks)
|