Home
last modified time | relevance | path

Searched refs:CMD_STEP_INTO (Results 1 – 25 of 34) sorted by relevance

12

/dports/java/eclipse-pydev/eclipse-pydev-8.2.0/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/
H A Dpydevd_trace_dispatch_regular.py23 CMD_STEP_INTO = 107 variable
379 …if additional_info.pydev_original_step_cmd in (CMD_STEP_INTO, CMD_STEP_INTO_MY_CODE) and not _glob…
383 …if back_frame is not None and pydev_step_cmd in (CMD_STEP_INTO, CMD_STEP_INTO_MY_CODE, CMD_STEP_RE…
415 …if is_stepping and additional_info.pydev_original_step_cmd in (CMD_STEP_INTO, CMD_STEP_INTO_MY_COD…
422 …if back_frame is not None and pydev_step_cmd in (CMD_STEP_INTO, CMD_STEP_INTO_MY_CODE, CMD_STEP_RE…
H A Dpydevd_thread_lifecycle.py3 from _pydevd_bundle.pydevd_comm_constants import CMD_STEP_INTO, CMD_THREAD_SUSPEND
39 info.pydev_step_cmd = CMD_STEP_INTO
H A Dpydevd_frame.py29 CMD_STEP_INTO = 107 variable
623 … if step_cmd in (CMD_STEP_OVER, CMD_STEP_OVER_MY_CODE, CMD_STEP_INTO, CMD_STEP_INTO_MY_CODE):
630 info.pydev_step_cmd = CMD_STEP_INTO
643 info.pydev_step_cmd = CMD_STEP_INTO
680 info.pydev_step_cmd = CMD_STEP_INTO
878 (info.pydev_step_cmd in (CMD_STEP_INTO, CMD_STEP_INTO_COROUTINE)) or
938 elif step_cmd in (CMD_STEP_INTO, CMD_STEP_INTO_MY_CODE, CMD_STEP_INTO_COROUTINE):
H A Dpydevd_comm_constants.py7 CMD_STEP_INTO = 107 variable
H A Dpydevd_net_command_factory_json.py13 …CMD_WRITE_TO_CONSOLE, CMD_STEP_INTO, CMD_STEP_INTO_MY_CODE, CMD_STEP_OVER, CMD_STEP_OVER_MY_CODE, \
295 CMD_STEP_INTO,
H A Dpydevd_process_net_command_json.py22 CMD_PROCESS_EVENT, CMD_RETURN, CMD_SET_NEXT_STATEMENT, CMD_STEP_INTO,
502 step_cmd_id = CMD_STEP_INTO
/dports/devel/py-debugpy/debugpy-1.5.1/src/debugpy/_vendored/pydevd/_pydevd_bundle/
H A Dpydevd_trace_dispatch_regular.py23 CMD_STEP_INTO = 107 variable
379 …if additional_info.pydev_original_step_cmd in (CMD_STEP_INTO, CMD_STEP_INTO_MY_CODE) and not _glob…
383 …if back_frame is not None and pydev_step_cmd in (CMD_STEP_INTO, CMD_STEP_INTO_MY_CODE, CMD_STEP_RE…
415 …if is_stepping and additional_info.pydev_original_step_cmd in (CMD_STEP_INTO, CMD_STEP_INTO_MY_COD…
422 …if back_frame is not None and pydev_step_cmd in (CMD_STEP_INTO, CMD_STEP_INTO_MY_CODE, CMD_STEP_RE…
H A Dpydevd_thread_lifecycle.py3 from _pydevd_bundle.pydevd_comm_constants import CMD_STEP_INTO, CMD_THREAD_SUSPEND
39 info.pydev_step_cmd = CMD_STEP_INTO
H A Dpydevd_frame.py35 CMD_STEP_INTO = 107 variable
640 … if step_cmd in (CMD_STEP_OVER, CMD_STEP_OVER_MY_CODE, CMD_STEP_INTO, CMD_STEP_INTO_MY_CODE):
647 info.pydev_step_cmd = CMD_STEP_INTO
660 info.pydev_step_cmd = CMD_STEP_INTO
697 info.pydev_step_cmd = CMD_STEP_INTO
916 (info.pydev_step_cmd in (CMD_STEP_INTO, CMD_STEP_INTO_COROUTINE)) or
976 elif step_cmd in (CMD_STEP_INTO, CMD_STEP_INTO_MY_CODE, CMD_STEP_INTO_COROUTINE):
H A Dpydevd_comm_constants.py7 CMD_STEP_INTO = 107 variable
H A Dpydevd_net_command_factory_json.py13 …CMD_WRITE_TO_CONSOLE, CMD_STEP_INTO, CMD_STEP_INTO_MY_CODE, CMD_STEP_OVER, CMD_STEP_OVER_MY_CODE, \
296 CMD_STEP_INTO,
/dports/devel/pycharm-pro/pycharm-2020.2.3/plugins/python/helpers/pydev/_pydevd_bundle/
H A Dpydevd_comm_constants.py7 CMD_STEP_INTO = 107 variable
H A Dpydevd_frame.py16CMD_STEP_INTO, CMD_SMART_STEP_INTO, CMD_STEP_INTO_MY_CODE, CMD_STEP_INTO_COROUTINE)
820 elif step_cmd == CMD_STEP_INTO:
855 info.pydev_step_cmd = CMD_STEP_INTO
H A Dpydevd_process_net_command.py11 …CMD_THREAD_SUSPEND, pydevd_find_thread_by_id, CMD_THREAD_RUN, InternalRunThread, CMD_STEP_INTO, CM…
164 … elif cmd_id == CMD_STEP_INTO or cmd_id == CMD_STEP_OVER or cmd_id == CMD_STEP_RETURN or \
/dports/devel/pycharm-pro/pycharm-2020.2.3/plugins/python/helpers/pydev/pydev_tests_python/
H A Dtest_frame_eval_and_tracing.py191 from pydev_tests_python.debugger_unittest import CMD_STEP_INTO, CMD_STEP_RETURN, CMD_STEP_OVER
207 …ine=writer.get_line_index_with_content('check_step_in_then_step_return') + 1, reason=CMD_STEP_INTO)
H A Ddebugger_unittest.py29 CMD_STEP_INTO = 107 variable
96 REASON_STEP_INTO = CMD_STEP_INTO
927 self.write("%s\t%s\t%s" % (CMD_STEP_INTO, self.next_seq(), thread_id,))
/dports/devel/pycharm-pro/pycharm-2020.2.3/plugins/python/helpers/pydev/_pydevd_frame_eval/
H A Dpydevd_frame_evaluator.pyx60 cdef int CMD_STEP_INTO = 107
110 …if additional_info.pydev_step_cmd in (CMD_STEP_INTO, CMD_STEP_INTO_MY_CODE, CMD_SMART_STEP_INTO) o…
H A Dpydevd_frame_evaluator_py39.pyx60 cdef int CMD_STEP_INTO = 107
110 …if additional_info.pydev_step_cmd in (CMD_STEP_INTO, CMD_STEP_INTO_MY_CODE, CMD_SMART_STEP_INTO) o…
/dports/java/eclipse-pydev/eclipse-pydev-8.2.0/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_frame_eval/
H A Dpydevd_frame_evaluator.pyx500 cdef int CMD_STEP_INTO = 107
545 …if additional_info.pydev_step_cmd in (CMD_STEP_INTO, CMD_STEP_INTO_MY_CODE, CMD_STEP_INTO_COROUTIN…
628 cdef int CMD_STEP_INTO = 107
673 …if additional_info.pydev_step_cmd in (CMD_STEP_INTO, CMD_STEP_INTO_MY_CODE, CMD_STEP_INTO_COROUTIN…
H A Dpydevd_frame_evaluator.template.pyx498 cdef int CMD_STEP_INTO = 107
543 …if additional_info.pydev_step_cmd in (CMD_STEP_INTO, CMD_STEP_INTO_MY_CODE, CMD_STEP_INTO_COROUTIN…
/dports/devel/py-pydevd/pydevd-1.1.1/_pydevd_bundle/
H A Dpydevd_process_net_command.py11 …CMD_THREAD_SUSPEND, pydevd_find_thread_by_id, CMD_THREAD_RUN, InternalRunThread, CMD_STEP_INTO, CM…
115 … elif cmd_id == CMD_STEP_INTO or cmd_id == CMD_STEP_OVER or cmd_id == CMD_STEP_RETURN or \
H A Dpydevd_frame.py12CMD_STEP_INTO, CMD_SMART_STEP_INTO, CMD_RUN_TO_LINE, CMD_SET_NEXT_STATEMENT, CMD_STEP_INTO_MY_CODE
644 elif step_cmd == CMD_STEP_INTO:
H A Dpydevd_cython.pyx103 self.pydev_step_cmd = -1 # Something as CMD_STEP_INTO, CMD_STEP_OVER, etc.
140CMD_STEP_INTO, CMD_SMART_STEP_INTO, CMD_RUN_TO_LINE, CMD_SET_NEXT_STATEMENT, CMD_STEP_INTO_MY_CODE
567 info.pydev_step_cmd = 107 # CMD_STEP_INTO = 107
578 info.pydev_step_cmd = 107 # CMD_STEP_INTO = 107
772 elif step_cmd == CMD_STEP_INTO:
/dports/devel/py-pydevd/pydevd-1.1.1/
H A Dpydevd.py31 from _pydevd_bundle.pydevd_comm import CMD_SET_BREAK, CMD_SET_NEXT_STATEMENT, CMD_STEP_INTO, CMD_ST…
775 if info.pydev_step_cmd == CMD_STEP_INTO or info.pydev_step_cmd == CMD_STEP_INTO_MY_CODE:
839 … if info.pydev_step_cmd == CMD_STEP_INTO or info.pydev_step_cmd == CMD_STEP_INTO_MY_CODE:
/dports/devel/py-debugpy/debugpy-1.5.1/src/debugpy/_vendored/pydevd/_pydevd_frame_eval/
H A Dpydevd_frame_evaluator.template.pyx507 cdef int CMD_STEP_INTO = 107
553 …if additional_info.pydev_step_cmd in (CMD_STEP_INTO, CMD_STEP_INTO_MY_CODE, CMD_STEP_INTO_COROUTIN…

12