Lines Matching refs:elt

434                                       expr_ty elt, expr_ty val, int type);
440 expr_ty elt, expr_ty val, int type);
1691 TYPE ## _ty elt = (TYPE ## _ty)asdl_seq_GET(seq, _i); \
1692 if (!compiler_visit_ ## TYPE((C), elt)) \
1701 TYPE ## _ty elt = (TYPE ## _ty)asdl_seq_GET(seq, _i); \
1702 if (!compiler_visit_ ## TYPE((C), elt)) { \
4416 expr_ty elt = asdl_seq_GET(elts, i);
4417 if (elt->kind == Starred_kind) {
4423 expr_ty elt = asdl_seq_GET(elts, i);
4424 VISIT(c, expr, elt);
4439 expr_ty elt = asdl_seq_GET(elts, i);
4440 if (elt->kind == Starred_kind) {
4445 VISIT(c, expr, elt->v.Starred.value);
4449 VISIT(c, expr, elt);
4468 expr_ty elt = asdl_seq_GET(elts, i);
4469 if (elt->kind == Starred_kind && !seen_star) {
4478 else if (elt->kind == Starred_kind) {
4495 expr_ty elt = asdl_seq_GET(elts, i);
4496 VISIT(c, expr, elt->kind != Starred_kind ? elt : elt->v.Starred.value);
4876 expr_ty elt = asdl_seq_GET(args, i);
4877 if (elt->kind == Starred_kind) {
5118 expr_ty elt = asdl_seq_GET(args, i);
5119 if (elt->kind == Starred_kind) {
5132 expr_ty elt = asdl_seq_GET(args, i);
5133 assert(elt->kind != Starred_kind);
5134 VISIT(c, expr, elt);
5222 expr_ty elt, expr_ty val, int type)
5228 c, generators, gen_index, depth, elt, val, type);
5231 c, generators, gen_index, depth, elt, val, type);
5239 expr_ty elt, expr_ty val, int type)
5280 expr_ty elt = asdl_seq_GET(elts, 0);
5281 if (elt->kind != Starred_kind) {
5282 VISIT(c, expr, elt);
5309 elt, val, type))
5317 VISIT(c, expr, elt);
5322 VISIT(c, expr, elt);
5326 VISIT(c, expr, elt);
5332 VISIT(c, expr, elt);
5353 expr_ty elt, expr_ty val, int type)
5404 elt, val, type))
5412 VISIT(c, expr, elt);
5417 VISIT(c, expr, elt);
5421 VISIT(c, expr, elt);
5427 VISIT(c, expr, elt);
5450 identifier name, asdl_comprehension_seq *generators, expr_ty elt,
5501 if (!compiler_comprehension_generator(c, generators, 0, 0, elt,
5558 e->v.GeneratorExp.elt, NULL);
5568 e->v.ListComp.elt, NULL);
5578 e->v.SetComp.elt, NULL);
6413 pattern_ty elt = asdl_seq_GET(elts, i);
6414 if (elt->kind == MatchStar_kind && !seen_star) {
6423 else if (elt->kind == MatchStar_kind) {