Searched refs:dotted_name (Results 1 – 12 of 12) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Grammar/ |
D | Grammar | 22 decorator: '@' dotted_name [ '(' [arglist] ')' ] NEWLINE 54 import_from: ('from' ('.'* dotted_name | '.'+) 57 dotted_as_name: dotted_name ['as' NAME] 60 dotted_name: NAME ('.' NAME)*
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/ |
D | Grammar.txt | 34 decorator: '@' dotted_name [ '(' [arglist] ')' ] NEWLINE 74 import_from: ('from' ('.'* dotted_name | '.'+) 77 dotted_as_name: dotted_name ['as' NAME] 80 dotted_name: NAME ('.' NAME)*
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/ |
D | graminit.h | 35 #define dotted_name 288 macro
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/ |
D | graminit.h | 35 #define dotted_name 288 macro
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | symbol.py | 45 dotted_name = 288 variable
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/ |
D | fix_import.py | 28 elif node.type == syms.dotted_name:
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/i18n/ |
D | pygettext.py | 284 def _get_modpkg_path(dotted_name, pathlist=None): argument 292 parts = dotted_name.split('.', 1) 312 dotted_name, pathlist)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/ |
D | transformer.py | 216 assert nodelist[1][0] == symbol.dotted_name 342 def dotted_name(self, nodelist): member in Transformer 462 if nodelist[idx][0] == symbol.dotted_name:
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
D | ast.c | 811 REQ(n, dotted_name); in ast_for_dotted_name() 2481 case dotted_name: in alias_for_import_name() 2576 if (TYPE(CHILD(n, idx)) == dotted_name) { in ast_for_import_stmt()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
D | ast.c | 811 REQ(n, dotted_name); in ast_for_dotted_name() 2476 case dotted_name: in alias_for_import_name() 2571 if (TYPE(CHILD(n, idx)) == dotted_name) { in ast_for_import_stmt()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
D | parsermodule.c | 1799 int res = (validate_ntype(tree, dotted_name) in validate_dotted_name() 1897 int havename = (TYPE(CHILD(tree, ndots + 1)) == dotted_name); in validate_import_from()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/ |
D | parsermodule.c | 1828 int res = (validate_ntype(tree, dotted_name) in validate_dotted_name() 1926 int havename = (TYPE(CHILD(tree, ndots + 1)) == dotted_name); in validate_import_from()
|