Searched refs:except_clause (Results 1 – 11 of 11) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/ |
D | fix_except.py | 32 if n.type == syms.except_clause: 53 for except_clause, e_suite in find_excepts(try_cleanup): 54 if len(except_clause.children) == 4: 55 (E, comma, N) = except_clause.children[1:4]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/ |
D | graminit.h | 46 #define except_clause 299 macro
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/ |
D | graminit.h | 46 #define except_clause 299 macro
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | symbol.py | 56 except_clause = 299 variable
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Grammar/ |
D | Grammar | 70 ((except_clause ':' suite)+ 77 except_clause: 'except' [test [('as' | ',') test]]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/ |
D | Grammar.txt | 90 ((except_clause ':' suite)+ 98 except_clause: 'except' [test [(',' | 'as') test]]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
D | parsermodule.c | 928 VALIDATER(try); VALIDATER(except_clause); 2081 if (TYPE(CHILD(tree, nch - 3)) != except_clause) in validate_try() 2096 while (res && pos < nch && (TYPE(CHILD(tree, pos)) == except_clause)) { in validate_try() 2124 int res = (validate_ntype(tree, except_clause) in validate_except_clause()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/ |
D | parsermodule.c | 957 VALIDATER(try); VALIDATER(except_clause); 2110 if (TYPE(CHILD(tree, nch - 3)) != except_clause) in validate_try() 2125 while (res && pos < nch && (TYPE(CHILD(tree, pos)) == except_clause)) { in validate_try() 2153 int res = (validate_ntype(tree, except_clause) in validate_except_clause()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
D | ast.c | 3011 REQ(exc, except_clause); in ast_for_except_clause() 3100 else if (TYPE(CHILD(n, nch - 3)) != except_clause) { in ast_for_try_stmt()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
D | ast.c | 2994 REQ(exc, except_clause); in ast_for_except_clause() 3083 else if (TYPE(CHILD(n, nch - 3)) != except_clause) { in ast_for_try_stmt()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/ |
D | transformer.py | 945 if node[0] == symbol.except_clause:
|