| 90 | } |
| 91 | |
| 92 | bool TessResultRenderer::EndDocument() { |
| 93 | if (!happy_) return false; |
| 94 | bool ok = EndDocumentHandler(); |
| 95 | if (next_) { |
| 96 | ok = next_->EndDocument() && ok; |
| 97 | } |
| 98 | return ok; |
| 99 | } |
| 100 | |
| 101 | void TessResultRenderer::AppendString(const char* s) { |
| 102 | AppendData(s, strlen(s)); |
no outgoing calls
no test coverage detected