Home
last modified time | relevance | path

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/
Dfix_except.py32 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/
Dgraminit.h46 #define except_clause 299 macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dgraminit.h46 #define except_clause 299 macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dsymbol.py56 except_clause = 299 variable
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Grammar/
DGrammar70 ((except_clause ':' suite)+
77 except_clause: 'except' [test [('as' | ',') test]]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/
DGrammar.txt90 ((except_clause ':' suite)+
98 except_clause: 'except' [test [(',' | 'as') test]]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dparsermodule.c928 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/
Dparsermodule.c957 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/
Dast.c3011 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/
Dast.c2994 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/
Dtransformer.py945 if node[0] == symbol.except_clause: