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

1 2 3 4 5 6 7 8

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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/python/cpython2/Lib/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/python/cpython3/Lib/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 yield from subpart.walk()
41 for subpart in msg.walk():
54 for subpart in msg.walk():
20 def walk(self): function
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/compiler/
dumppyc.py 21 def walk(co, match=None): function
28 walk(obj, match)
32 walk(co, codename)
44 walk(co)
  /external/python/cpython2/Tools/compiler/
dumppyc.py 21 def walk(co, match=None): function
28 walk(obj, match)
32 walk(co, codename)
44 walk(co)
  /prebuilts/go/darwin-x86/src/cmd/doc/
dirs.go 21 scan chan string // directories generated by walk.
31 go dirs.walk()
56 // walk walks the trees in GOROOT and GOPATH.
57 func (d *Dirs) walk() { func
  /prebuilts/go/darwin-x86/test/
escape_calls.go 30 func walk(np **Node) int { // ERROR "leaking param content: np" func
36 wl := walk(&n.left) // ERROR "walk &n.left does not escape"
37 wr := walk(&n.right) // ERROR "walk &n.right does not escape"
  /prebuilts/go/linux-x86/src/cmd/doc/
dirs.go 21 scan chan string // directories generated by walk.
31 go dirs.walk()
56 // walk walks the trees in GOROOT and GOPATH.
57 func (d *Dirs) walk() { func
  /prebuilts/go/linux-x86/test/
escape_calls.go 30 func walk(np **Node) int { // ERROR "leaking param content: np" func
36 wl := walk(&n.left) // ERROR "walk &n.left does not escape"
37 wr := walk(&n.right) // ERROR "walk &n.right does not escape"
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
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
  /external/libcups/cups/
testsnmp.c 29 http_addr_t *addr, const char *s, int walk);
44 int walk = 0; /* Walk OIDs? */ local
76 walk = 1;
98 else if (!show_oid(fd, community, &(host->addr), argv[i], walk))
109 walk ? ".1.3.6.1.2.1.43" :
110 ".1.3.6.1.2.1.43.10.2.1.4.1.1", walk))
204 int walk) /* I - Walk OIDs? */
218 if (walk)
    [all...]
  /external/python/cpython2/Lib/compiler/
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/gdb/darwin-x86/lib/python2.7/compiler/
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/gdb/linux-x86/lib/python2.7/compiler/
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/compiler/
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/compiler/
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
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
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
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
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-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py3/
shell.py 272 walk = _os.walk variable
277 for dirpath, dirnames, filenames in walk(native(base)):
303 for dirpath, dirnames, filenames in walk(native(base)):
  /external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/_setup/py3/
shell.py 272 walk = _os.walk variable
277 for dirpath, dirnames, filenames in walk(native(base)):
303 for dirpath, dirnames, filenames in walk(native(base)):
  /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 != ':') {

Completed in 3853 milliseconds

1 2 3 4 5 6 7 8