/external/python/cpython2/Lib/lib2to3/fixes/ |
D | fix_filter.py | 19 from ..fixer_util import Name, Call, ListComp, in_special_context 58 new = ListComp(results.get("fp").clone(), 64 new = ListComp(Name(u"_f"),
|
D | fix_map.py | 25 from ..fixer_util import Name, Call, ListComp, in_special_context 69 new = ListComp(results["xp"].clone(),
|
/external/python/cpython3/Lib/lib2to3/fixes/ |
D | fix_filter.py | 20 from ..fixer_util import Name, ArgList, ListComp, in_special_context, parenthesize 73 new = ListComp(results.get("fp").clone(), 79 new = ListComp(Name("_f"),
|
D | fix_map.py | 25 from ..fixer_util import Name, ArgList, Call, ListComp, in_special_context 79 new = ListComp(results["xp"].clone(),
|
/external/starlark-go/syntax/ |
D | grammar.txt | 61 | ListExpr | ListComp 75 ListComp = '[' Test {CompClause} ']'.
|
/external/tensorflow/tensorflow/python/autograph/converters/ |
D | list_comprehensions.py | 42 if not isinstance(node.value, gast.ListComp):
|
/external/python/cpython2/Tools/compiler/ |
D | ast.txt | 44 ListComp: expr, quals!
|
/external/python/cpython2/Parser/ |
D | Python.asdl | 60 | ListComp(expr elt, comprehension* generators)
|
/external/python/cpython3/Parser/ |
D | Python.asdl | 65 | ListComp(expr elt, comprehension* generators)
|
/external/python/cpython2/Include/ |
D | Python-ast.h | 235 } ListComp; member 469 #define ListComp(a0, a1, a2, a3, a4) _Py_ListComp(a0, a1, a2, a3, a4) macro
|
/external/python/cpython3/Python/ |
D | ast_unparse.c | 431 APPEND_EXPR(e->v.ListComp.elt, PR_TEST); in append_ast_listcomp() 432 APPEND(comprehensions, e->v.ListComp.generators); in append_ast_listcomp()
|
D | ast_opt.c | 527 CALL(astfold_expr, expr_ty, node_->v.ListComp.elt); in astfold_expr() 528 CALL_SEQ(astfold_comprehension, comprehension, node_->v.ListComp.generators); in astfold_expr()
|
D | symtable.c | 2083 e->v.ListComp.generators, in symtable_visit_listcomp() 2084 e->v.ListComp.elt, NULL); in symtable_visit_listcomp()
|
D | ast.c | 278 COMP(ListComp) in validate_expr()
|
/external/python/cpython3/Lib/lib2to3/ |
D | fixer_util.py | 87 def ListComp(xp, fp, it, test=None): function
|
/external/python/cpython2/Lib/lib2to3/ |
D | fixer_util.py | 89 def ListComp(xp, fp, it, test=None): function
|
/external/python/cpython2/Python/ |
D | symtable.c | 1555 asdl_seq *generators = e->v.ListComp.generators; in symtable_visit_listcomp() 1561 VISIT(st, expr, e->v.ListComp.elt); in symtable_visit_listcomp()
|
D | Python-ast.c | 1646 ListComp(expr_ty elt, asdl_seq * generators, int lineno, int col_offset, in ListComp() function 1659 p->v.ListComp.elt = elt; in ListComp() 1660 p->v.ListComp.generators = generators; in ListComp() 2682 value = ast2obj_expr(o->v.ListComp.elt); in ast2obj_expr() 2687 value = ast2obj_list(o->v.ListComp.generators, in ast2obj_expr() 5213 *out = ListComp(elt, generators, lineno, col_offset, arena); in obj2ast_expr()
|
D | compile.c | 2635 return compiler_listcomp_generator(c, e->v.ListComp.generators, 0, in compiler_listcomp() 2636 e->v.ListComp.elt); in compiler_listcomp()
|
/external/python/cpython3/Include/internal/ |
D | pycore_ast.h | 387 } ListComp; member
|
/external/python/cpython2/PC/os2emx/ |
D | python27.def | 716 "ListComp"
|
/external/python/cpython3/Doc/library/ |
D | ast.rst | 617 .. class:: ListComp(elt, generators) 632 body=ListComp( 681 body=ListComp( 729 body=ListComp(
|
/external/python/cpython2/Doc/library/ |
D | compiler.rst | 396 | :class:`ListComp` | :attr:`expr` | |
|
/external/python/cpython2/Lib/compiler/ |
D | transformer.py | 1161 return ListComp(expr1, fors, lineno=lineno)
|
D | ast.py | 834 class ListComp(Node): class
|