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

1 2 3

  /external/chromium_org/v8/test/mjsunit/compiler/
regress-closures-with-eval.js 32 function walk(v) {
41 return walk(o);
  /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/compiler/
__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)
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)
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/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/compiler/
__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)
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)
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/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/v8/test/webkit/resources/
json2-es5-compat.js 410 function walk(holder, key) {
412 // The walk method is used to recursively walk the resulting structure so
419 v = walk(value, k);
469 // In the optional fourth stage, we recursively walk the new structure, passing
473 walk({'': j}, '') : j;
  /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_org/third_party/WebKit/PerformanceTests/SunSpider/hosted/
json2.js 410 function walk(holder, key) {
412 // The walk method is used to recursively walk the resulting structure so
419 v = walk(value, k);
469 // In the optional fourth stage, we recursively walk the new structure, passing
473 walk({'': j}, '') : j;
  /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/chrome/browser/resources/chromeos/chromevox/common/
chromevox_json.js 295 function walk(holder, key) {
297 // The walk method is used to recursively walk the resulting structure
304 v = walk(value, k);
358 // In the optional fourth stage, we recursively walk the new
361 return typeof reviver === 'function' ? walk({'': j}, '') : j;
  /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 != ':') {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ast.py 155 for child in walk(node):
203 def walk(node): function
259 The `NodeTransformer` will walk the AST and use the return value of the
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ast.py 155 for child in walk(node):
203 def walk(node): function
259 The `NodeTransformer` will walk the AST and use the return value of the
  /external/chromium_org/chrome/common/extensions/docs/server2/
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/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
string-tagcloud.js 180 function walk(k, v) {
185 n = walk(i, v[i]);
201 return typeof filter === 'function' ? walk('', j) : j;
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
string-tagcloud.js 180 function walk(k, v) {
185 n = walk(i, v[i]);
201 return typeof filter === 'function' ? walk('', j) : j;
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
string-tagcloud.js 180 function walk(k, v) {
185 n = walk(i, v[i]);
201 return typeof filter === 'function' ? walk('', j) : j;
    [all...]
  /external/chromium_org/third_party/skia/src/pathops/
SkOpEdgeBuilder.cpp 30 if (fUnparseable || !walk()) {
138 bool SkOpEdgeBuilder::walk() { function in class:SkOpEdgeBuilder

Completed in 452 milliseconds

1 2 3