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

Method index

examples/triage/entry.cpp:76–85  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

74
75
76QModelIndex GenericEntryModel::index(int row, int col, const QModelIndex& parent) const
77{
78 if (parent.isValid())
79 return QModelIndex();
80 if (row >= (int)m_entries.size())
81 return QModelIndex();
82 if (col >= ColumnCount)
83 return QModelIndex();
84 return createIndex(row, col);
85}
86
87
88QModelIndex GenericEntryModel::parent(const QModelIndex&) const

Callers 3

TriageFilePickerMethod · 0.45
selectFirstItemMethod · 0.45
activateFirstItemMethod · 0.45

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected