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

12

/external/chromium_org/v8/test/mjsunit/compiler/
H A Dregress-closures-with-eval.js32 function walk(v) {
41 return walk(o);
/external/chromium_org/mojo/public/tools/bindings/pylib/mojom_tests/support/
H A Dfind_files.py6 from os import walk namespace
15 for dirpath, _, filenames in walk(top, **kwargs):
/external/chromium_org/v8/test/webkit/resources/
H A Djson2-es5-compat.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/chromium_org/chrome/renderer/resources/extensions/
H A Domnibox_custom_bindings.js50 // Recursively walk the tree.
51 function walk(node) {
69 walk(child);
76 walk(child);
79 walk(root);
/external/chromium_org/third_party/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/elfutils/0.153/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/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dchromevox_json.js295 function walk(holder, key) {
297 // The walk method is used to recursively walk the resulting structure
304 v = walk(value, k);
358 // In the optional fourth stage, we recursively walk the new
361 return typeof reviver === 'function' ? walk({'': j}, '') : j;
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dfile_system.py171 '''Recursively walk the directories in a file system, starting with root.
173 Behaviour is very similar to os.walk from the standard os module, yielding
196 def walk(root, depth): function in function:FileSystem.Walk
214 for walkinfo in walk(root + d, depth - 1):
217 for walkinfo in walk(root, depth):
H A Dintegration_test.py60 def walk(path, prefix=''): function in function:_GetPublicFiles
63 for root, dirs, files in os.walk(path, topdown=True):
79 public_files.update(walk(content_provider['chromium']['dir'],
/external/chromium_org/third_party/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/chromium_org/third_party/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/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
H A Dstring-tagcloud.js180 function walk(k, v) {
185 n = walk(i, v[i]);
201 return typeof filter === 'function' ? walk('', j) : j;
/external/chromium_org/third_party/skia/src/pathops/
H A DSkOpEdgeBuilder.cpp30 if (fUnparseable || !walk()) {
156 bool SkOpEdgeBuilder::walk() { function in class:SkOpEdgeBuilder
/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/skia/src/pathops/
H A DSkOpEdgeBuilder.cpp30 if (fUnparseable || !walk()) {
138 bool SkOpEdgeBuilder::walk() { function in class:SkOpEdgeBuilder
/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 )
/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/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Dfilesystem.py103 for (dirpath, dirnames, filenames) in os.walk(path):
134 def walk(self, top): member in class:FileSystem
135 return os.walk(top)
H A Dfilesystem_mock.py204 root, dirs, files = list(self.walk(path))[0]
207 def walk(self, top): member in class:MockFileSystem
/external/replicaisland/src/com/replica/replicaisland/
H A DNPCAnimationComponent.java77 walk(parentObject);
216 protected void walk(GameObject parentObject) { method in class:NPCAnimationComponent
/external/chromium_org/win8/metro_driver/
H A Dfile_picker.cc298 const wchar_t* walk = open_file_name_->lpstrFilter; local
299 while (*walk != L'\0') {
301 walk += wcslen(walk) + 1;
304 if (*walk == L'\0')
309 size_t extension_count = Tokenize(walk, L";", &extensions_win32_style);
336 walk += wcslen(walk) + 1;
464 const wchar_t* walk = open_file_name_->lpstrFilter; local
465 while (*walk !
[all...]
H A Dfile_picker_ash.cc235 const wchar_t* walk = filter_.c_str(); local
236 while (*walk != L'\0') {
238 walk += wcslen(walk) + 1;
241 if (*walk == L'\0')
246 size_t extension_count = Tokenize(walk, L";", &extensions_win32_style);
273 walk += wcslen(walk) + 1;
412 const wchar_t* walk = filter_.c_str(); local
413 while (*walk !
[all...]
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DSkAntiEdge.cpp605 // walk the list, splitting edges partially occluded on the left
635 void SkAntiEdgeBuilder::walk(uint8_t* result, int rowBytes, int height) { function in class:SkAntiEdgeBuilder
722 walk(result, pixelCol, pixelRow);
/external/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyCommon.h111 void walk(Visitor &V) { function in class:clang::threadSafety::CFGWalker
/external/llvm/lib/Transforms/Scalar/
H A DTailRecursionElimination.cpp169 // Start at a root value and walk its use-def chain to mark calls that use the
172 void walk(Value *Root) { function in struct:__anon26343::AllocaDerivedValueTracker
258 Tracker.walk(&Arg);
263 Tracker.walk(AI);

Completed in 1030 milliseconds

12