Searched refs:iter_fields (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython2/Lib/ |
D | ast.py | 94 fields = [(a, _format(b)) for a, b in iter_fields(node)] 161 def iter_fields(node): function 178 for name, field in iter_fields(node): 245 for field, value in iter_fields(node): 291 for field, old_value in iter_fields(node):
|
/external/python/cpython3/Lib/ |
D | ast.py | 105 fields = [(a, _format(b)) for a, b in iter_fields(node)] 172 def iter_fields(node): function 189 for name, field in iter_fields(node): 266 for field, value in iter_fields(node): 312 for field, old_value in iter_fields(node):
|
/external/libchrome/third_party/jinja2/ |
D | nodes.py | 148 def iter_fields(self, exclude=None, only=None): member in Node 169 for field, item in self.iter_fields(exclude, only): 230 tuple(self.iter_fields()) == tuple(other.iter_fields())
|
D | visitor.py | 59 for field, old_value in node.iter_fields():
|
/external/python/cpython2/Lib/test/ |
D | test_ast.py | 456 d = dict(ast.iter_fields(node.body))
|
/external/python/cpython2/Doc/library/ |
D | ast.rst | 175 .. function:: iter_fields(node)
|
/external/python/cpython3/Doc/library/ |
D | ast.rst | 179 .. function:: iter_fields(node)
|
/external/python/cpython3/Lib/test/ |
D | test_ast.py | 508 d = dict(ast.iter_fields(node.body))
|