MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / right

Method right

examples/triage/byte.cpp:832–844  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

830
831
832void ByteView::right(int count, bool selecting)
833{
834 if (m_cursorAddr <= (getEnd() - count))
835 m_cursorAddr += count;
836 else
837 m_cursorAddr = getEnd();
838 adjustAddressAfterForwardMovement();
839 if (!selecting)
840 selectNone();
841 repositionCaret();
842 if (m_selectionVisible || selecting)
843 viewport()->update();
844}
845
846
847void ByteView::up(bool selecting)

Callers 2

check_expressionFunction · 0.45

Calls 2

viewportFunction · 0.85
updateMethod · 0.45

Tested by

no test coverage detected