Searched defs:ePos (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DInlineTextBox.cpp156 int ePos = std::min(endPos - m_start, int(m_len) + (isLineBreak() ? 0 : 1)); local
157 return (sPos < ePos);
209 int ePos = std::min(endPos - m_start, (int)m_len); local
211 if (sPos > ePos)
222 bool respectHyphen = ePos == m_len && hasHyphen();
227 if (sPos || ePos != static_cast<int>(m_len))
228 r = enclosingIntRect(font.selectionRectForText(textRun, startingPoint, selHeight, sPos, ePos));
576 void InlineTextBox::selectionStartEnd(int& sPos, int& ePos) const
591 ePos = std::min(endPos - m_start, (int)m_len);
597 int sPos, ePos; local
655 int ePos = std::min(endPos - m_start, static_cast<int>(m_len)); local
1024 int ePos = std::min(marker->endOffset() - m_start, (unsigned)m_len); local
[all...]
/external/pdfium/core/src/fpdftext/
H A Dfpdf_text_int.cpp2722 int ePos = str.Find(L'.'); local
2723 if (ePos == -1) {
2726 while (ePos != -1) {
2727 strtemp = strtemp.Right(strtemp.GetLength() - ePos - 1);
2728 ePos = strtemp.Find('.');
2730 ePos = strtemp.GetLength();
2731 for (i = 0; i < ePos; i++) {
2736 str = str.Left(str.GetLength() - ePos + i + 1);
2737 ePos = ePos
[all...]

Completed in 1035 milliseconds