Home
last modified time | relevance | path

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

/external/chromium-trace/catapult/common/py_utils/py_utils/refactor/annotated_symbol/
Dimport_statement.py172 dotted_as_names = self.children[1]
174 for dotted_as_name in dotted_as_names.children[::2])
186 dotted_as_names = self.children[1]
187 if len(dotted_as_names.children) != 1:
190 return dotted_as_names.children[0]
/external/python/cpython2/Include/
Dgraminit.h34 #define dotted_as_names 287 macro
/external/python/cpython2/Lib/
Dsymbol.py44 dotted_as_names = 287 variable
/external/python/cpython2/Lib/lib2to3/fixes/
Dfix_exitfunc.py60 if names.type == syms.dotted_as_names:
Dfix_import.py32 elif node.type == syms.dotted_as_names:
/external/python/cpython2/Grammar/
DGrammar53 import_name: 'import' dotted_as_names
59 dotted_as_names: dotted_as_name (',' dotted_as_name)*
/external/python/cpython2/Lib/lib2to3/
DGrammar.txt73 import_name: 'import' dotted_as_names
79 dotted_as_names: dotted_as_name (',' dotted_as_name)*
Dfixer_util.py400 if imp.type == syms.dotted_as_names:
/external/python/cpython2/Lib/compiler/
Dtransformer.py897 assert node[0] == symbol.dotted_as_names
/external/python/cpython2/Python/
Dast.c2555 REQ(n, dotted_as_names); in ast_for_import_stmt()