Lines Matching defs:tc

1046      * @param tc the text component for which this UI is installed
1058 public Rectangle modelToView(JTextComponent tc, int pos) throws BadLocationException {
1059 return modelToView(tc, pos, Position.Bias.Forward);
1068 * @param tc the text component for which this UI is installed
1080 public Rectangle modelToView(JTextComponent tc, int pos, Position.Bias bias)
1083 return (Rectangle) modelToView(tc, pos, bias, false);
1087 public Rectangle2D modelToView2D(JTextComponent tc, int pos,
1091 return modelToView(tc, pos, bias, true);
1094 private Rectangle2D modelToView(JTextComponent tc, int pos,
1125 * @param tc the text component for which this UI is installed
1137 public int viewToModel(JTextComponent tc, Point pt) {
1138 return viewToModel(tc, pt, discardBias);
1147 * @param tc the text component for which this UI is installed
1159 public int viewToModel(JTextComponent tc, Point pt,
1161 return viewToModel(tc, pt.x, pt.y, biasReturn);
1165 public int viewToModel2D(JTextComponent tc, Point2D pt,
1167 return viewToModel(tc, (float) pt.getX(), (float) pt.getY(), biasReturn);
1170 private int viewToModel(JTextComponent tc, float x, float y,
1228 * @param tc the text component for which this UI is installed
1233 public void damageRange(JTextComponent tc, int p0, int p1) {
1234 damageRange(tc, p0, p1, Position.Bias.Forward, Position.Bias.Backward);
1273 * @param tc the text component for which this UI is installed
1277 public EditorKit getEditorKit(JTextComponent tc) {
1294 * @param tc the text component for which this UI is installed
1298 public View getRootView(JTextComponent tc) {