/external/chromium_org/tools/gyp/test/mac/ |
gyptest-framework.py | 20 for dirpath, _, files in os.walk(path):
|
/external/chromium_org/tools/telemetry/telemetry/util/ |
global_hooks.py | 25 for dirname, _, filenames in os.walk(base_dir):
|
/external/chromium_org/v8/src/ |
allocation-site-scopes.h | 87 // recursive walk of a nested literal.
|
/external/chromium_org/v8/test/webkit/ |
for-in-var-scope-expected.txt | 24 This tests that for/in statements properly scope a variable that's declared in one. In previous versions of JavaScriptCore there were two bugs that caused problems. First, the loop variable declaration would not be processed. Second, the code to set the loop variable would incorrectly walk the scope chain even after setting the loop variable.
|
for-in-var-scope.js | 28 + "Second, the code to set the loop variable would incorrectly walk the scope chain even after setting the loop variable."
|
/external/doclava/res/assets/templates/ |
yaml_navtree.cs | 3 # walk the children pages and print them nested below the parent
|
/external/lldb/test/ |
dosep.ty | 17 for root, dirs, files in os.walk(test_root, topdown=False):
|
/external/skia/experimental/Intersection/ |
SkAntiEdge.h | 63 void walk(uint8_t* result, int rowBytes, int height);
|
/libcore/libart/src/main/java/java/lang/ |
VMClassLoader.java | 29 * It would be simpler to just walk through the class path elements
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/ |
support.py | 49 for dirpath, dirnames, filenames in os.walk(proj_dir):
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/ |
support.py | 49 for dirpath, dirnames, filenames in os.walk(proj_dir):
|
/art/runtime/gc/space/ |
large_object_space.h | 42 virtual void Walk(DlMallocSpace::WalkCallback, void* arg) = 0; 123 void Walk(DlMallocSpace::WalkCallback, void* arg) OVERRIDE LOCKS_EXCLUDED(lock_); 152 void Walk(DlMallocSpace::WalkCallback callback, void* arg) OVERRIDE LOCKS_EXCLUDED(lock_);
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/ |
MachineProbe.java | 61 // for (Edge e : startState.edges) { // walk edges looking for valid 85 // walk looking for edge whose target is next dfa state 126 // walk p's transitions, looking for label
|
/external/elfutils/0.153/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/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
DTMTreeWalker.java | 31 * This class does a pre-order walk of the DTM tree, calling a ContentHandler 59 * Get the ContentHandler used for the tree walk. 61 * @return the ContentHandler used for the tree walk 69 * Set the ContentHandler used for the tree walk. 71 * @param ch the ContentHandler to be the result of the tree walk.
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
TreeWalker.java | 39 * This class does a pre-order walk of the DOM tree, calling a ContentHandler 60 * Get the ContentHandler used for the tree walk. 62 * @return the ContentHandler used for the tree walk 70 * Get the ContentHandler used for the tree walk. 72 * @return the ContentHandler used for the tree walk
|
/external/lldb/source/Plugins/Process/Utility/ |
UnwindLLDB.cpp | 147 log->Printf("%*sFrame %d invalid RegisterContext for this frame, stopping stack walk", 156 log->Printf("%*sFrame %d did not get CFA for this frame, stopping stack walk", 165 log->Printf("%*sFrame %d did not get a valid CFA for this frame, stopping stack walk", 174 log->Printf("%*sFrame %d did not get PC for this frame, stopping stack walk", 183 log->Printf("%*sFrame %d did not get a valid PC, stopping stack walk",
|
/external/llvm/include/llvm/Analysis/ |
PtrUseVisitor.h | 10 /// This file provides a collection of visitors which walk the (instruction) 159 /// \brief Walk the operands of a GEP and adjust the offset as appropriate. 161 /// This routine does the heavy lifting of the pointer walk by computing 170 /// will walk its uses and visit each instruction using an InstVisitor. It also 250 // If we can't walk the GEP, clear the offset.
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
DwarfAccelTable.cpp | 87 // by doing a walk during the emission phase. We add temporary 128 // Walk through and emit the buckets for the table. Each index is 142 // Walk through the buckets and emit the individual hashes for each 155 // Walk through the buckets and emit the individual offsets for each 174 // Walk through the buckets and emit the full data for each element in
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
os.py | 209 def walk(top, topdown=True, onerror=None, followlinks=False): function 231 (e.g., via del or slice assignment), and walk will only recurse into the 241 report the error to continue with the walk, or raise the exception 242 to abort the walk. Note that the filename is available as the 245 By default, os.walk does not follow symbolic links to subdirectories on 250 current working directory between resumptions of walk. walk never 258 for root, dirs, files in os.walk('python/Lib/email'): 269 # get a list of the files the directory contains. os.path.walk 294 for x in walk(new_path, topdown, onerror, followlinks) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
os.py | 209 def walk(top, topdown=True, onerror=None, followlinks=False): function 231 (e.g., via del or slice assignment), and walk will only recurse into the 241 report the error to continue with the walk, or raise the exception 242 to abort the walk. Note that the filename is available as the 245 By default, os.walk does not follow symbolic links to subdirectories on 250 current working directory between resumptions of walk. walk never 258 for root, dirs, files in os.walk('python/Lib/email'): 269 # get a list of the files the directory contains. os.path.walk 294 for x in walk(new_path, topdown, onerror, followlinks) [all...] |
/external/clang/lib/Sema/ |
JumpDiagnostics.cpp | 221 // If the decl has an initializer, walk it with the potentially new 266 /// coherent VLA scope with a specified parent node. Walk through the 312 // it. This makes the second scan not have to walk the AST again. 384 // Recursively walk the AST for the @try part. 420 // Recursively walk the AST for the @synchronized object expr, it is 424 // Recursively walk the AST for the @synchronized part, protected by a new 437 // Recursively walk the AST for the @autoreleasepool part, protected by a new 479 // Recursively walk the AST. 626 // Walk through all the jump sites, checking that they can trivially 632 // Walk out the "scope chain" for this scope, looking for a scop [all...] |
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/ |
dwarf-aux.c | 102 * cu_walk_functions_at - Walk on function DIEs at given address 108 * Walk on function DIEs at given @addr in @cu_die. Passed DIEs 543 * die_walk_instances - Walk on instances of given DIE 548 * Walk on the instances of give @in_die. @in_die must be an inlined function 613 /* Walk on lines of blocks included in given DIE */ 653 * die_walk_lines - Walk on lines inside given DIE 658 * Walk on all lines inside given @rt_die and call @callback on each line. 659 * If the @rt_die is a function, walk only on the lines inside the function, 691 /* Walk on the lines on lines list */ 725 * Don't need walk functions recursively, because neste [all...] |
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/ |
chromevox_json.js | 295 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/third_party/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;
|