• Home
  • Raw
  • Download

Lines Matching refs:mBounder

220     BoundsCanvas(CommonCheck* bounder) : mBounder(*bounder) {  in BoundsCanvas()
230 mBounder.setType(CommonCheck::kDrawPaint_Type); in drawPaint()
236 mBounder.setType(CommonCheck::kDrawPoints_Type); in drawPoints()
241 mBounder.setType(CommonCheck::kDrawRect_Type); in drawRect()
246 mBounder.setType(CommonCheck::kDrawPath_Type); in drawPath()
252 mBounder.setType(CommonCheck::kDrawBitmap_Type); in commonDrawBitmap()
253 mBounder.setIsOpaque(bitmap.isOpaque()); in commonDrawBitmap()
259 mBounder.setType(CommonCheck::kDrawSprite_Type); in drawSprite()
260 mBounder.setIsOpaque(bitmap.isOpaque()); in drawSprite()
266 mBounder.setEmpty(); in drawText()
267 mBounder.setType(CommonCheck::kDrawGlyph_Type); in drawText()
269 mBounder.doRect(CommonCheck::kDrawText_Type); in drawText()
274 mBounder.setEmpty(); in drawPosText()
275 mBounder.setType(CommonCheck::kDrawGlyph_Type); in drawPosText()
277 mBounder.doRect(CommonCheck::kDrawPosText_Type); in drawPosText()
283 mBounder.setEmpty(); in drawPosTextH()
284 mBounder.setType(CommonCheck::kDrawGlyph_Type); in drawPosTextH()
286 if (mBounder.mUnion.isEmpty()) in drawPosTextH()
295 mBounder.mUnion.fTop = SkScalarFloor(upDown[0].fY); in drawPosTextH()
296 mBounder.mUnion.fBottom = SkScalarFloor(upDown[1].fY); in drawPosTextH()
298 mBounder.doRect(CommonCheck::kDrawPosTextH_Type); in drawPosTextH()
304 mBounder.setEmpty(); in drawTextOnPath()
305 mBounder.setType(CommonCheck::kDrawGlyph_Type); in drawTextOnPath()
307 mBounder.doRect(CommonCheck::kDrawTextOnPath_Type); in drawTextOnPath()
311 mBounder.setType(CommonCheck::kDrawPicture_Type); in drawPicture()
320 mBounder.setAllOpaque(false); in saveLayer()
329 mBounder.setAllOpaque(true); in restore()
335 CommonCheck& mBounder; member in android::BoundsCanvas