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

1 2 34 5 6 7 8 91011

  /external/chromium_org/chrome/common/extensions/docs/server2/
link_converter.py 85 for root, dirs, files in os.walk(argv[0]):
file_system.py 149 def Walk(self, root):
150 '''Recursively walk the directories in a file system, starting with root.
152 Behaviour is very similar to os.walk from the standard os module, yielding
165 def walk(root): function in function:FileSystem.Walk
178 for walkinfo in walk(root + d):
181 for walkinfo in walk(root):
  /external/chromium_org/ppapi/
generate_ppapi_include_tests.py 60 for root, dirs, files in os.walk(start_root):
  /external/chromium_org/third_party/closure_linter/closure_linter/common/
simplefileflags.py 107 for root, subdirs, files in os.walk(start):
  /external/chromium_org/tools/resources/
list_resources_removed_by_repack.py 62 for root, dirs, files in os.walk(generated_output_dir):
  /external/chromium_org/tools/telemetry/telemetry/core/
discover.py 29 for dir_path, _, filenames in os.walk(start_dir):
  /external/chromium_org/v8/test/mjsunit/
testcfg.py 46 for dirname, dirs, files in os.walk(self.root):
  /external/clang/tools/scan-build/
set-xcode-analyzer 22 for root, dirs, files in os.walk(path):
  /external/deqp/scripts/
check_include_guards.py 74 for root, dirs, files in os.walk(path):
check_redundant_include_guards.py 48 for root, dirs, files in os.walk(path):
  /external/lldb/utils/test/
run-dis.py 41 for root, dirs, files in os.walk(sdk_root, topdown=False):
  /external/protobuf/python/
setup.py 90 for (dirpath, dirnames, filenames) in os.walk("."):
  /external/sepolicy/tools/
post_process_mac_perms 62 for dirpath, _, files in os.walk(args.dir):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
visitor.py 7 """Performs a depth-first walk of the AST
9 The ASTVisitor will walk the AST, performing either a preorder or
25 child nodes are visited during a preorder walk. (It can't control
26 the order during a postorder walk, because it is called _after_
27 the walk has occurred.) The ASTVisitor modifies the visitor
60 """Do preorder walk of tree using visitor"""
101 def walk(tree, visitor, walker=None, verbose=None): function
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/test/
runtktests.py 75 for dirpath, dirnames, filenames in os.walk(basepath):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
os2emxpath.py 12 splitext, split, walk)
17 "ismount","walk","expanduser","expandvars","normpath","abspath",
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
visitor.py 7 """Performs a depth-first walk of the AST
9 The ASTVisitor will walk the AST, performing either a preorder or
25 child nodes are visited during a preorder walk. (It can't control
26 the order during a postorder walk, because it is called _after_
27 the walk has occurred.) The ASTVisitor modifies the visitor
60 """Do preorder walk of tree using visitor"""
101 def walk(tree, visitor, walker=None, verbose=None): function
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/test/
runtktests.py 75 for dirpath, dirnames, filenames in os.walk(basepath):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
os2emxpath.py 12 splitext, split, walk)
17 "ismount","walk","expanduser","expandvars","normpath","abspath",
  /external/replicaisland/src/com/replica/replicaisland/
GameObjectFactory.java 575 // Walk the world and spawn objects based on tile indexes.
    [all...]
  /external/chromium-trace/trace-viewer/
run_dev_server.py 45 for dirpath, dirnames, filenames in os.walk(src_dir):
64 for dirpath, dirnames, filenames in os.walk(test_data_dir):
  /external/chromium_org/native_client_sdk/src/build_tools/
build_app.py 30 for root, _, files in os.walk(outdir):
46 for root, _, files in os.walk(outdir):
  /external/chromium_org/third_party/skia/gm/rebaseline_server/
results.py 200 # it was better to prune out the ignored builders within the os.walk().
204 for dirpath, dirnames, filenames in os.walk(root):
231 for abs_dirpath, dirnames, filenames in os.walk(root):
  /external/chromium_org/tools/telemetry/build/
update_docs.py 19 for dirname, _, filenames in os.walk(docs_dir):
91 for dirname, _, filenames in os.walk(docs_dir):
  /external/skia/gm/rebaseline_server/
results.py 200 # it was better to prune out the ignored builders within the os.walk().
204 for dirpath, dirnames, filenames in os.walk(root):
231 for abs_dirpath, dirnames, filenames in os.walk(root):

Completed in 1015 milliseconds

1 2 34 5 6 7 8 91011