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

12 3 4 5 6 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_popen.py 32 'foo "spam and eggs" "silly walk"',
33 ["foo", "spam and eggs", "silly walk"]
  /external/chromium_org/chrome/renderer/resources/extensions/
omnibox_custom_bindings.js 50 // Recursively walk the tree.
51 function walk(node) {
69 walk(child);
76 walk(child);
79 walk(root);
  /art/runtime/gc/accounting/
heap_bitmap.cc 74 void HeapBitmap::Walk(ObjectCallback* callback, void* arg) {
76 bitmap->Walk(callback, arg);
79 bitmap->Walk(callback, arg);
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
dwarf-aux.h 37 /* Walk on funcitons at given address */
90 /* Walk on the instances of given DIE */
99 * Walk on lines inside given DIE. If the DIE is a subprogram, walk only on
  /frameworks/base/packages/DocumentsUI/
wrap_alpha.py 7 for root, dirs, files in os.walk('.'):
18 for root, dirs, files in os.walk('.'):
  /external/chromium_org/chrome/common/extensions/docs/server2/
file_system.py 149 def Walk(self, root):
150 '''Recursively walk the directories in a file system, starting with root.
152 Behaviour is very similar to os.walk from the standard os module, yielding
165 def walk(root): function in function:FileSystem.Walk
178 for walkinfo in walk(root + d):
181 for walkinfo in walk(root):
file_system_test.py 54 for root, dirs, files in file_system.Walk(''):
72 for root, dirs, files in file_system.Walk('templates/public/'):
  /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/
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)
  /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)
  /external/chromium_org/win8/metro_driver/
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);
273 // Walk past the extension.
274 walk += wcslen(walk) + 1
413 const wchar_t* walk = filter_.c_str(); local
    [all...]
  /external/srtp/crypto/kernel/
crypto_kernel.c 260 /* walk down cipher type list, freeing memory */
270 /* walk down authetication module list, freeing memory */
280 /* walk down debug module list, freeing memory */
315 /* walk down list, checking if this type is in the list already */
360 /* walk down list, checking if this type is in the list already */
396 /* walk down list, looking for id */
435 /* walk down list, looking for id */
476 /* walk down list, checking if this type is in the list already */
504 /* walk down list, checking if this type is in the list already */
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreeVisitor.cs 35 /** <summary>Do a depth first walk of a tree, applying pre() and post() actions as we go.</summary> */
51 * before/after having visited all of its children. Bottom up walk.
64 t = action.Pre(t); // if rewritten, walk children of new t
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TreeVisitor.cs 37 /** <summary>Do a depth first walk of a tree, applying pre() and post() actions as we go.</summary> */
53 * before/after having visited all of its children. Bottom up walk.
66 t = action.Pre( t ); // if rewritten, walk children of new t
  /external/chromium_org/ui/webui/resources/js/
parse_html_subset.js 53 function walk(n, f) {
56 walk(n.childNodes[i], f);
83 walk(df, function(node) {
  /external/clang/lib/Analysis/
CFGStmtMap.cpp 31 // If 'S' isn't in the map, walk the ParentMap to see if one of its ancestors
50 // First walk the block-level expressions.
84 // Walk all blocks, accumulating the block-level expressions, labels,
  /external/llvm/include/llvm/IR/
TypeFinder.h 28 /// TypeFinder - Walk over a module, identifying all of the types that are
65 /// incorporateValue - This method is used to walk operand lists finding types
71 /// incorporateMDNode - This method is used to walk the operands of an MDNode
  /frameworks/base/tools/aapt/
CacheUpdater.h 65 // If something in the path doesn't exist, then walk the path backwards
68 // Walk backwards to find place to start creating directories
77 // Walk forwards and build directories as we go
  /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 != ':') {
  /bionic/libc/include/
ftw.h 46 #define FTW_PHYS 0x01 /* Physical walk, don't follow sym links. */
47 #define FTW_MOUNT 0x02 /* The walk does not cross a mount point. */
  /development/ndk/platforms/android-L/include/
ftw.h 46 #define FTW_PHYS 0x01 /* Physical walk, don't follow sym links. */
47 #define FTW_MOUNT 0x02 /* The walk does not cross a mount point. */
  /external/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/bin/build/
treescan.py 60 for dirpath, dirnames, filenames in os.walk(root, onerror=OnError):
61 # os.walk allows us to modify dirnames to prevent decent into particular
  /external/chromium_org/v8/test/mjsunit/compiler/
regress-closures-with-eval.js 32 function walk(v) {
41 return walk(o);
  /external/lldb/include/lldb/Symbol/
FuncUnwinders.h 26 // limited set of registers necessary to walk the stack
73 // the architectural default UnwindPlan so hopefully our stack walk will get past
  /prebuilts/ndk/9/platforms/android-19/arch-arm64/usr/include/
ftw.h 46 #define FTW_PHYS 0x01 /* Physical walk, don't follow sym links. */
47 #define FTW_MOUNT 0x02 /* The walk does not cross a mount point. */

Completed in 1398 milliseconds

12 3 4 5 6 7 8 91011>>