Lines Matching defs:last
107 method key val prev next mem 1st last empty iter find add rmv clr keq
150 * like the last one, but simply pull the node again to ensure it's right;
487 _ODictNode *od_last; /* last node in the linked list, if any */
1099 last: bool = True
1103 Pairs are returned in LIFO order if last is true or FIFO order if false.
1107 OrderedDict_popitem_impl(PyODictObject *self, int last)
1120 node = last ? _odict_LAST(self) : _odict_FIRST(self);
1257 last: bool = True
1259 Move an existing element to the end (or beginning if last is false).
1265 OrderedDict_move_to_end_impl(PyODictObject *self, PyObject *key, int last)
1274 node = last ? _odict_LAST(self) : _odict_FIRST(self);
1282 if (last) {
1283 /* Only move if not already the last one. */