/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
fileinput.py | 20 current file so that the next iteration will read the first line from 21 the next file (if any); lines not read from the file will not count 23 after the first line of the next file has been read. Function close() 51 readline() method which returns the next input line, and a 116 Close the current file so that the next iteration will read the first 117 line from the next file (if any); lines not read from the file will 119 changed until after the first line of the next file has been read. 191 In addition it has a readline() method which returns the next 243 def next(self): member in class:FileInput 262 return self.next() [all...] |
shelve.py | 175 This adds methods first(), next(), previous(), last() and 193 def next(self): member in class:BsdDbShelf 194 (key, value) = self.dict.next()
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_hotshot.py | 34 def next(self, index=None): member in class:UnlinkingLogReader 36 return hotshot.log.LogReader.next(self)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/wsgiref/ |
validate.py | 101 - That .next() returns a string 268 def next(self): member in class:IteratorWrapper 271 v = self.iterator.next()
|
/prebuilts/python/darwin-x86/2.7.5/share/pretty-printers/stlport/stlport/ |
printers.py | 84 def next (self): member in class:RbtreeIterator 164 def next (self): member in class:DequePrinter.Iterator 230 def next (self): member in class:ListPrinter.Iterator 276 def next (self): member in class:MapPrinter.Iterator 278 item = self.rbiter.next().dereference() 321 def next (self): member in class:SetPrinter.Iterator 322 item = self.rbiter.next().dereference() 359 def next (self): member in class:SlistPrinter.Iterator 446 def next (self): member in class:VectorPrinter.Iterator 543 def next (self) member in class:UnorderedMapPrinter.Iterator 595 def next (self): member in class:UnorderedSetPrinter.Iterator [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/ |
bdist_msi.py | 25 then a list of buttons: back, next, cancel. Optionally a bitmap at the 43 def back(self, title, next, name = "Back", active = 1): 44 """Add a back button with a given title, the tab-next button, 52 return self.pushbutton(name, 180, self.h-27 , 56, 17, flags, title, next) 54 def cancel(self, title, next, name = "Cancel", active = 1): 55 """Add a cancel button with a given title, the tab-next button, 63 return self.pushbutton(name, 304, self.h-27, 56, 17, flags, title, next) 65 def next(self, title, next, name = "Next", active = 1) member in class:PyDialog [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/ |
feedparser.py | 130 def next(self): 147 self._parse = self._parsegen().next 253 # first consume the blank line, then test the next line to see 129 def next(self): member in class:BufferedSubFile
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
fileinput.py | 20 current file so that the next iteration will read the first line from 21 the next file (if any); lines not read from the file will not count 23 after the first line of the next file has been read. Function close() 51 readline() method which returns the next input line, and a 116 Close the current file so that the next iteration will read the first 117 line from the next file (if any); lines not read from the file will 119 changed until after the first line of the next file has been read. 191 In addition it has a readline() method which returns the next 243 def next(self): member in class:FileInput 262 return self.next() [all...] |
shelve.py | 175 This adds methods first(), next(), previous(), last() and 193 def next(self): member in class:BsdDbShelf 194 (key, value) = self.dict.next()
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_hotshot.py | 34 def next(self, index=None): member in class:UnlinkingLogReader 36 return hotshot.log.LogReader.next(self)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/wsgiref/ |
validate.py | 101 - That .next() returns a string 268 def next(self): member in class:IteratorWrapper 271 v = self.iterator.next()
|
/prebuilts/python/linux-x86/2.7.5/share/pretty-printers/stlport/stlport/ |
printers.py | 85 def next (self): member in class:RbtreeIterator 165 def next (self): member in class:DequePrinter.Iterator 231 def next (self): member in class:ListPrinter.Iterator 277 def next (self): member in class:MapPrinter.Iterator 279 item = self.rbiter.next().dereference() 322 def next (self): member in class:SetPrinter.Iterator 323 item = self.rbiter.next().dereference() 360 def next (self): member in class:SlistPrinter.Iterator 447 def next (self): member in class:VectorPrinter.Iterator 544 def next (self) member in class:UnorderedMapPrinter.Iterator 596 def next (self): member in class:UnorderedSetPrinter.Iterator [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/ |
BasePullParser.java | 162 public int next() throws XmlPullParserException { method in class:BasePullParser 203 int eventType = next(); 213 throw new XmlPullParserException("parser must be on START_TAG to read next text", this, 216 int eventType = next(); 219 eventType = next(); 235 return next();
|
/sdk/emulator/qtools/ |
hash_table.h | 16 entry *next; member in struct:HashTable::entry 67 entry_type *ptr, *next; local 70 // Save the next pointer before deleting each entry so that we 72 for (ptr = table_[ii]; ptr; ptr = next) { 73 next = ptr->next; 103 for (entry_type *ptr = table_[pos]; ptr; ptr = ptr->next) { 119 ptr->next = table_[pos]; 134 for (entry_type *ptr = table_[pos]; ptr; prev = ptr, ptr = ptr->next) { 137 table_[pos] = ptr->next; [all...] |
/system/core/fastbootd/ |
protocol.c | 47 struct fastboot_cmd *next; member in struct:fastboot_cmd 54 struct fastboot_var *next; member in struct:fastboot_var 70 cmd->next = cmdlist; 84 var->next = varlist; 93 for (var = varlist; var; var = var->next) { 157 for (cmd = cmdlist; cmd; cmd = cmd->next) {
|
/system/core/include/utils/ |
LruCache.h | 57 bool next() { function in class:android::LruCache::Iterator 58 mIndex = mCache.mTable->next(mIndex);
|
/system/core/libcorkscrew/ |
map_info.c | 82 mi->next = milist; 146 mi->next = milist; 159 map_info_t* next = milist->next; local 161 milist = next; 168 mi = mi->next;
|
/system/core/libcutils/ |
config_utils.c | 44 for(node = root->first_child; node; node = node->next) 58 root->last_child->next = node; 119 char next; member in struct:__anon60906 130 if(cs->next != 0) { 131 c = cs->next; 132 cs->next = 0; 212 cs->next = *data; 297 cs.next = 0; 326 cur = cur->next;
|
sched_policy.c | 174 char *next = lineBuf; local 180 if (!strsep(&next, ":")) { 184 if (!(subsys = strsep(&next, ":"))) { 193 if (!(grp = strsep(&next, ":"))) {
|
/system/core/libutils/ |
BasicHashtable.cpp | 101 ssize_t BasicHashtableImpl::next(ssize_t index) const { function in class:android::BasicHashtableImpl
|
VectorImpl.cpp | 195 void* next = reinterpret_cast<char*>(array) + mItemSize*(i); local 197 _do_destroy(next, 1); 198 _do_copy(next, curr, 1); 199 next = curr; 204 _do_destroy(next, 1); 205 _do_copy(next, temp, 1);
|
/system/core/run-as/ |
package.c | 327 * it will be caught in the next conditional. 459 /* find end of current line and start of next one */ 461 const char* next = (end < buffer_end) ? end + 1 : buffer_end; local 527 p = next;
|
/system/core/sh/ |
redir.c | 80 struct redirtab *next; member in struct:redirtab 126 sv->next = redirlist; 129 for (n = redir ; n ; n = n->nfile.next) { 316 redirlist = rp->next; 357 for (rp = redirlist ; rp ; rp = rp->next) {
|
var.h | 53 struct var *next; /* next entry in hash list */ member in struct:var 64 struct localvar *next; /* next local variable in list */ member in struct:localvar
|
/system/extras/fatblock/ |
import.c | 154 struct item *next; member in struct:item 166 free_items_head = item->next; 177 item->next = free_items_head; 185 for (tail = head; tail->next; tail = tail->next); 187 tail->next = free_items_head; 278 item->next = items; 311 items = item->next;
|