(self, f, prefix, address)
| 3497 | f.write("</tr>") |
| 3498 | |
| 3499 | def output_comment_box(self, f, prefix, address): |
| 3500 | comment = self.comments.get_comment(address) |
| 3501 | value = "" |
| 3502 | if comment: |
| 3503 | value = " value=\"%s\"" % html.escape(comment) |
| 3504 | f.write("<input type=text class=ci " |
| 3505 | "id=%s-address-0x%s onchange=c()%s>" % |
| 3506 | (prefix, |
| 3507 | self.reader.FormatIntPtr(address), |
| 3508 | value)) |
| 3509 | |
| 3510 | MAX_FOUND_RESULTS = 100 |
| 3511 |
no test coverage detected