Searched refs:start_index (Results 1 – 2 of 2) sorted by relevance
172 std::string Page::GetTextUtf8(const int start_index, const int stop_index) { in GetTextUtf8() argument174 for (int i = start_index; i < stop_index; i++) { in GetTextUtf8()226 int Page::GetTextBounds(const int start_index, const int stop_index, vector<Rectangle_i>* rects) { in GetTextBounds() argument229 for (int index = start_index; index < stop_index; index++) { in GetTextBounds()634 int start_index = GetWordStartIndex(index); in IsRtlAtIndex() local636 int word_length = stop_index - start_index; in IsRtlAtIndex()641 Rectangle_i start_bounds = GetCharBounds(start_index); in IsRtlAtIndex()700 int start_index = index; in GetWordStartIndex() local701 while (start_index > 0 && !IsWordBreak(GetUnicode(start_index - 1))) { in GetWordStartIndex()702 --start_index; // Move start_index to the start of the word. in GetWordStartIndex()[all …]
150 std::string GetTextUtf8(const int start_index, const int stop_index);174 int GetTextBounds(const int start_index, const int stop_index, std::vector<Rectangle_i>* rects);