Home | History | Annotate | Download | only in Objects

Lines Matching defs:where

1292 The returned table will be one where each byte in frm is mapped to the byte at
1522 The index where the value is to be inserted.
1686 The index from where to remove the item.
1740 Py_ssize_t where, n = Py_SIZE(self);
1743 where = stringlib_find_char(buf, n, value);
1744 if (where < 0) {
1751 memmove(buf + where, buf + where + 1, n - where);