| 69 | } |
| 70 | |
| 71 | static int count_resolved(const CBMFileResult *r) { |
| 72 | int n = 0; |
| 73 | for (int i = 0; i < r->resolved_calls.count; i++) { |
| 74 | if (r->resolved_calls.items[i].confidence >= 0.5f) n++; |
| 75 | } |
| 76 | return n; |
| 77 | } |
| 78 | |
| 79 | /* ── Category 1: java.lang.String resolution ─────────────────────── */ |
| 80 |