Lines Matching defs:begin
4541 are_all_items_const(asdl_expr_seq *seq, Py_ssize_t begin, Py_ssize_t end)
4544 for (i = begin; i < end; i++) {
4553 compiler_subdict(struct compiler *c, expr_ty e, Py_ssize_t begin, Py_ssize_t end)
4555 Py_ssize_t i, n = end - begin;
4558 if (n > 1 && !big && are_all_items_const(e->v.Dict.keys, begin, end)) {
4559 for (i = begin; i < end; i++) {
4566 for (i = begin; i < end; i++) {
4569 PyTuple_SET_ITEM(keys, i - begin, key);
4578 for (i = begin; i < end; i++) {
5027 compiler_subkwargs(struct compiler *c, asdl_keyword_seq *keywords, Py_ssize_t begin, Py_ssize_t end)
5029 Py_ssize_t i, n = end - begin;
5035 for (i = begin; i < end; i++) {
5043 for (i = begin; i < end; i++) {
5046 PyTuple_SET_ITEM(keys, i - begin, key);
5055 for (i = begin; i < end; i++) {
8647 // Now we can begin! Our approach here is based on a solution to a closely