Searched refs:walk (Results 1 - 25 of 271) sorted by relevance

1234567891011

/external/python/cpython2/Lib/compiler/
H A D__init__.py13 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
H A Dfuture.py5 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)
H A Dsyntax.py12 from compiler import ast, walk namespace
16 walk(tree, v)
/external/python/cpython2/Lib/email/
H A Diterators.py10 'walk',
21 def walk(self):
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/
H A Diterators.py10 'walk',
21 def walk(self):
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
/external/libmojo/mojo/public/tools/bindings/pylib/mojom_tests/support/
H A Dfind_files.py6 from os import walk namespace
15 for dirpath, _, filenames in walk(top, **kwargs):
/external/libmojo/third_party/catapult/devil/devil/utils/
H A Dhost_utils.py12 for root, dirs, files in os.walk(path):
/external/python/cpython2/Tools/compiler/
H A Ddumppyc.py21 def walk(co, match=None): function
28 walk(obj, match)
32 walk(co, codename)
44 walk(co)
H A Ddemo.py33 compiler.walk(ast, mf)
/external/libcups/cups/
H A Dtestsnmp.c29 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)
200 show_oid(int fd, const char *community, http_addr_t *addr, const char *s, int walk) argument
/external/chromium-trace/catapult/devil/devil/utils/
H A Dhost_utils.py20 for root, dirs, files in os.walk(path):
/external/python/cpython2/Mac/scripts/
H A Dzappycfiles.py18 os.path.walk(dir, walker, None)
/external/python/cpython2/PC/VC6/
H A Drmpyc.py9 for root, dirs, files in os.walk(root):
/external/python/cpython2/PC/VS7.1/
H A Drmpyc.py9 for root, dirs, files in os.walk(root):
/external/python/cpython2/PC/VS8.0/
H A Drmpyc.py9 for root, dirs, files in os.walk(root):
/external/python/cpython2/PC/VS9.0/
H A Drmpyc.py9 for root, dirs, files in os.walk(root):
/external/python/cpython2/PCbuild/
H A Drmpyc.py9 for root, dirs, files in os.walk(root):
/external/python/cpython3/PCbuild/
H A Drmpyc.py9 for root, dirs, files in os.walk(root):
/external/skia/src/pathops/
H A DSkOpSpan.cpp165 const SkOpPtT* walk = start; local
166 double min = walk->fT;
169 while ((walk = walk->next()) != start) {
170 if (walk->segment() != segment) {
173 min = SkTMin(min, walk->fT);
174 max = SkTMax(max, walk->fT);
186 const SkOpPtT* walk = start; local
187 while ((walk = walk
197 const SkOpPtT* walk = start; local
[all...]
/external/skqp/src/pathops/
H A DSkOpSpan.cpp165 const SkOpPtT* walk = start; local
166 double min = walk->fT;
169 while ((walk = walk->next()) != start) {
170 if (walk->segment() != segment) {
173 min = SkTMin(min, walk->fT);
174 max = SkTMax(max, walk->fT);
186 const SkOpPtT* walk = start; local
187 while ((walk = walk
197 const SkOpPtT* walk = start; local
[all...]
/external/iproute2/tc/
H A Dq_atm.c102 char *walk; local
106 for (walk = *argv; *walk; walk++) {
113 if (*walk == '.') continue;
114 if (!isxdigit(walk[0]) || !walk[1] ||
115 !isxdigit(walk[1])) {
119 sscanf(walk, "%2x", &tmp);
121 walk
[all...]
/external/icu/icu4c/as_is/
H A Dbomlist.py16 tree = os.walk(".")
/external/parameter-framework/upstream/tools/xmlValidator/
H A DxmlValidator.py33 from os import walk namespace
103 for rootPath, _, files in walk(xmlDirectory):
/external/autotest/server/site_tests/provision_CheetsUpdate/
H A Dshift_uid.py22 for root, dirs, files in os.walk(args.target):
/external/chromium-trace/
H A Dsystrace.py22 for dirname, _, filenames in os.walk(base_dir):

Completed in 615 milliseconds

1234567891011