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

1 2

  /external/quake/quake/src/QW/client/
gl_refrag.c 53 efrag_t *ef, *old, *walk, **prev; local
62 walk = *prev;
63 if (!walk)
65 if (walk == ef)
71 prev = &walk->leafnext;
r_efrag.c 54 efrag_t *ef, *old, *walk, **prev; local
63 walk = *prev;
64 if (!walk)
66 if (walk == ef)
72 prev = &walk->leafnext;
  /external/quake/quake/src/WinQuake/
gl_refrag.cpp 53 efrag_t *ef, *old, *walk, **prev; local
62 walk = *prev;
63 if (!walk)
65 if (walk == ef)
71 prev = &walk->leafnext;
r_efrag.cpp 54 efrag_t *ef, *old, *walk, **prev; local
63 walk = *prev;
64 if (!walk)
66 if (walk == ef)
72 prev = &walk->leafnext;
  /external/iproute2/tc/
q_atm.c 112 char *walk; local
116 for (walk = *argv; *walk; walk++) {
123 if (*walk == '.') continue;
124 if (!isxdigit(walk[0]) || !walk[1] ||
125 !isxdigit(walk[1])) {
129 sscanf(walk,"%2x",&tmp);
131 walk++
    [all...]
  /build/tools/
fileslist.py 29 for dir, dirs, files in os.walk(root):
findleaves.py 31 for root, dirs, files in os.walk(rootdir):
  /packages/apps/Email/src/org/apache/commons/io/
DirectoryWalker.java 61 * walk(startDirectory, results);
161 * <li>The <code>walk()</code> method traps thrown {@link CancelException}
193 * will cause the walk to stop immediately. The <code>handleCancelled()</code>
258 * The limit on the directory depth to walk.
273 * part of the walk. The {@link FileFilterUtils} class is useful for combining
291 * of the walk. This constructor uses {@link FileFilterUtils#makeDirectoryOnly(IOFileFilter)}
320 * Writers of subclasses should call this method to start the directory walk.
329 protected final void walk(File startDirectory, Collection results) throws IOException { method in class:DirectoryWalker
335 walk(startDirectory, 0, results); method
350 private void walk(File directory, int depth, Collection results) throws IOException { method in class:DirectoryWalker
364 walk(childFile, childDepth, results); method
    [all...]
  /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 != ':') {
  /external/clearsilver/util/
neo_err.c 358 NEOERR *walk = *err; local
360 while (walk != STATUS_OK && walk != INTERNAL_ERR)
363 if (walk->error == etype)
369 walk = walk->next;
372 if (walk == STATUS_OK && etype == STATUS_OK_INT)
374 if (walk == STATUS_OK)
377 if (walk == INTERNAL_ERR && etype == INTERNAL_ERR_INT)
382 if (walk == INTERNAL_ERR
    [all...]
  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/layout_package/
test_files.py 68 # Now walk all the paths passed in on the command line and get filenames
75 for root, dirs, files in os.walk(path):
76 # don't walk skipped directories and sub directories
  /bionic/libc/kernel/tools/
update_all.py 45 for root, dirs, files in os.walk( original_dir ):
utils.py 232 """recursively walk a list of paths and files, only keeping the source files in directories"""
237 for root, dirs, files in os.walk(path):
254 for root, dirs, files in os.walk(path, topdown=False):
307 for root, dirs, files in os.walk(path):
  /development/testrunner/test_defs/
native_test.py 56 os.path.walk(build_path, self._CollectTestSources, source_list)
110 This method is a callback for os.path.walk.
  /external/protobuf/python/
setup.py 90 for (dirpath, dirnames, filenames) in os.walk("."):
  /external/v8/test/es5conform/
testcfg.py 83 for root, dirs, files in os.walk(current_root):
  /external/webkit/WebKit/android/nav/
CacheBuilder.cpp 938 NodeWalk walk; local
    [all...]
  /external/webkit/WebKitTools/CodeCoverage/
run-generate-coverage-data 48 for root, dirs, files in os.walk(src):
150 for root, dirs, files in os.walk(base_path):
  /external/openssl/crypto/
sparccpuid.S 32 call .walk.reg.wins
140 .walk.reg.wins:
148 call .walk.reg.wins
  /external/icu4c/tools/genprops/misc/
ucdcopy.py 149 for root, dirs, files in os.walk(source_root):
  /external/icu4c/tools/genprops/
ucdcopy.py 149 for root, dirs, files in os.walk(source_root):
  /external/v8/test/mozilla/
testcfg.py 100 for root, dirs, files in os.walk(current_root):
  /external/webkit/WebKitTools/pywebsocket/mod_pywebsocket/
dispatch.py 87 for root, unused_dirs, files in os.walk(directory):
  /bionic/libc/tools/
bionic_utils.py 285 """recursively walk a list of paths and files, only keeping the source files in directories"""
290 for root, dirs, files in os.walk(path):
307 for root, dirs, files in os.walk(path, topdown=False):
  /external/webkit/WebCore/svg/
SVGFont.cpp 224 // Helper class to walk a text run. Lookup a SVGGlyphIdentifier for each character
241 void walk(const TextRun& run, bool isVerticalText, const String& language, int from, int to) function in struct:WebCore::SVGTextRunWalker
416 runWalker.walk(run, isVerticalText, language, 0, run.length());
513 runWalker.walk(run, isVerticalText, language, from, to);

Completed in 610 milliseconds

1 2