/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
|
/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
|
/external/v8/test/cctest/ |
test-profile-generator.cc | 115 ProfileNode* Walk(CodeEntry* entry1, 146 CHECK_EQ(NULL, helper.Walk(&entry1)); 147 CHECK_EQ(NULL, helper.Walk(&entry2)); 148 CHECK_EQ(NULL, helper.Walk(&entry3)); 153 CHECK_EQ(NULL, helper.Walk(&entry2)); 154 CHECK_EQ(NULL, helper.Walk(&entry3)); 155 ProfileNode* node1 = helper.Walk(&entry1); 159 CHECK_EQ(NULL, helper.Walk(&entry1, &entry1)); 160 CHECK_EQ(NULL, helper.Walk(&entry1, &entry3)); 161 ProfileNode* node2 = helper.Walk(&entry1, &entry2) [all...] |
/external/jmonkeyengine/engine/src/test/jme3test/helloworld/ |
HelloAnimation.java | 86 if (animName.equals("Walk")) { 87 /** After "walk", reset to "stand". */ 101 inputManager.addMapping("Walk", new KeyTrigger(KeyInput.KEY_SPACE)); 102 inputManager.addListener(actionListener, "Walk"); 108 if (name.equals("Walk") && !keyPressed) { 109 if (!channel.getAnimationName().equals("Walk")) { 110 /** Play the "walk" animation! */ 111 channel.setAnim("Walk", 0.50f);
|
/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 | 96 ProfileNode* Walk(CodeEntry* entry1, 124 CHECK_EQ(NULL, helper.Walk(&entry1)); 125 CHECK_EQ(NULL, helper.Walk(&entry2)); 126 CHECK_EQ(NULL, helper.Walk(&entry3)); 131 CHECK_EQ(NULL, helper.Walk(&entry2)); 132 CHECK_EQ(NULL, helper.Walk(&entry3)); 133 ProfileNode* node1 = helper.Walk(&entry1); 136 CHECK_EQ(NULL, helper.Walk(&entry1, &entry1)); 137 CHECK_EQ(NULL, helper.Walk(&entry1, &entry3)); 138 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...] |
/art/runtime/gc/accounting/ |
heap_bitmap.cc | 63 void HeapBitmap::Walk(SpaceBitmap::Callback* callback, void* arg) { 65 bitmap->Walk(callback, arg); 70 space_set->Walk(callback, arg);
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
file_system_util.py | 11 for root, _, files in file_system.Walk(directory):
|
file_system_test.py | 50 for root, dirs, files in file_system.Walk(''): 67 for root, dirs, files in file_system.Walk('templates/public'):
|
/external/chromium_org/content/test/gpu/page_sets/ |
__init__.py | 9 for dirpath, _, filenames in os.walk(start_dir):
|
/external/chromium_org/tools/perf/page_sets/ |
__init__.py | 9 for dirpath, _, filenames in os.walk(start_dir):
|
/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); 334 // Walk past the extension. 335 walk += wcslen(walk) + 1 463 const wchar_t* walk = open_file_name_->lpstrFilter; local [all...] |
/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/dropbear/libtomcrypt/src/pk/asn1/der/sequence/ |
der_sequence_free.c | 28 /* walk to the start of the chain */ 37 /* now walk the list and free stuff */
|
/external/regex-re2/re2/testing/ |
null_walker.cc | 20 // Should never be called: we use Walk not WalkExponential. 41 w.Walk(this, false);
|