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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
iterators.py 10 'walk',
21 def walk(self):
22 """Walk over the message tree, yielding each subpart.
24 The walk is performed in depth-first order. This method is a
30 for subsubpart in subpart.walk():
42 for subpart in msg.walk():
56 for subpart in msg.walk():
20 def walk(self): function
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
iterators.py 10 'walk',
21 def walk(self):
22 """Walk over the message tree, yielding each subpart.
24 The walk is performed in depth-first order. This method is a
30 for subsubpart in subpart.walk():
42 for subpart in msg.walk():
56 for subpart in msg.walk():
20 def walk(self): function
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
future.py 5 from compiler import ast, walk namespace
60 walk(node, p1)
61 walk(node, p2)
66 from compiler import parseFile, walk namespace
72 walk(tree, v)
__init__.py 13 walk(ast, visitor, verbose=None)
14 Does a pre-order walk over the ast using the visitor instance.
30 from compiler.visitor import walk namespace
visitor.py 7 """Performs a depth-first walk of the AST
9 The ASTVisitor will walk the AST, performing either a preorder or
25 child nodes are visited during a preorder walk. (It can't control
26 the order during a postorder walk, because it is called _after_
27 the walk has occurred.) The ASTVisitor modifies the visitor
60 """Do preorder walk of tree using visitor"""
101 def walk(tree, visitor, walker=None, verbose=None): function
syntax.py 12 from compiler import ast, walk namespace
16 walk(tree, v)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
future.py 5 from compiler import ast, walk namespace
60 walk(node, p1)
61 walk(node, p2)
66 from compiler import parseFile, walk namespace
72 walk(tree, v)
__init__.py 13 walk(ast, visitor, verbose=None)
14 Does a pre-order walk over the ast using the visitor instance.
30 from compiler.visitor import walk namespace
visitor.py 7 """Performs a depth-first walk of the AST
9 The ASTVisitor will walk the AST, performing either a preorder or
25 child nodes are visited during a preorder walk. (It can't control
26 the order during a postorder walk, because it is called _after_
27 the walk has occurred.) The ASTVisitor modifies the visitor
60 """Do preorder walk of tree using visitor"""
101 def walk(tree, visitor, walker=None, verbose=None): function
syntax.py 12 from compiler import ast, walk namespace
16 walk(tree, v)
  /external/chromium_org/mojo/public/tools/bindings/pylib/mojom_tests/support/
find_files.py 6 from os import walk namespace
15 for dirpath, _, filenames in walk(top, **kwargs):
  /external/eigen/demos/opengl/
README 6 middle button + ctrl walk (progress along camera's z direction)
  /external/chromium_org/v8/test/cctest/
test-profile-generator.cc 98 ProfileNode* Walk(CodeEntry* entry1,
126 CHECK_EQ(NULL, helper.Walk(&entry1));
127 CHECK_EQ(NULL, helper.Walk(&entry2));
128 CHECK_EQ(NULL, helper.Walk(&entry3));
133 CHECK_EQ(NULL, helper.Walk(&entry2));
134 CHECK_EQ(NULL, helper.Walk(&entry3));
135 ProfileNode* node1 = helper.Walk(&entry1);
138 CHECK_EQ(NULL, helper.Walk(&entry1, &entry1));
139 CHECK_EQ(NULL, helper.Walk(&entry1, &entry3));
140 ProfileNode* node2 = helper.Walk(&entry1, &entry2)
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
walker.c 21 ** Walk an expression tree. Invoke the callback once for each node
26 ** constants to specify how to proceed with the walk.
31 ** the walk to continue with sibling nodes.
34 ** return the top-level walk call.
36 ** The return value from this routine is WRC_Abort to abandon the tree walk
74 ** Walk all expressions associated with SELECT statement p. Do
91 ** Walk the parse trees associated with all subqueries in the
  /external/chromium_org/third_party/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/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/chromium_org/build/android/pylib/utils/
host_utils.py 12 for root, dirs, files in os.walk(path):
  /external/chromium_org/chrome/common/extensions/docs/server2/
file_system_util.py 11 for root, _, files in file_system.Walk(directory):
  /external/chromium_org/win8/metro_driver/
file_picker.cc 298 const wchar_t* walk = open_file_name_->lpstrFilter; local
299 while (*walk != L'\0') {
300 // Walk past the description.
301 walk += wcslen(walk) + 1;
304 if (*walk == L'\0')
309 size_t extension_count = Tokenize(walk, L";", &extensions_win32_style);
335 // Walk past the extension.
336 walk += wcslen(walk) + 1
464 const wchar_t* walk = open_file_name_->lpstrFilter; local
    [all...]
  /external/chromium_org/third_party/angle/
enumerate_files.py 39 # Walk the directories listed and compare with type and exclude lists
41 for root, dirnames, filenames in os.walk(rootdir):
  /external/chromium_org/third_party/re2/re2/testing/
null_walker.cc 20 // Should never be called: we use Walk not WalkExponential.
41 w.Walk(this, false);
  /external/chromium_org/tools/telemetry/telemetry/util/
path_set.py 33 for root, _, files in os.walk(path):
42 for root, _, files in os.walk(path):
  /external/regex-re2/re2/testing/
null_walker.cc 20 // Should never be called: we use Walk not WalkExponential.
41 w.Walk(this, false);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_popen.py 32 'foo "spam and eggs" "silly walk"',
33 ["foo", "spam and eggs", "silly walk"]

Completed in 1576 milliseconds

1 2 3 4 5 6 7 8 91011>>