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

12 3 4 5 6 7 8 91011

  /external/ppp/pppd/plugins/pppoatm/
text2atm.c 77 const char *walk; local
83 for (walk = text; *walk; walk++)
84 if (isdigit(*walk)) {
91 if (*walk != ':') {
  /external/chromium_org/chrome/renderer/resources/extensions/
omnibox_custom_bindings.js 50 // Recursively walk the tree.
51 function walk(node) {
69 walk(child);
76 walk(child);
79 walk(root);
  /external/chromium-trace/trace-viewer/build/
check_grit.py 31 for (dirpath, dirnames, filenames) in os.walk('src/images'):
check_gyp.py 25 for (dirpath, dirnames, filenames) in os.walk('src'):
generate_deps_js_contents.py 14 for dirpath, dirnames, filenames in os.walk(srcdir):
generate_template_contents.py 14 for dirpath, dirnames, filenames in os.walk(srcdir):
  /external/chromium_org/build/linux/unbundle/
remove_bundled_libraries.py 37 for root, dirs, files in os.walk(source_tree_root, topdown=False):
  /external/chromium_org/components/tools/metrics/
count_ifdefs.py 45 for root, dirs, files in os.walk(directory):
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
export-w3c-performance-wg-tests 65 for root, dirs, files in os.walk(os.path.join(source_directory, directory_to_copy)):
import-w3c-performance-wg-tests 73 for root, dirs, files in os.walk(directory_to_copy):
  /external/chromium_org/third_party/angle/
enumerate_files.py 39 # Walk the directories listed and compare with type and exclude lists
41 for root, dirnames, filenames in os.walk(rootdir):
  /external/chromium_org/third_party/skia/experimental/Intersection/
SkAntiEdge.h 63 void walk(uint8_t* result, int rowBytes, int height);
  /external/chromium_org/third_party/webrtc/build/
merge_libs.py 36 for root, _, filenames in os.walk(path):
  /external/chromium_org/third_party/yasm/source/patched-yasm/Mkfiles/vc9/
vc98_swap.py 45 for root, dirs, files in os.walk("./") :
  /external/chromium_org/tools/security/
check_message_owners.py 22 for root, dirs, files in os.walk(root_dir):
  /external/chromium_org/tools/telemetry/telemetry/util/
global_hooks.py 25 for dirname, _, filenames in os.walk(base_dir):
  /external/chromium_org/v8/test/intl/
testcfg.py 41 for dirname, dirs, files in os.walk(self.root):
  /external/deqp/framework/delibs/scripts/
update-copyright-year.py 21 for root, dirs, files in os.walk(dir):
  /external/lldb/test/
dosep.ty 17 for root, dirs, files in os.walk(test_root, topdown=False):
  /external/lldb/test/pexpect-2.4/examples/
fix_cvs_files.py 71 """This contains the logic for processing files. This is the os.path.walk
91 os.path.walk (root, walk_and_clean_cvs_binaries, None)
  /external/skia/experimental/Intersection/
SkAntiEdge.h 63 void walk(uint8_t* result, int rowBytes, int height);
  /development/testrunner/test_defs/
native_test.py 56 os.path.walk(build_path, self._CollectTestSources, source_list)
110 This method is a callback for os.path.walk.
157 for root, dirs, files in os.walk(path):
  /external/chromium_org/third_party/skia/src/pathops/
SkOpEdgeBuilder.cpp 30 if (fUnparseable || !walk()) {
138 bool SkOpEdgeBuilder::walk() { function in class:SkOpEdgeBuilder
  /external/skia/src/pathops/
SkOpEdgeBuilder.cpp 30 if (fUnparseable || !walk()) {
138 bool SkOpEdgeBuilder::walk() { function in class:SkOpEdgeBuilder
  /prebuilts/python/darwin-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)

Completed in 529 milliseconds

12 3 4 5 6 7 8 91011