Lines Matching refs:height

254             iconSize.height = icon.getIconHeight();
260 accSize.height = accFm.getHeight();
271 textSize.height =
276 textSize.height = fm.getHeight();
284 checkSize.height = checkIcon.getIconHeight();
289 arrowSize.height = arrowIcon.getIconHeight();
296 labelSize.height = max(checkSize.height, iconSize.height,
297 textSize.height, accSize.height, arrowSize.height);
307 labelSize.height = labelRect.height;
499 new Rectangle(iconSize.width, iconSize.height),
500 new Rectangle(textSize.width, textSize.height),
501 new Rectangle(accSize.width, accSize.height),
502 new Rectangle(checkSize.width, checkSize.height),
503 new Rectangle(arrowSize.width, arrowSize.height),
504 new Rectangle(labelSize.width, labelSize.height)
528 + (float)lr.labelRect.height/2
529 - (float)lr.accRect.height/2);
533 + (float)lr.labelRect.height/2
534 - (float)lr.arrowRect.height/2);
536 + (float)lr.labelRect.height/2
537 - (float)lr.checkRect.height/2);
545 * or (rect.y + rect.height) is out of viewRect bounds
551 } else if (r.y + r.height > viewRect.y + viewRect.height) {
552 delta = viewRect.y + viewRect.height - r.y - r.height;
754 + (float)lr.labelRect.height/2
755 - (float)lr.textRect.height/2);
757 + (float)lr.labelRect.height/2
758 - (float)lr.iconRect.height/2);
761 + (float)viewRect.height/2
762 - (float)lr.textRect.height/2);
764 + (float)viewRect.height/2
765 - (float)lr.iconRect.height/2);
769 + viewRect.height
770 - (float)lr.labelRect.height/2
771 - (float)lr.textRect.height/2);
773 + viewRect.height
774 - (float)lr.labelRect.height/2
775 - (float)lr.iconRect.height/2);
788 + (float)viewRect.height/2
789 - (float)lr.labelRect.height/2);
791 lr.labelRect.y = viewRect.y + viewRect.height
792 - lr.labelRect.height;
1272 private int height;
1279 public RectSize(int width, int height, int origWidth, int maxWidth) {
1281 this.height = height;
1291 return height;
1306 public void setHeight(int height) {
1307 this.height = height;
1319 return "[w=" + width + ",h=" + height + ",ow="