HomeSort by relevance Sort by last modified time
    Searched defs:walk (Results 26 - 50 of 56) sorted by null

12 3

  /external/skia/src/pathops/
SkOpEdgeBuilder.cpp 34 if (fUnparseable || !walk()) {
142 bool SkOpEdgeBuilder::walk() { function in class:SkOpEdgeBuilder
  /packages/apps/UnifiedEmail/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/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
streams.rb 47 ANTLR recognizers need a way to walk through input data in a serialized IO-style
72 parsers with the means to sequential walk through series of tokens.
1022 def walk method in class:ANTLR3.that.CommonTokenStream
    [all...]
tree.rb 281 def walk method in class:ANTLR3.AST
282 block_given? or return( enum_for( :walk ) )
417 def walk method in class:ANTLR3.BaseTree
418 block_given? or return( enum_for( :walk ) )
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
macpath.py 12 "walk","expanduser","expandvars","normpath","abspath",
159 def walk(top, func, arg): function
160 """Directory tree walk with callback function.
167 and walk will only recurse into the subdirectories whose names remain in
173 warnings.warnpy3k("In 3.x, os.path.walk is removed in favor of os.walk.",
183 walk(name, func, arg)
ntpath.py 19 "ismount","walk","expanduser","expandvars","normpath","abspath",
231 # Directory tree walk.
239 def walk(top, func, arg): function
240 """Directory tree walk with callback function.
247 and walk will only recurse into the subdirectories whose names remain in
253 warnings.warnpy3k("In 3.x, os.path.walk is removed in favor of os.walk.",
263 walk(name, func, arg)
posixpath.py 31 "ismount","walk","expanduser","expandvars","normpath","abspath",
210 # Directory tree walk.
218 def walk(top, func, arg): function
219 """Directory tree walk with callback function.
226 and walk will only recurse into the subdirectories whose names remain in
232 warnings.warnpy3k("In 3.x, os.path.walk is removed in favor of os.walk.",
246 walk(name, func, arg)
os.py 209 def walk(top, topdown=True, onerror=None, followlinks=False): function
231 (e.g., via del or slice assignment), and walk will only recurse into the
241 report the error to continue with the walk, or raise the exception
242 to abort the walk. Note that the filename is available as the
245 By default, os.walk does not follow symbolic links to subdirectories on
250 current working directory between resumptions of walk. walk never
258 for root, dirs, files in os.walk('python/Lib/email'):
269 # get a list of the files the directory contains. os.path.walk
294 for x in walk(new_path, topdown, onerror, followlinks)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
macpath.py 12 "walk","expanduser","expandvars","normpath","abspath",
159 def walk(top, func, arg): function
160 """Directory tree walk with callback function.
167 and walk will only recurse into the subdirectories whose names remain in
173 warnings.warnpy3k("In 3.x, os.path.walk is removed in favor of os.walk.",
183 walk(name, func, arg)
ntpath.py 19 "ismount","walk","expanduser","expandvars","normpath","abspath",
231 # Directory tree walk.
239 def walk(top, func, arg): function
240 """Directory tree walk with callback function.
247 and walk will only recurse into the subdirectories whose names remain in
253 warnings.warnpy3k("In 3.x, os.path.walk is removed in favor of os.walk.",
263 walk(name, func, arg)
posixpath.py 31 "ismount","walk","expanduser","expandvars","normpath","abspath",
210 # Directory tree walk.
218 def walk(top, func, arg): function
219 """Directory tree walk with callback function.
226 and walk will only recurse into the subdirectories whose names remain in
232 warnings.warnpy3k("In 3.x, os.path.walk is removed in favor of os.walk.",
246 walk(name, func, arg)
os.py 209 def walk(top, topdown=True, onerror=None, followlinks=False): function
231 (e.g., via del or slice assignment), and walk will only recurse into the
241 report the error to continue with the walk, or raise the exception
242 to abort the walk. Note that the filename is available as the
245 By default, os.walk does not follow symbolic links to subdirectories on
250 current working directory between resumptions of walk. walk never
258 for root, dirs, files in os.walk('python/Lib/email'):
269 # get a list of the files the directory contains. os.path.walk
294 for x in walk(new_path, topdown, onerror, followlinks)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
filesystem.py 103 for (dirpath, dirnames, filenames) in os.walk(path):
134 def walk(self, top): member in class:FileSystem
135 return os.walk(top)
filesystem_mock.py 204 root, dirs, files = list(self.walk(path))[0]
207 def walk(self, top): member in class:MockFileSystem
  /external/chromium_org/win8/metro_driver/
file_picker.cc 298 const wchar_t* walk = open_file_name_->lpstrFilter; local
299 while (*walk != L'\0') {
300 // Walk past the description.
301 walk += wcslen(walk) + 1;
304 if (*walk == L'\0')
309 size_t extension_count = Tokenize(walk, L";", &extensions_win32_style);
334 // Walk past the extension.
335 walk += wcslen(walk) + 1
463 const wchar_t* walk = open_file_name_->lpstrFilter; local
    [all...]
file_picker_ash.cc 236 const wchar_t* walk = filter_.c_str(); local
237 while (*walk != L'\0') {
238 // Walk past the description.
239 walk += wcslen(walk) + 1;
242 if (*walk == L'\0')
247 size_t extension_count = Tokenize(walk, L";", &extensions_win32_style);
272 // Walk past the extension.
273 walk += wcslen(walk) + 1
412 const wchar_t* walk = filter_.c_str(); local
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
NPCAnimationComponent.java 26 public static final int WALK = 1;
76 case WALK:
77 walk(parentObject);
204 mCurrentAnimation = WALK;
216 protected void walk(GameObject parentObject) { method in class:NPCAnimationComponent
264 mCurrentAnimation = WALK;
328 mCurrentAnimation = WALK;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
message.py 796 return [part.get_content_charset(failobj) for part in self.walk()]
798 # I.e. def walk(self): ...
799 from email.iterators import walk
797 from email.iterators import walk namespace
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
message.py 796 return [part.get_content_charset(failobj) for part in self.walk()]
798 # I.e. def walk(self): ...
799 from email.iterators import walk
797 from email.iterators import walk namespace
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
symbols.py 129 walk back down the child chain and set the name to be global
416 from compiler import parseFile, walk namespace
432 walk(tree, s)
pycodegen.py 8 from compiler import ast, parse, walk, syntax namespace
258 walk(tree, s)
353 lnf = walk(node.node, self.NameFinder(), verbose=0)
385 walk(node.code, gen)
397 walk(node.code, gen)
675 walk(node.code, gen)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_parser.py 267 def walk(tree): function in function:RoundtripLegalSyntaxTestCase.test_position
272 for x in walk(elt):
277 terminals = list(walk(st2))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
symbols.py 129 walk back down the child chain and set the name to be global
416 from compiler import parseFile, walk namespace
432 walk(tree, s)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_parser.py 267 def walk(tree): function in function:RoundtripLegalSyntaxTestCase.test_position
272 for x in walk(elt):
277 terminals = list(walk(st2))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
bundlebuilder.py 607 def walk(top): function in function:AppBuilder.stripBinaries
613 walk(path)
628 walk(self.bundlepath)
    [all...]

Completed in 1444 milliseconds

12 3