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

  /external/v8/test/mjsunit/compiler/
regress-closures-with-eval.js 32 function walk(v) {
41 return walk(o);
  /external/webkit/LayoutTests/fast/js/resources/
json2-es5-compat.js 406 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/
parse_html_subset.js 36 function walk(n, f) {
39 walk(n.childNodes[i], f);
59 walk(df, function(node) {
  /external/elfutils/libdw/
libdw_visit_scopes.c 56 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/
json2.js 410 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/
text2atm.c 77 const char *walk; local
83 for (walk = text; *walk; walk++)
84 if (isdigit(*walk)) {
91 if (*walk != ':') {
  /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/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;
r_efrag.c 54 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/
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;
r_efrag.cpp 54 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/
string-tagcloud.js 180 function walk(k, v) {
185 n = walk(i, v[i]);
201 return typeof filter === 'function' ? walk('', j) : j;
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
string-tagcloud.js 180 function walk(k, v) {
185 n = walk(i, v[i]);
201 return typeof filter === 'function' ? walk('', j) : j;
    [all...]
  /packages/apps/Email/src/org/apache/commons/io/
DirectoryWalker.java 61 * walk(startDirectory, results);
161 * <li>The <code>walk()</code> method traps thrown {@link CancelException}
193 * will cause the walk to stop immediately. The <code>handleCancelled()</code>
258 * The limit on the directory depth to walk.
273 * part of the walk. The {@link FileFilterUtils} class is useful for combining
291 * of the walk. This constructor uses {@link FileFilterUtils#makeDirectoryOnly(IOFileFilter)}
320 * Writers of subclasses should call this method to start the directory walk.
329 protected final void walk(File startDirectory, Collection results) throws IOException { method in class:DirectoryWalker
335 walk(startDirectory, 0, results); method
350 private void walk(File directory, int depth, Collection results) throws IOException { method in class:DirectoryWalker
364 walk(childFile, childDepth, results); method
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
streams.rb 47 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.
1022 def walk method in class:ANTLR3.that.CommonTokenStream
    [all...]
tree.rb 281 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 ) )
    [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/webkit/Source/JavaScriptCore/runtime/
JSONObject.cpp 616 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/svg/
SVGFont.cpp 226 // 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/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/webkit/PerformanceTests/SunSpider/tests/parse-only/
mootools-1.2.2-core-nc.js 1537 var walk = function(element, walk, start, match, all, nocash){ function
    [all...]
  /frameworks/base/core/java/android/widget/
GridLayout.java 1388 void walk(int loc) { method
    [all...]
  /frameworks/support/v7/gridlayout/src/android/support/v7/widget/
GridLayout.java 1310 void walk(int loc) { method
    [all...]
  /sdk/testapps/gridlayoutTest/v7-gridlayout/libs/
android-support-v7-gridlayout.jar 
  /tools/motodev/src/plugins/preflighting.core/apktool/
apktool.jar 

Completed in 5095 milliseconds