Searched defs:walk (Results 1 - 20 of 20) sorted by relevance

/external/v8/test/mjsunit/compiler/
H A Dregress-closures-with-eval.js32 function walk(v) {
41 return walk(o);
/external/webkit/LayoutTests/fast/js/resources/
H A Djson2-es5-compat.js406 function walk(holder, key) {
408 // The walk method is used to recursively walk the resulting structure so
415 v = walk(value, k);
465 // In the optional fourth stage, we recursively walk the new structure, passing
469 walk({'': j}, '') : j;
/external/chromium/chrome/browser/resources/shared/js/
H A Dparse_html_subset.js36 function walk(n, f) {
39 walk(n.childNodes[i], f);
59 walk(df, function(node) {
/external/elfutils/libdw/
H A Dlibdw_visit_scopes.c56 enum die_class { ignore, match, match_inline, walk, imported }; enumerator in enum:die_class
85 return walk;
134 case walk:
/external/webkit/PerformanceTests/SunSpider/hosted/
H A Djson2.js410 function walk(holder, key) {
412 // The walk method is used to recursively walk the resulting structure so
419 v = walk(value, k);
469 // In the optional fourth stage, we recursively walk the new structure, passing
473 walk({'': j}, '') : j;
/external/ppp/pppd/plugins/pppoatm/
H A Dtext2atm.c77 const char *walk; local
83 for (walk = text; *walk; walk++)
84 if (isdigit(*walk)) {
91 if (*walk != ':') {
/external/quake/quake/src/QW/client/
H A Dgl_refrag.c53 efrag_t *ef, *old, *walk, **prev; local
62 walk = *prev;
63 if (!walk)
65 if (walk == ef)
71 prev = &walk->leafnext;
H A Dr_efrag.c54 efrag_t *ef, *old, *walk, **prev; local
63 walk = *prev;
64 if (!walk)
66 if (walk == ef)
72 prev = &walk->leafnext;
/external/quake/quake/src/WinQuake/
H A Dgl_refrag.cpp53 efrag_t *ef, *old, *walk, **prev; local
62 walk = *prev;
63 if (!walk)
65 if (walk == ef)
71 prev = &walk->leafnext;
H A Dr_efrag.cpp54 efrag_t *ef, *old, *walk, **prev; local
63 walk = *prev;
64 if (!walk)
66 if (walk == ef)
72 prev = &walk->leafnext;
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
H A Dstring-tagcloud.js180 function walk(k, v) {
185 n = walk(i, v[i]);
201 return typeof filter === 'function' ? walk('', j) : j;
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
H A Dstring-tagcloud.js180 function walk(k, v) {
185 n = walk(i, v[i]);
201 return typeof filter === 'function' ? walk('', j) : j;
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dstreams.rb47 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.
1017 # it was before #walk was called. While #each or #each_on_channel does not change
1018 # the positions stream during iteration, #walk advances through the stream. This
1022 def walk method in class:ANTLR3.that.CommonTokenStream
1023 block_given? or return enum_for( :walk )
H A Dtree.rb281 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 ) )
/external/iproute2/tc/
H A Dq_atm.c110 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/replicaisland/src/com/replica/replicaisland/
H A DNPCAnimationComponent.java77 walk(parentObject);
216 protected void walk(GameObject parentObject) { method in class:NPCAnimationComponent
/external/webkit/Source/WebCore/svg/
H A DSVGFont.cpp226 // Helper class to walk a text run. Lookup a SVGGlyphIdentifier for each character
243 void walk(const TextRun& run, bool isVerticalText, const String& language, int from, int to) function in struct:WebCore::SVGTextRunWalker
422 runWalker.walk(run, isVerticalText, language, from, to);
524 runWalker.walk(run, isVerticalText, language, from, to);
/external/webkit/Source/JavaScriptCore/runtime/
H A DJSONObject.cpp616 JSValue walk(JSValue unfiltered);
638 NEVER_INLINE JSValue Walker::walk(JSValue unfiltered) function in class:JSC::Walker
832 return JSValue::encode(Walker(exec, Local<JSObject>(exec->globalData(), asObject(function)), callType, callData).walk(unfiltered));
/external/webkit/Source/WebCore/inspector/front-end/UglifyJS/
H A Dprocess.js75 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(exp
[all...]
/external/webkit/PerformanceTests/SunSpider/tests/parse-only/
H A Dmootools-1.2.2-core-nc.js1537 var walk = function(element, walk, start, match, all, nocash){ function
1538 var el = element[start || walk];
1545 el = el[walk];
1717 return walk(this, 'previousSibling', null, match, false, nocash);
1721 return walk(this, 'previousSibling', null, match, true, nocash);
1725 return walk(this, 'nextSibling', null, match, false, nocash);
1729 return walk(this, 'nextSibling', null, match, true, nocash);
1733 return walk(this, 'nextSibling', 'firstChild', match, false, nocash);
1737 return walk(thi
[all...]

Completed in 333 milliseconds