Home
last modified time | relevance | path

Searched refs:lambdef (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython2/Lib/hotshot/
Dlog.py180 lambdef = symbol.lambdef
192 elif sym == lambdef:
/external/python/cpython2/Include/
Dgraminit.h68 #define lambdef 321 macro
/external/python/cpython2/Lib/
Dsymbol.py78 lambdef = 321 variable
/external/python/cpython2/Grammar/
DGrammar89 test: or_test ['if' or_test 'else' test] | lambdef
110 lambdef: 'lambda' [varargslist] ':' test
/external/python/cpython2/Lib/lib2to3/fixes/
Dfix_has_key.py89 syms.or_test, syms.test, syms.lambdef, syms.argument):
/external/python/cpython2/Lib/compiler/
Dtransformer.py160 if n == symbol.lambdef:
161 return self.lambdef(node[1:])
280 def lambdef(self, nodelist): member in Transformer
292 old_lambdef = lambdef
594 if len(nodelist) == 1 and nodelist[0][0] == symbol.lambdef:
595 return self.lambdef(nodelist[0])
608 if len(nodelist) == 1 and nodelist[0][0] == symbol.lambdef:
609 return self.lambdef(nodelist[0])
/external/python/cpython2/Lib/lib2to3/
DGrammar.txt110 test: or_test ['if' or_test 'else' test] | lambdef
132 lambdef: 'lambda' [varargslist] ':' test
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
DPython.g259 | lambdef
329 lambdef: 'lambda' (varargslist)? COLON test
/external/python/cpython2/Modules/
Dparsermodule.c964 VALIDATER(atom); VALIDATER(lambdef);
2176 if (res && (TYPE(CHILD(tree, 0)) == lambdef)) in validate_test()
2730 int res = (validate_ntype(tree, lambdef) in validate_lambdef()
/external/python/cpython2/Python/
Dast.c1856 if (TYPE(CHILD(n, 0)) == lambdef || in ast_for_expr()