Lines Matching defs:height
84 int x, int y, int width, int height));
372 int width, height;
389 &width, &height);
399 y -= height/2;
403 y -= height;
407 y -= height;
410 y -= height;
413 y -= height/2;
419 y -= height/2;
430 bmapPtr->header.y2 = y + height;
453 DisplayBitmap(canvas, itemPtr, display, drawable, x, y, width, height)
459 int x, y, width, height; /* Describes region of canvas that
489 if ((y+height) < bmapPtr->header.y2) {
490 bmapHeight = y + height - bmapPtr->header.y1;
725 int width, height, rowsAtOnce, rowsThisTime;
741 &width, &height);
743 case TK_ANCHOR_NW: y -= height; break;
744 case TK_ANCHOR_N: x -= width/2.0; y -= height; break;
745 case TK_ANCHOR_NE: x -= width; y -= height; break;
746 case TK_ANCHOR_E: x -= width; y -= height/2.0; break;
750 case TK_ANCHOR_W: y -= height/2.0; break;
751 case TK_ANCHOR_CENTER: x -= width/2.0; y -= height/2.0; break;
761 x, y, width, height, -width,"0 rlineto closepath");
791 sprintf(buffer, "%.15g %.15g translate\n", x, y+height);
793 for (curRow = 0; curRow < height; curRow += rowsAtOnce) {
795 if (rowsThisTime > (height - curRow)) {
796 rowsThisTime = height - curRow;