Searched refs:import_as_name (Results 1 – 20 of 20) sorted by relevance
/external/chromium-trace/catapult/common/py_utils/py_utils/refactor/annotated_symbol/ |
D | import_statement.py | 62 symbol_type != symbol.import_as_name): 242 return tuple((import_as_name.name, import_as_name.alias) 243 for import_as_name in import_as_names.children[::2]) 277 import_as_name = self._import_as_name 278 if import_as_name: 279 return import_as_name.name 288 import_as_name = self._import_as_name 293 if import_as_name: 294 import_as_name.name = value 309 import_as_name = self._import_as_name [all …]
|
/external/python/cpython3/Lib/lib2to3/fixes/ |
D | fix_itertools_imports.py | 16 if imports.type == syms.import_as_name or not imports.children: 28 assert child.type == syms.import_as_name
|
D | fix_urllib.py | 124 if member.type == syms.import_as_name: 141 if name.type == syms.import_as_name: 145 return [Node(syms.import_as_name, kids)]
|
/external/python/cpython2/Lib/lib2to3/fixes/ |
D | fix_itertools_imports.py | 16 if imports.type == syms.import_as_name or not imports.children: 28 assert child.type == syms.import_as_name
|
D | fix_urllib.py | 125 if member.type == syms.import_as_name: 142 if name.type == syms.import_as_name: 146 return [Node(syms.import_as_name, kids)]
|
/external/python/cpython2/Grammar/ |
D | Grammar | 56 import_as_name: NAME ['as' NAME] 58 import_as_names: import_as_name (',' import_as_name)* [',']
|
/external/python/cpython3/Lib/lib2to3/ |
D | Grammar.txt | 59 import_as_name: NAME ['as' NAME] 61 import_as_names: import_as_name (',' import_as_name)* [',']
|
D | fixer_util.py | 445 elif n.type == syms.import_as_name:
|
/external/python/cpython3/Grammar/ |
D | Grammar | 61 import_as_name: NAME ['as' NAME] 63 import_as_names: import_as_name (',' import_as_name)* [',']
|
/external/python/cpython2/Lib/lib2to3/ |
D | Grammar.txt | 76 import_as_name: NAME ['as' NAME] 78 import_as_names: import_as_name (',' import_as_name)* [',']
|
D | fixer_util.py | 424 elif n.type == syms.import_as_name:
|
/external/python/cpython3/Include/ |
D | graminit.h | 34 #define import_as_name 287 macro
|
/external/python/cpython2/Include/ |
D | graminit.h | 31 #define import_as_name 284 macro
|
/external/python/cpython2/Lib/ |
D | symbol.py | 41 import_as_name = 284 variable
|
/external/python/cpython3/Lib/ |
D | symbol.py | 44 import_as_name = 287 variable
|
/external/antlr/runtime/JavaScript/tests/functional/ |
D | Python.g | 203 (STAR | import_as_name (COMMA import_as_name)*) 206 import_as_name
|
/external/python/cpython2/Lib/compiler/ |
D | transformer.py | 905 assert node[0] == symbol.import_as_name
|
/external/python/cpython2/Modules/ |
D | parsermodule.c | 1848 int ok = validate_ntype(tree, import_as_name); in validate_import_as_name()
|
/external/python/cpython2/Python/ |
D | ast.c | 2442 case import_as_name: { in alias_for_import_name()
|
/external/python/cpython3/Python/ |
D | ast.c | 3164 case import_as_name: { in alias_for_import_name()
|