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

1 2 3 4 56 7 8 91011

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ntpath.py 19 "ismount","walk","expanduser","expandvars","normpath","abspath",
231 # Directory tree walk.
239 def walk(top, func, arg): function
240 """Directory tree walk with callback function.
247 and walk will only recurse into the subdirectories whose names remain in
253 warnings.warnpy3k("In 3.x, os.path.walk is removed in favor of os.walk.",
263 walk(name, func, arg)
posixpath.py 31 "ismount","walk","expanduser","expandvars","normpath","abspath",
210 # Directory tree walk.
218 def walk(top, func, arg): function
219 """Directory tree walk with callback function.
226 and walk will only recurse into the subdirectories whose names remain in
232 warnings.warnpy3k("In 3.x, os.path.walk is removed in favor of os.walk.",
246 walk(name, func, arg)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_os.py 384 """Tests for os.walk()."""
427 # Walk top-down.
428 all = list(os.walk(walk_path))
442 for root, dirs, files in os.walk(walk_path):
452 # Walk bottom-up.
453 all = list(os.walk(walk_path, topdown=False))
466 # Walk, following symlinks.
467 for root, dirs, files in os.walk(walk_path, followlinks=True):
480 for root, dirs, files in os.walk(test_support.TESTFN, topdown=False):
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_os.py 384 """Tests for os.walk()."""
427 # Walk top-down.
428 all = list(os.walk(walk_path))
442 for root, dirs, files in os.walk(walk_path):
452 # Walk bottom-up.
453 all = list(os.walk(walk_path, topdown=False))
466 # Walk, following symlinks.
467 for root, dirs, files in os.walk(walk_path, followlinks=True):
480 for root, dirs, files in os.walk(test_support.TESTFN, topdown=False):
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/
sparccpuid.S 32 call .walk.reg.wins
140 .walk.reg.wins:
148 call .walk.reg.wins
  /external/llvm/lib/Transforms/Scalar/
TailRecursionElimination.cpp 169 // Start at a root value and walk its use-def chain to mark calls that use the
172 void walk(Value *Root) { function in struct:__anon30111::AllocaDerivedValueTracker
258 Tracker.walk(&Arg);
263 Tracker.walk(AI);
    [all...]
  /external/openssl/crypto/
sparccpuid.S 32 call .walk.reg.wins
140 .walk.reg.wins:
148 call .walk.reg.wins
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
pycodegen.py 8 from compiler import ast, parse, walk, syntax namespace
258 walk(tree, s)
353 lnf = walk(node.node, self.NameFinder(), verbose=0)
385 walk(node.code, gen)
397 walk(node.code, gen)
675 walk(node.code, gen)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
pycodegen.py 8 from compiler import ast, parse, walk, syntax namespace
258 walk(tree, s)
353 lnf = walk(node.node, self.NameFinder(), verbose=0)
385 walk(node.code, gen)
397 walk(node.code, gen)
675 walk(node.code, gen)
    [all...]
  /build/tools/releasetools/
check_target_files_signatures 130 for dirpath, dirnames, filenames in os.walk(top):
241 for dirpath, dirnames, filenames in os.walk(d):
  /external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/command/
update.py 87 for root, _, files in os.walk(self.archive_cache):
108 for root, _, files in os.walk(self.archive_cache):
  /external/chromium_org/native_client_sdk/src/doc/
io2014.rst 164 *Debugger walk-thru coming soon.*
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
filesystem_unittest.py 189 self.assertEqual(list(fs.walk(d)), [(d, [], [])])
192 self.assertEqual(list(fs.walk(d)), [(d, [], ['foo'])])
  /external/chromium_org/build/android/gyp/
process_resources.py 218 for root, _, files in os.walk(d):
  /external/chromium_org/build/android/gyp/util/
build_utils.py 52 for root, _dirnames, filenames in os.walk(directory):
  /external/chromium_org/chrome/common/extensions/
PRESUBMIT.py 36 for path, dirs, files in os.walk(LOCAL_PUBLIC_TEMPLATES_PATH):
  /external/chromium_org/chrome/tools/
check_grd_for_unused_strings.py 46 A list of directories to walk looking for source files.
82 for root, dirs, files in os.walk(src_dir):
  /external/chromium_org/native_client_sdk/src/build_tools/
parse_dsc.py 175 for root, _, files in os.walk(srcpath):
verify_filelist.py 154 for root, _, files in os.walk(directory_path):
verify_ppapi.py 75 for root, _, files in os.walk(directory_path):
  /external/chromium_org/native_client_sdk/src/doc/doxygen/
doxy_cleanup.py 191 for root, _, files in os.walk(root_dir):
  /external/chromium_org/remoting/host/installer/
build-installer-archive.py 66 for (root, dirs, files) in os.walk(directory):
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/
build_jsdoc_validator_jar.py 94 for root, dirs, files in sorted(os.walk(src_path)):
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
files.py 211 for dirpath, dirnames, filenames in os.walk(dirname, topdown=True):
  /external/chromium_org/third_party/protobuf/python/
setup.py 122 for (dirpath, dirnames, filenames) in os.walk("."):

Completed in 418 milliseconds

1 2 3 4 56 7 8 91011