Home
last modified time | relevance | path

Searched refs:start_index (Results 1 – 2 of 2) sorted by relevance

/packages/providers/MediaProvider/pdf/framework/libs/pdfClient/
Dpage.cc172 std::string Page::GetTextUtf8(const int start_index, const int stop_index) { in GetTextUtf8() argument
174 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() argument
229 for (int index = start_index; index < stop_index; index++) { in GetTextBounds()
634 int start_index = GetWordStartIndex(index); in IsRtlAtIndex() local
636 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() local
701 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 …]
Dpage.h150 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);