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

Method selectNone

python/examples/triage/byte.py:581–590  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

579 self.updateCaret()
580
581 def selectNone(self):
582 for i in self.lines:
583 if (self.cursorAddr >= i.address) and (self.cursorAddr < (i.address + i.length)) and i.separator:
584 self.cursorAddr = i.address + i.length
585 break
586 self.selectionStartAddr = self.cursorAddr
587 if self.selectionVisible:
588 self.viewport().update()
589 self.repositionCaret()
590 UIContext.updateStatus()
591
592 def selectAll(self):
593 self.selectionStartAddr = self.getStart()

Callers 10

navigateMethod · 0.95
leftMethod · 0.95
rightMethod · 0.95
pageUpMethod · 0.95
pageDownMethod · 0.95
moveToStartOfLineMethod · 0.95
moveToEndOfLineMethod · 0.95
moveToStartOfViewMethod · 0.95
moveToEndOfViewMethod · 0.95
mousePressEventMethod · 0.95

Calls 2

repositionCaretMethod · 0.95
updateMethod · 0.45

Tested by

no test coverage detected