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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/cmd/cgo/
ast.go 148 f.walk(ast2, ctxProg, (*File).saveExprs)
153 // The first walk fills in ExpFunc, and the
154 // second walk changes the entries to
156 f.walk(ast1, ctxProg, (*File).saveExport)
157 f.walk(ast2, ctxProg, (*File).saveExport2)
331 // walk walks the AST x, calling visit(f, x, context) for each node.
332 func (f *File) walk(x interface{}, context astContext, visit func(*File, interface{}, astContext)) { func
336 f.walk(*n, context, visit)
340 error_(token.NoPos, "unexpected type %T in walk", x)
348 f.walk(&n.Type, ctxEmbedType, visit
    [all...]
  /prebuilts/go/linux-x86/src/cmd/cgo/
ast.go 148 f.walk(ast2, ctxProg, (*File).saveExprs)
153 // The first walk fills in ExpFunc, and the
154 // second walk changes the entries to
156 f.walk(ast1, ctxProg, (*File).saveExport)
157 f.walk(ast2, ctxProg, (*File).saveExport2)
331 // walk walks the AST x, calling visit(f, x, context) for each node.
332 func (f *File) walk(x interface{}, context astContext, visit func(*File, interface{}, astContext)) { func
336 f.walk(*n, context, visit)
340 error_(token.NoPos, "unexpected type %T in walk", x)
348 f.walk(&n.Type, ctxEmbedType, visit
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
future.py 5 from compiler import ast, walk
60 walk(node, p1)
61 walk(node, p2)
66 from compiler import parseFile, walk
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
syntax.py 12 from compiler import ast, walk
16 walk(tree, v)
  /external/python/cpython2/Lib/compiler/
future.py 5 from compiler import ast, walk
60 walk(node, p1)
61 walk(node, p2)
66 from compiler import parseFile, walk
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
  /prebuilts/gdb/darwin-x86/lib/python2.7/compiler/
future.py 5 from compiler import ast, walk
60 walk(node, p1)
61 walk(node, p2)
66 from compiler import parseFile, walk
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
  /prebuilts/gdb/linux-x86/lib/python2.7/compiler/
future.py 5 from compiler import ast, walk
60 walk(node, p1)
61 walk(node, p2)
66 from compiler import parseFile, walk
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
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
future.py 5 from compiler import ast, walk
60 walk(node, p1)
61 walk(node, p2)
66 from compiler import parseFile, walk
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
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
future.py 5 from compiler import ast, walk
60 walk(node, p1)
61 walk(node, p2)
66 from compiler import parseFile, walk
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
  /external/libmojo/mojo/public/tools/bindings/pylib/mojom_tests/support/
find_files.py 6 from os import walk
15 for dirpath, _, filenames in walk(top, **kwargs):
  /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
  /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/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/Tools/compiler/
dumppyc.py 21 def walk(co, match=None): function
28 walk(obj, match)
32 walk(co, codename)
44 walk(co)
  /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

Completed in 5316 milliseconds

1 2 3 4 5 6 7 8 91011>>