Searched refs:PythonCode (Results 1 – 4 of 4) sorted by relevance
| /external/python/mako/test/ |
| D | test_ast.py | 26 parsed = ast.PythonCode(code, **exception_kwargs) 36 parsed = ast.PythonCode("x + 5 * (y-z)", **exception_kwargs) 50 parsed = ast.PythonCode(code, **exception_kwargs) 67 parsed = ast.PythonCode(code, **exception_kwargs) 77 parsed = ast.PythonCode(code, **exception_kwargs) 88 parsed = ast.PythonCode(code, **exception_kwargs) 96 parsed = ast.PythonCode(code, **exception_kwargs) 104 parsed = ast.PythonCode(code, **exception_kwargs) 115 parsed = ast.PythonCode(code, **exception_kwargs) 123 parsed = ast.PythonCode(code, **exception_kwargs) [all …]
|
| /external/python/mako/mako/ |
| D | ast.py | 16 class PythonCode: class 68 f = pyparser.FindTuple(self, PythonCode, **exception_kwargs) 72 class PythonFragment(PythonCode):
|
| D | parsetree.py | 158 self.code = ast.PythonCode(text, **self.exception_kwargs) 201 self.code = ast.PythonCode(text, **self.exception_kwargs) 330 code = ast.PythonCode( 388 self.page_args = ast.PythonCode( 494 ast.PythonCode( 578 self.code = ast.PythonCode(self.expression, **self.exception_kwargs) 613 self.code = ast.PythonCode(self.expression, **self.exception_kwargs)
|
| D | codegen.py | 248 impcode = ast.PythonCode(
|