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

123456

/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/chromium-trace/catapult/devil/devil/utils/
H A Dhost_utils.py12 for root, dirs, files in os.walk(path):
H A Dzip_utils.py21 for dir_path, _, file_names in os.walk(path):
/external/libmojo/third_party/catapult/devil/devil/utils/
H A Dhost_utils.py12 for root, dirs, files in os.walk(path):
H A Dzip_utils.py19 for dir_path, _, file_names in os.walk(path):
/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/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...]
H A DSkOpEdgeBuilder.h59 bool walk();
/external/iproute2/tc/
H A Dq_atm.c110 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/icu/icu4c/as_is/
H A Dbomlist.py16 tree = os.walk(".")
/external/chromium-trace/catapult/telemetry/telemetry/internal/util/
H A Dpath_set.py33 for root, _, files in os.walk(path):
42 for root, _, files in os.walk(path):
H A Dpath.py67 for root, dirs, files in os.walk(base_directory):
/external/parameter-framework/upstream/tools/xmlValidator/
H A DxmlValidator.py33 from os import walk namespace
103 for rootPath, _, files in walk(xmlDirectory):
/external/chromium-trace/
H A Dsystrace.py22 for dirname, _, filenames in os.walk(base_dir):
/external/eigen/scripts/
H A Drelicense.py52 for root, sub_folders, files in os.walk(rootdir):
/external/skia/gn/
H A Dfind_headers.py31 for d, _, files in os.walk(directory):
/external/autotest/utils/
H A Dcoverage_suite.py75 # now walk through directory grabbing list of files
82 os.path.walk(start, run_unittests, coverage)
85 for dirpath, dirnames, files in os.walk(start):
/external/ppp/pppd/plugins/pppoatm/
H A Dtext2atm.c77 const char *walk; local
83 for (walk = text; *walk; walk++)
84 if (isdigit(*walk)) {
91 if (*walk != ':') {
/external/autotest/client/site_tests/security_DbusOwners/
H A Dsecurity_DbusOwners.py34 for root, dirs, files in os.walk(self._DBUS_CONFIG_DIR):
/external/autotest/server/cros/chaos_lib/
H A Dchaos_analyzer.py27 @param files: Files present in the folder found during os.walk.
44 for root, dir_name, file_names in os.walk(dir_name):
52 for root, dir_name, file_names in os.walk(root):
57 for root, dir_name, file_names in os.walk(root):
208 for root, dir, files in os.walk(dir_name):
/external/deqp/scripts/
H A Dupdate-copyright-year.py41 for root, dirs, files in os.walk(dir):
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
H A DLigatureTree.java145 public void walk(TreeWalker walker) method in class:LigatureTree.Lignode
154 subnodes[i].walk(walker);
236 public void walk(TreeWalker walker) method in class:LigatureTree
238 root.walk(walker);
/external/jsoncpp/devtools/
H A Dtarball.py37 os.path.walk(source_path, visit, tar)
/external/libyuv/files/
H A DPRESUBMIT.py17 root for root, _, files in os.walk(join('tools_libyuv'))
/external/skia/tools/copyright/
H A Dmain.py70 for dirpath, dirnames, filenames in os.walk(root_directory):

Completed in 740 milliseconds

123456