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

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/v8/test/mjsunit/compiler/
regress-closures-with-eval.js 32 function walk(v) {
41 return walk(o);
  /external/v8/test/mjsunit/compiler/
regress-closures-with-eval.js 32 function walk(v) {
41 return walk(o);
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
DirectoryWalker.java 61 * walk(startDirectory, results);
161 * <li>The <code>walk()</code> method traps thrown {@link CancelException}
193 * will cause the walk to stop immediately. The <code>handleCancelled()</code>
258 * The limit on the directory depth to walk.
273 * part of the walk. The {@link FileFilterUtils} class is useful for combining
291 * of the walk. This constructor uses {@link FileFilterUtils#makeDirectoryOnly(IOFileFilter)}
320 * Writers of subclasses should call this method to start the directory walk.
329 protected final void walk(File startDirectory, Collection results) throws IOException { method in class:DirectoryWalker
335 walk(startDirectory, 0, results); method
350 private void walk(File directory, int depth, Collection results) throws IOException { method in class:DirectoryWalker
364 walk(childFile, childDepth, results); method
    [all...]
  /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):
  /build/tools/
fileslist.py 29 for dir, dirs, files in os.walk(root):
  /external/chromium/base/
sys_string_conversions_linux.cc 43 // Calculate the number of multi-byte characters. We walk through the string
75 // We walk the input string again, with |i| tracking the index of the
103 // Calculate the number of wide characters. We walk through the string
133 // We walk the input string again, with |i| tracking the index of the
  /external/chromium-trace/trace-viewer/build/
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/base/strings/
sys_string_conversions_posix.cc 45 // Calculate the number of multi-byte characters. We walk through the string
77 // We walk the input string again, with |i| tracking the index of the
105 // Calculate the number of wide characters. We walk through the string
135 // We walk the input string again, with |i| tracking the index of the
  /external/chromium_org/chrome/common/extensions/docs/server2/
api_categorizer.py 26 for root, _, files in self._file_system.Walk(base_dir):
  /external/chromium_org/third_party/re2/re2/
mimics_pcre.cc 44 // Should never be called: we use Walk not WalkExponential.
103 return w.Walk(this, true);
121 // Should never be called: we use Walk not WalkExponential.
182 return w.Walk(re, true);
  /external/chromium_org/third_party/skia/src/pathops/
SkOpEdgeBuilder.h 49 bool walk();
  /external/chromium_org/tools/gyp/test/standalone/
gyptest-standalone.py 21 for root, dirs, files in os.walk("."):
  /external/regex-re2/re2/
mimics_pcre.cc 44 // Should never be called: we use Walk not WalkExponential.
103 return w.Walk(this, true);
121 // Should never be called: we use Walk not WalkExponential.
182 return w.Walk(re, true);
  /external/skia/src/pathops/
SkOpEdgeBuilder.h 49 bool walk();
  /external/wpa_supplicant_8/src/utils/
radiotap_iter.h 25 * struct ieee80211_radiotap_iterator - tracks walk thru present radiotap args
  /packages/wallpapers/Basic/res/xml/
walkaround.xml 21 <!-- about the walk around wallpaper. -->
  /external/chromium_org/tools/
include_tracer.py 140 def Walk(seen, filename, parent, indent):
183 total_bytes += Walk(
187 total_bytes += Walk(
190 total_bytes += Walk(
196 bytes = Walk(set(), sys.argv[1], '', 0)
  /art/runtime/arch/arm/
context_arm.cc 51 // Lowest number spill is farthest away, walk registers and fill into context
61 // Lowest number spill is farthest away, walk registers and fill into context
  /art/runtime/arch/mips/
context_mips.cc 50 // Lowest number spill is farthest away, walk registers and fill into context.
60 // Lowest number spill is farthest away, walk registers and fill into context.
  /development/testrunner/test_defs/
gtest.py 84 os.path.walk(sub_tests_path, self._CollectTestSources, test_file_list)
105 This method is a callback for os.path.walk.
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeVisitor.java 31 /** Do a depth first walk of a tree, applying pre() and post() actions
56 t = action.pre(t); // if rewritten, walk children of new t
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
TreeWalker2Result.java 30 * Handle a walk of a tree, but screen out attributes for
43 /** Node where to start the tree walk */
  /external/chromium/base/debug/
leak_tracker.h 76 // Walk the allocation list and print each entry it contains.
111 // Walk the allocation list and count how many entries it has.

Completed in 560 milliseconds

1 23 4 5 6 7 8 91011>>