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

1 2 3 4 5 6 7 8 91011>>

  /cts/tests/tests/webkitsecurity/assets/
word-break-next-linebox-not-dirty-crash.html 13 function walk(a, currentPrefix, index, domNode)
18 walk(a, currentPrefix, index + 1, domNode.nextSibling);
19 walk(a, newPrefix, 0, domNode.firstChild);
25 walk(a, "", 0, document.body);
recalc-section-first-body-crash.html 17 function walk(arr, currentPrefix, index, domNode)
22 walk(arr, currentPrefix, index + 1, domNode.nextSibling);
23 walk(arr, newPrefix, 0, domNode.firstChild);
30 walk(arr, "", 0, document.body);
  /external/v8/test/cctest/
test-profile-generator.cc 115 ProfileNode* Walk(CodeEntry* entry1,
146 CHECK_EQ(NULL, helper.Walk(&entry1));
147 CHECK_EQ(NULL, helper.Walk(&entry2));
148 CHECK_EQ(NULL, helper.Walk(&entry3));
153 CHECK_EQ(NULL, helper.Walk(&entry2));
154 CHECK_EQ(NULL, helper.Walk(&entry3));
155 ProfileNode* node1 = helper.Walk(&entry1);
159 CHECK_EQ(NULL, helper.Walk(&entry1, &entry1));
160 CHECK_EQ(NULL, helper.Walk(&entry1, &entry3));
161 ProfileNode* node2 = helper.Walk(&entry1, &entry2)
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/UglifyJS/
process.js 75 a[1] = walk(def[1]);
90 return [ this[0], MAP(statements, walk) ];
95 out.push(MAP(statements, walk));
103 MAP(t, walk),
104 c != null ? [ c[0], MAP(c[1], walk) ] : null,
105 f != null ? MAP(f, walk) : null
109 return [ this[0], walk(expr) ];
112 return [ this[0], walk(ctor), MAP(args, walk) ];
115 return [ this[0], walk(expr), MAP(body, function(branch)
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/helloworld/
HelloAnimation.java 86 if (animName.equals("Walk")) {
87 /** After "walk", reset to "stand". */
101 inputManager.addMapping("Walk", new KeyTrigger(KeyInput.KEY_SPACE));
102 inputManager.addListener(actionListener, "Walk");
108 if (name.equals("Walk") && !keyPressed) {
109 if (!channel.getAnimationName().equals("Walk")) {
110 /** Play the "walk" animation! */
111 channel.setAnim("Walk", 0.50f);
  /external/regex-re2/re2/
walker-inl.h 31 // At the top-most Regexp, parent_arg is arg passed to walk.
32 // If PreVisit sets *stop to true, the walk does not recurse
51 // when Walk notices that more than one child is the same re.
56 // has been used up and we're trying to abort the walk
67 T Walk(Regexp* re, T top_arg);
69 // Like Walk, but doesn't use Copy. This can lead to
73 // the walk will be cut off early.
74 // If the walk *is* cut off early, ShortVisit(re)
80 // Walk always enters and exits with an empty stack.
84 // Returns whether walk was cut off
    [all...]
  /external/iproute2/tc/
q_atm.c 110 char *walk; local
114 for (walk = *argv; *walk; walk++) {
121 if (*walk == '.') continue;
122 if (!isxdigit(walk[0]) || !walk[1] ||
123 !isxdigit(walk[1])) {
127 sscanf(walk,"%2x",&tmp);
129 walk++
    [all...]
  /external/quake/quake/src/QW/server/
move.txt 24 walk code
  /external/dropbear/libtomcrypt/src/pk/asn1/der/sequence/
der_sequence_free.c 28 /* walk to the start of the chain */
37 /* now walk the list and free stuff */
  /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/wpa_supplicant_6/wpa_supplicant/src/drivers/
radiotap_iter.h 10 * struct ieee80211_radiotap_iterator - tracks walk thru present radiotap args
  /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;
  /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/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;
  /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;
  /gdk/samples/quake/jni/
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;
  /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-trace/src/shared/js/
parse_html_subset.js 52 function walk(n, f) {
55 walk(n.childNodes[i], f);
79 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,
  /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

Completed in 1312 milliseconds

1 2 3 4 5 6 7 8 91011>>