Searched refs:jabs_op (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Lib/ |
D | opcode.py | 39 def jabs_op(name, op): function 149 jabs_op('JUMP_IF_FALSE_OR_POP', 111) # Target byte offset from beginning of code 150 jabs_op('JUMP_IF_TRUE_OR_POP', 112) # "" 151 jabs_op('JUMP_ABSOLUTE', 113) # "" 152 jabs_op('POP_JUMP_IF_FALSE', 114) # "" 153 jabs_op('POP_JUMP_IF_TRUE', 115) # "" 157 jabs_op('CONTINUE_LOOP', 119) # Target address 192 del def_op, name_op, jrel_op, jabs_op
|
/external/python/cpython3/Lib/ |
D | opcode.py | 51 def jabs_op(name, op): function 153 jabs_op('JUMP_IF_FALSE_OR_POP', 111) # Target byte offset from beginning of code 154 jabs_op('JUMP_IF_TRUE_OR_POP', 112) # "" 155 jabs_op('JUMP_ABSOLUTE', 113) # "" 156 jabs_op('POP_JUMP_IF_FALSE', 114) # "" 157 jabs_op('POP_JUMP_IF_TRUE', 115) # "" 161 jabs_op('CONTINUE_LOOP', 119) # Target address 217 del def_op, name_op, jrel_op, jabs_op
|