| 1422 | } |
| 1423 | |
| 1424 | int DUContext::findUseAt(const CursorInRevision& position) const |
| 1425 | { |
| 1426 | ENSURE_CAN_READ |
| 1427 | |
| 1428 | if (!range().contains(position)) |
| 1429 | return -1; |
| 1430 | |
| 1431 | for (unsigned int a = 0; a < d_func()->m_usesSize(); ++a) |
| 1432 | if (d_func()->m_uses()[a].m_range.contains(position)) |
| 1433 | return a; |
| 1434 | |
| 1435 | return -1; |
| 1436 | } |
| 1437 | |
| 1438 | bool DUContext::inSymbolTable() const |
| 1439 | { |
no test coverage detected