Home | History | Annotate | Download | only in terminal

Lines Matching defs:bottomMargin

56   private int bottomMargin; /* bottom scroll margin */
374 if (l > bottomMargin) {
378 (l < topMargin ? 0 : (l > bottomMargin ? (bottomMargin + 1 < height ? bottomMargin + 1
381 (l > bottomMargin ? height - 1 : (l < topMargin ? (topMargin > 0 ? topMargin - 1 : 0)
382 : bottomMargin));
384 // System.out.println("l is "+l+", top is "+top+", bottom is "+bottom+", bottomargin is "+bottomMargin+", topMargin is "+topMargin);
515 int bottom = (l > bottomMargin ? height - 1 : (l < topMargin ? topMargin : bottomMargin + 1));
676 bottomMargin = l2;
687 if (l > bottomMargin) {
688 topMargin = bottomMargin;
689 bottomMargin = l;
696 if (bottomMargin >= height) {
697 bottomMargin = height - 1;
717 bottomMargin = topMargin;
720 bottomMargin = l;
725 if (bottomMargin >= height) {
726 bottomMargin = height - 1;
734 return bottomMargin;
869 bottomMargin = h - 1;