HomeSort by relevance Sort by last modified time
    Searched refs:walk (Results 51 - 75 of 267) sorted by null

1 23 4 5 6 7 8 91011

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
macpath.py 12 "walk","expanduser","expandvars","normpath","abspath",
159 def walk(top, func, arg): function
160 """Directory tree walk with callback function.
167 and walk will only recurse into the subdirectories whose names remain in
173 warnings.warnpy3k("In 3.x, os.path.walk is removed in favor of os.walk.",
183 walk(name, func, arg)
  /build/tools/
findleaves.py 31 for root, dirs, files in os.walk(rootdir, followlinks=True):
  /external/chromium_org/build/android/
generate_emma_html.py 30 for root, _, filenames in os.walk(root_dir):
asan_symbolize.py 42 for src_dir, _, files in os.walk(asan_lib_dir):
  /external/chromium_org/build/linux/
install-chromeos-fonts.py 70 for base, dirs, files in os.walk(dest_dir):
  /external/chromium_org/native_client_sdk/src/tools/
genhttpfs.py 53 for root, _, files in os.walk(filename):
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/compiler-runner/
build_compiler_runner_jar.py 37 for root, dirs, files in sorted(os.walk(src_path)):
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/breakpad/
dump_reader.py 63 for root, dirs, files in self._host.filesystem.walk(self.crash_dumps_directory()):
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/
filereader.py 134 # FIXME: We should consider moving to self.filesystem.files_under() (or adding walk() to FileSystem)
135 for dir_path, dir_names, file_names in os.walk(directory):
  /external/chromium_org/tools/gyp/test/mac/
gyptest-app.py 28 for dirpath, _, files in os.walk(path):
  /external/chromium_org/v8/test/mjsunit/compiler/
regress-closures-with-eval.js 32 function walk(v) {
41 return walk(o);
  /external/llvm/utils/
wciia.py 118 # bottom up walk of the current .
121 for dir,subdirList,fileList in os.walk( root , topdown=False ) :
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/
support.py 49 for dirpath, dirnames, filenames in os.walk(proj_dir):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/
support.py 49 for dirpath, dirnames, filenames in os.walk(proj_dir):
  /bionic/libc/kernel/tools/
utils.py 80 """recursively walk a list of paths and files, only keeping the source files in directories"""
94 for root, dirs, files in os.walk(path):
111 for root, dirs, files in os.walk(path, topdown=False):
135 for root, dirs, files in os.walk(path):
update_all.py 54 for root, dirs, files in os.walk( original_dir ):
  /external/chromium_org/chrome/common/extensions/docs/server2/
integration_test.py 59 def walk(path, prefix=''): function in function:_GetPublicFiles
62 for root, dirs, files in os.walk(path, topdown=True):
78 public_files.update(walk(content_provider['chromium']['dir'],
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
filesystem.py 103 for (dirpath, dirnames, filenames) in os.walk(path):
134 def walk(self, top): member in class:FileSystem
135 return os.walk(top)
  /external/chromium_org/tools/clang/scripts/
update.py 64 for root, _, files in os.walk(dir):
161 for root, _, files in os.walk(asan_rt_lib_src_dir):
178 for _, _, files in os.walk(sanitizer_include_dir):
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
chromevox_json.js 295 function walk(holder, key) {
297 // The walk method is used to recursively walk the resulting structure
304 v = walk(value, k);
358 // In the optional fourth stage, we recursively walk the new
361 return typeof reviver === 'function' ? walk({'': j}, '') : j;
  /development/testrunner/test_defs/
gtest.py 85 os.path.walk(sub_tests_path, self._CollectTestSources, test_file_list)
107 This method is a callback for os.path.walk.
  /docs/source.android.com/scripts/
build.py 59 for curdir, subdirs, files in os.walk(SRC_DIR):
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
simplefileflags.py 107 for root, subdirs, files in os.walk(start):
  /external/chromium_org/build/android/gyp/util/
md5_check.py 44 for root, _, files in os.walk(dir_path):
  /external/chromium_org/build/util/lib/common/
util.py 44 for root, dirs, files in os.walk(path, topdown=False):

Completed in 867 milliseconds

1 23 4 5 6 7 8 91011