Lines Matching refs:textPaint
1346 TextPaint textPaint = getPaint(); in drawEdgeOutline() local
1348 Paint.Style previousStyle = textPaint.getStyle(); in drawEdgeOutline()
1349 Paint.Join previousJoin = textPaint.getStrokeJoin(); in drawEdgeOutline()
1350 float previousWidth = textPaint.getStrokeWidth(); in drawEdgeOutline()
1353 textPaint.setStyle(Paint.Style.FILL_AND_STROKE); in drawEdgeOutline()
1354 textPaint.setStrokeJoin(Paint.Join.ROUND); in drawEdgeOutline()
1355 textPaint.setStrokeWidth(mOutlineWidth); in drawEdgeOutline()
1362 textPaint.setStyle(previousStyle); in drawEdgeOutline()
1363 textPaint.setStrokeJoin(previousJoin); in drawEdgeOutline()
1364 textPaint.setStrokeWidth(previousWidth); in drawEdgeOutline()
1375 TextPaint textPaint = getPaint(); in drawEdgeRaisedOrDepressed() local
1377 Paint.Style previousStyle = textPaint.getStyle(); in drawEdgeRaisedOrDepressed()
1378 textPaint.setStyle(Paint.Style.FILL); in drawEdgeRaisedOrDepressed()
1397 textPaint.setStyle(previousStyle); in drawEdgeRaisedOrDepressed()