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

1 2 3 4 5 6 7 8 91011

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
future.py 5 from compiler import ast, walk namespace
60 walk(node, p1)
61 walk(node, p2)
66 from compiler import parseFile, walk namespace
72 walk(tree, v)
__init__.py 13 walk(ast, visitor, verbose=None)
14 Does a pre-order walk over the ast using the visitor instance.
30 from compiler.visitor import walk namespace
syntax.py 12 from compiler import ast, walk namespace
16 walk(tree, v)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
future.py 5 from compiler import ast, walk namespace
60 walk(node, p1)
61 walk(node, p2)
66 from compiler import parseFile, walk namespace
72 walk(tree, v)
__init__.py 13 walk(ast, visitor, verbose=None)
14 Does a pre-order walk over the ast using the visitor instance.
30 from compiler.visitor import walk namespace
syntax.py 12 from compiler import ast, walk namespace
16 walk(tree, v)
  /external/chromium_org/mojo/public/tools/bindings/pylib/mojom_tests/support/
find_files.py 6 from os import walk namespace
15 for dirpath, _, filenames in walk(top, **kwargs):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
iterators.py 10 'walk',
21 def walk(self):
22 """Walk over the message tree, yielding each subpart.
24 The walk is performed in depth-first order. This method is a
30 for subsubpart in subpart.walk():
42 for subpart in msg.walk():
56 for subpart in msg.walk():
20 def walk(self): function
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
iterators.py 10 'walk',
21 def walk(self):
22 """Walk over the message tree, yielding each subpart.
24 The walk is performed in depth-first order. This method is a
30 for subsubpart in subpart.walk():
42 for subpart in msg.walk():
56 for subpart in msg.walk():
20 def walk(self): function
  /external/chromium_org/build/android/pylib/utils/
host_utils.py 12 for root, dirs, files in os.walk(path):
  /external/chromium_org/tools/gyp/test/standalone/
gyptest-standalone.py 21 for root, dirs, files in os.walk("."):
  /external/iproute2/tc/
q_atm.c 110 char *walk; local
114 for (walk = *argv; *walk; walk++) {
121 if (*walk == '.') continue;
122 if (!isxdigit(walk[0]) || !walk[1] ||
123 !isxdigit(walk[1])) {
127 sscanf(walk,"%2x",&tmp);
129 walk++
    [all...]
  /external/elfutils/0.153/libdw/
libdw_visit_scopes.c 56 enum die_class { ignore, match, match_inline, walk, imported }; enumerator in enum:die_class
85 return walk;
134 case walk:
  /external/chromium_org/tools/gyp/test/mac/
gyptest-framework.py 20 for dirpath, _, files in os.walk(path):
  /external/chromium_org/tools/telemetry/telemetry/util/
path_set.py 33 for root, _, files in os.walk(path):
42 for root, _, files in os.walk(path):
  /external/chromium_org/win8/metro_driver/
file_picker.cc 298 const wchar_t* walk = open_file_name_->lpstrFilter; local
299 while (*walk != L'\0') {
300 // Walk past the description.
301 walk += wcslen(walk) + 1;
304 if (*walk == L'\0')
309 size_t extension_count = Tokenize(walk, L";", &extensions_win32_style);
335 // Walk past the extension.
336 walk += wcslen(walk) + 1
464 const wchar_t* walk = open_file_name_->lpstrFilter; local
    [all...]
file_picker_ash.cc 236 const wchar_t* walk = filter_.c_str(); local
237 while (*walk != L'\0') {
238 // Walk past the description.
239 walk += wcslen(walk) + 1;
242 if (*walk == L'\0')
247 size_t extension_count = Tokenize(walk, L";", &extensions_win32_style);
273 // Walk past the extension.
274 walk += wcslen(walk) + 1
413 const wchar_t* walk = filter_.c_str(); local
    [all...]
  /build/tools/
fileslist.py 29 for dir, dirs, files in os.walk(root):
  /external/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/bin/build/
treescan.py 60 for dirpath, dirnames, filenames in os.walk(root, onerror=OnError):
61 # os.walk allows us to modify dirnames to prevent decent into particular
  /external/chromium_org/third_party/skia/src/pathops/
SkOpEdgeBuilder.h 49 bool walk();
  /external/eigen/scripts/
relicense.py 52 for root, sub_folders, files in os.walk(rootdir):
  /external/libcxx/test/
makemake.py 19 for root, _dirs, files in os.walk('.'):
  /external/skia/src/pathops/
SkOpEdgeBuilder.h 49 bool walk();
  /frameworks/base/packages/DocumentsUI/
wrap_alpha.py 7 for root, dirs, files in os.walk('.'):
18 for root, dirs, files in os.walk('.'):
  /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...]

Completed in 691 milliseconds

1 2 3 4 5 6 7 8 91011