| 654 | } |
| 655 | |
| 656 | void ResultIterator::AppendUTF8ParagraphText(STRING *text) const { |
| 657 | ResultIterator it(*this); |
| 658 | it.RestartParagraph(); |
| 659 | it.MoveToLogicalStartOfTextline(); |
| 660 | if (it.Empty(RIL_WORD)) return; |
| 661 | do { |
| 662 | it.IterateAndAppendUTF8TextlineText(text); |
| 663 | } while (it.it_->block() != NULL && !it.IsAtBeginningOf(RIL_PARA)); |
| 664 | } |
| 665 | |
| 666 | bool ResultIterator::BidiDebug(int min_level) const { |
| 667 | int debug_level = 1; |
no test coverage detected