Lines Matching defs:right

1865 	// from the left end, so when the point is near the right end it's very
1996 // whitespace follows (not perfect, but seems to do the right thing most
2113 selRect.right = endPt.x - 1;
2122 selRect.right = std::max(fTextRect.right,
2123 bounds.right - fLayoutData->rightInset);
2133 selRect.right = std::max(fTextRect.right,
2134 bounds.right - fLayoutData->rightInset);
2143 selRect.right = endPt.x - 1;
2160 scrollBy.x = point.x - bounds.right;
2161 else if (point.x > bounds.right)
2166 float rightMax = fTextRect.right + fLayoutData->rightInset;
2167 if (bounds.right + scrollBy.x > rightMax)
2168 scrollBy.x = rightMax - bounds.right;
2236 rect.right = Bounds().right;
2263 fTextRect.right -= fLayoutData->rightInset;
2266 // and rewrap (potentially adjusting the right and the bottom of the text
2278 BTextView::SetInsets(float left, float top, float right, float bottom)
2282 && fLayoutData->rightInset == right
2288 fLayoutData->rightInset = right;
2568 // We need to reset the right inset, as otherwise the auto-resize would
2718 fTextRect.right = fTextRect.left + width;
2724 fTextRect.right -= fLayoutData->rightInset;
3362 // shrink selection from the right
3382 // extend selection to the right
3594 // shrink selection from the right
3634 // extend selection to the right
3930 fTextRect.right = Bounds().right - fLayoutData->rightInset;
3943 // move right edge
3944 fTextRect.right = fTextRect.left + fMinTextRectWidth;
3949 fTextRect.left = fTextRect.right - fMinTextRectWidth;
3970 // text rect right must be greater than left
3971 if (fTextRect.right <= fTextRect.left)
3972 fTextRect.right = fTextRect.left + 1;
4558 clipRect.right = std::max(fTextRect.right,
4559 bounds.right - fLayoutData->rightInset);
4595 // erase only to the right of startOffset
4658 Bounds().right,
4669 caretPoint.x = std::min(caretPoint.x, fTextRect.right);
4672 caretRect.left = caretRect.right = caretPoint.x;
5002 if (fWhere.x > bounds.right)
5003 scrollBy.x = fWhere.x - bounds.right;
5008 if (fTextRect.left > bounds.left && fTextRect.right < bounds.right)
5086 float maxWidth = fTextRect.right + fLayoutData->rightInset - viewWidth;
5117 float right = oldWidth - newWidth;
5120 fContainerView->MoveBy(roundf(right / 2), 0);
5122 fContainerView->MoveBy(right, 0);
6016 fLayoutData->rightInset = bounds.right >= rect.right
6017 ? bounds.right - rect.right : 0;
6058 rect.right -= fLayoutData->rightInset;
6089 rect.right += fLayoutData->rightInset;