/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)
|
/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/content/test/gpu/page_sets/ |
__init__.py | 9 for dirpath, _, filenames in os.walk(start_dir):
|
/external/chromium_org/tools/gyp/test/standalone/ |
gyptest-standalone.py | 21 for root, dirs, files in os.walk("."):
|
/external/chromium_org/tools/perf/page_sets/ |
__init__.py | 9 for dirpath, _, filenames in os.walk(start_dir):
|
/external/chromium/chrome/browser/resources/shared/js/ |
parse_html_subset.js | 36 function walk(n, f) { 39 walk(n.childNodes[i], f); 59 walk(df, function(node) {
|
/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/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/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); 334 // Walk past the extension. 335 walk += wcslen(walk) + 1 463 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); 272 // Walk past the extension. 273 walk += wcslen(walk) + 1 412 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/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/skia/src/pathops/ |
SkOpEdgeBuilder.h | 49 bool 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...] |
/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'):
|