• Home
  • Raw
  • Download

Lines Matching refs:yPos

68                 Bitmap b, int xPos, int yPos, int w, int h);  in drawImage()  argument
70 int xPos, int yPos, int w, int h); in drawDecoration() argument
673 int yPos = mSpec.mCellSpacing + startRow * mBlockHeight; in paintDecoration() local
678 mDrawAdapter.drawDecoration(canvas, image, xPos, yPos, in paintDecoration()
685 yPos += mBlockHeight; in paintDecoration()
910 final int yPos = currentBlock * height; in doDraw() local
911 if (yPos >= scrollPos + thisHeight) { in doDraw()
917 blk.doDraw(canvas, 0, yPos); in doDraw()
919 drawEmptyBlock(canvas, 0, yPos, currentBlock); in doDraw()
933 private void drawEmptyBlock(Canvas canvas, int xPos, int yPos, int row) { in drawEmptyBlock() argument
935 canvas.drawRect(xPos, yPos, xPos + mBlockWidth, yPos + mBlockHeight, in drawEmptyBlock()
940 int y = yPos + mSpec.mCellSpacing; in drawEmptyBlock()
1075 final int yPos = spacing; in loadImageDone() local
1079 drawBitmap(image, b, xPos, yPos); in loadImageDone()
1102 IImage image, Bitmap b, int xPos, int yPos) { in drawBitmap() argument
1103 mDrawAdapter.drawImage(mCanvas, image, b, xPos, yPos, in drawBitmap()
1105 mCanvas.drawBitmap(mOutline, xPos, yPos, null); in drawBitmap()
1109 public void doDraw(Canvas canvas, int xPos, int yPos) { in doDraw() argument
1113 canvas.drawBitmap(mBitmap, xPos, yPos, null); in doDraw()
1118 canvas.drawRect(xPos, yPos, xPos + mBlockWidth, in doDraw()
1119 yPos + mBlockHeight, mBackgroundPaint); in doDraw()
1125 dstRect.offset(xPos, yPos); in doDraw()
1134 int y = yPos + mSpec.mCellSpacing; in doDraw()