Searched refs:nextpattern (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython3/Modules/ |
D | sre_lib.h | 469 #define DO_JUMPX(jumpvalue, jumplabel, nextpattern, matchall) \ argument 473 nextctx->pattern = nextpattern; \ 481 #define DO_JUMP(jumpvalue, jumplabel, nextpattern) \ argument 482 DO_JUMPX(jumpvalue, jumplabel, nextpattern, ctx->match_all) 484 #define DO_JUMP0(jumpvalue, jumplabel, nextpattern) \ argument 485 DO_JUMPX(jumpvalue, jumplabel, nextpattern, 0)
|
/external/python/cpython2/Modules/ |
D | _sre.c | 784 #define DO_JUMP(jumpvalue, jumplabel, nextpattern) \ argument 788 nextctx->pattern = nextpattern; \
|