HomeSort by relevance Sort by last modified time
    Searched full:walk (Results 201 - 225 of 1498) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/
fts.h 50 #define FTS_LOGICAL 0x0002 /* logical walk */
53 #define FTS_PHYSICAL 0x0010 /* physical walk */
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
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)
os2emxpath.py 12 splitext, split, walk)
17 "ismount","walk","expanduser","expandvars","normpath","abspath",
ast.py 155 for child in walk(node):
203 def walk(node): function
259 The `NodeTransformer` will walk the AST and use the return value of the
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
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)
os2emxpath.py 12 splitext, split, walk)
17 "ismount","walk","expanduser","expandvars","normpath","abspath",
ast.py 155 for child in walk(node):
203 def walk(node): function
259 The `NodeTransformer` will walk the AST and use the return value of the
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
NFAContext.java 32 * so we can walk back up the tree (i.e., pop stuff off the stack). We
33 * never walk from stack down down through the children.
131 * same call stack; walk upwards to the root.
156 return false; // both pointers must be at their roots after walk
221 /** Walk upwards to the root of the call stack context looking
  /external/chromium_org/third_party/skia/src/gpu/
GrReducedClip.cpp 149 // walk backwards until we get to:
157 // During our backwards walk, track whether we've seen ops that either grow or shrink the clip.
298 // Replace will always terminate our walk. We will either begin the forward walk
418 skippable = false; // we would have skipped it in the backwards walk if we
  /external/clang/lib/Frontend/
DiagnosticRenderer.cpp 46 // Walk past macro argument expanions.
169 // If this location is within a macro, walk from UnexpandedLoc up to Loc
227 /// \brief Helper to recursivly walk up the include stack and print each layer
270 /// \brief Helper to recursivly walk up the import stack and print each layer
412 // Walk up to the caller of this macro, and produce a backtrace down to there.
  /external/skia/src/gpu/
GrReducedClip.cpp 149 // walk backwards until we get to:
157 // During our backwards walk, track whether we've seen ops that either grow or shrink the clip.
298 // Replace will always terminate our walk. We will either begin the forward walk
418 skippable = false; // we would have skipped it in the backwards walk if we
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_os.py 384 """Tests for os.walk()."""
427 # Walk top-down.
428 all = list(os.walk(walk_path))
442 for root, dirs, files in os.walk(walk_path):
452 # Walk bottom-up.
453 all = list(os.walk(walk_path, topdown=False))
466 # Walk, following symlinks.
467 for root, dirs, files in os.walk(walk_path, followlinks=True):
480 for root, dirs, files in os.walk(test_support.TESTFN, topdown=False):
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_os.py 384 """Tests for os.walk()."""
427 # Walk top-down.
428 all = list(os.walk(walk_path))
442 for root, dirs, files in os.walk(walk_path):
452 # Walk bottom-up.
453 all = list(os.walk(walk_path, topdown=False))
466 # Walk, following symlinks.
467 for root, dirs, files in os.walk(walk_path, followlinks=True):
480 for root, dirs, files in os.walk(test_support.TESTFN, topdown=False):
    [all...]
  /cts/tools/dasm/src/java_cup/
symbol_set.java 76 /* walk down our set and make sure every element is in the other */
138 /* walk down the other set and do the adds individually */
154 /* walk down the other set and do the removes individually */
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
BaseTree.as 149 // walk rest and decrement their child indexes
265 /** Walk upwards looking for ancestor with this token type. */
268 /** Walk upwards and get first ancestor with this token type. */
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3commontreenodestream.h 102 /// walk recursively from start until stop. You can always return
111 /// walk recursively from start until stop. You can always return
210 /// As we walk down the nodes, we must track parent nodes so we know
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
CommonTreeNodeStream.js 80 /** Walk tree with depth-first-search and fill nodes buffer.
364 // walk nodes looking for start
373 // now walk until we see stop, filling string buffer with text
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
AssignTokenTypesBehavior.java 249 // walk string literals assigning types to unassigned ones
270 // walk aliases if any and assign types to aliased literals if literal
289 // walk token names, assigning values if unassigned
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleResolver.h 111 // FIXME: StyleResolver should not be keeping tree-walk state.
112 // These should move to some global tree-walk state, or should be contained in a
114 // Using these during tree walk will allow style selector to optimize child and descendant selector lookups.
  /external/chromium_org/third_party/WebKit/Source/core/editing/
TextIterator.h 148 // as we walk through the DOM tree.
256 // as we walk through the DOM tree.
302 // Builds on the text iterator, adding a character position so we can walk one
  /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)
  /external/chromium_org/third_party/libxslt/libxslt/
documents.c 308 * Walk the context list to find the document if preparsed
384 * Walk the context list to find the document if preparsed
422 * Walk the context list to find the document
  /external/jmonkeyengine/engine/src/test/jme3test/helloworld/
HelloTerrainCollision.java 60 * that you can walk around in with a first-person perspective.
189 * We do not walk yet, we just keep track of the direction the user pressed. */
208 * The setWalkDirection() command is what lets a physics-controlled player walk.
  /external/libxslt/libxslt/
documents.c 308 * Walk the context list to find the document if preparsed
384 * Walk the context list to find the document if preparsed
422 * Walk the context list to find the document
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
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...]

Completed in 931 milliseconds

1 2 3 4 5 6 7 891011>>