/external/regex-re2/re2/testing/ |
null_walker.cc | 20 // Should never be called: we use Walk not WalkExponential. 41 w.Walk(this, false);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/ |
syntax.py | 12 from compiler import ast, walk namespace 16 walk(tree, v)
|
/prebuilts/python/darwin-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"]
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/ |
syntax.py | 12 from compiler import ast, walk namespace 16 walk(tree, v)
|
/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);
|
/external/chromium/chrome/browser/resources/shared/js/ |
parse_html_subset.js | 36 function walk(n, f) { 39 walk(n.childNodes[i], f); 59 walk(df, function(node) {
|
/external/chromium/chrome/browser/status_icons/ |
status_tray.cc | 20 // Walk any active status icons and delete them.
|
/external/jmonkeyengine/engine/src/test/jme3test/bullet/ |
TestPhysicsCharacter.java | 78 inputManager.addMapping("Walk Forward",
81 inputManager.addMapping("Walk Backward",
91 inputManager.addListener(this, "Walk Forward", "Walk Backward");
182 } else if (binding.equals("Walk Forward")) {
188 } else if (binding.equals("Walk Backward")) {
|
TestRagdollCharacter.java | 128 inputManager.addMapping("Walk Forward", 130 inputManager.addMapping("Walk Backward", 137 inputManager.addListener(this, "Walk Forward", "Walk Backward"); 196 } else if (binding.equals("Walk Forward")) { 202 } else if (binding.equals("Walk Backward")) {
|
/dalvik/vm/alloc/TEST/HeapBitmapTest/ |
main.c | 398 /* Walk two empty bitmaps. 400 TRACE("walk 0\n"); 405 /* Walk one empty bitmap. 407 TRACE("walk 1\n"); 414 TRACE("walk 2\n"); 433 TRACE("walk 3\n"); 442 TRACE("walk 4\n"); 451 TRACE("walk 5\n"); 455 /* Walk just one bitmap. 457 TRACE("walk 6\n") [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/ |
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...] |
/art/runtime/gc/accounting/ |
space_bitmap.cc | 47 void SpaceSetMap::Walk(SpaceBitmap::Callback* callback, void* arg) { 103 void SpaceBitmap::Walk(SpaceBitmap::Callback* callback, void* arg) { 123 // Walk through the bitmaps in increasing address order, and find the 178 // Walk instance fields of the given Class. Separate function to allow recursion on the super 188 // Walk instance fields 214 // Walk instance fields of all objects 217 // Walk static fields of a Class 233 // Walk elements of an object array 248 UniquePtr<SpaceBitmap> visited(Create("bitmap for in-order walk",
|
/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 | 62 // If something in the path doesn't exist, then walk the path backwards 65 // Walk backwards to find place to start creating directories 74 // 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. */
|