Searched refs:lineWidth (Results 1 – 4 of 4) sorted by relevance
/frameworks/av/cmds/screenrecord/ |
D | Overlay.cpp | 341 const int lineWidth = 4; in doDrawInfoPage() local 344 glScissor(0, 0, width, lineWidth); in doDrawInfoPage() 346 glScissor(0, height - lineWidth, width, lineWidth); in doDrawInfoPage() 348 glScissor(0, 0, lineWidth, height); in doDrawInfoPage() 350 glScissor(width - lineWidth, 0, lineWidth, height); in doDrawInfoPage()
|
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/ |
D | GLES20Canvas.java | 497 int color, float lineWidth) { in draw() argument 498 prepareDraw(offset, color, lineWidth); in draw() 502 private void prepareDraw(int offset, int color, float lineWidth) { in prepareDraw() argument 505 if (lineWidth > 0) { in prepareDraw() 506 GLES20.glLineWidth(lineWidth); in prepareDraw()
|
/frameworks/base/core/java/android/view/ |
D | ViewGroup.java | 3044 int lineLength, int lineWidth) { in drawRectCorners() argument 3045 drawCorner(canvas, paint, x1, y1, lineLength, lineLength, lineWidth); in drawRectCorners() 3046 drawCorner(canvas, paint, x1, y2, lineLength, -lineLength, lineWidth); in drawRectCorners() 3047 drawCorner(canvas, paint, x2, y1, -lineLength, lineLength, lineWidth); in drawRectCorners() 3048 drawCorner(canvas, paint, x2, y2, -lineLength, -lineLength, lineWidth); in drawRectCorners() 3113 int lineWidth = dipsToPixels(1); in onDebugDraw() local 3117 paint, lineLength, lineWidth); in onDebugDraw()
|
/frameworks/base/core/java/android/widget/ |
D | TextView.java | 8133 final float lineWidth = mLayout.getLineWidth(0); in getRightFadingEdgeStrength() local 8134 return (lineWidth - textWidth) / getHorizontalFadingEdgeLength(); in getRightFadingEdgeStrength() 9409 final float lineWidth = textView.mLayout.getLineWidth(0); in start() local 9411 mGhostStart = lineWidth - textWidth + gap; in start() 9413 mGhostOffset = lineWidth + gap; in start() 9414 mFadeStop = lineWidth + textWidth / 6.0f; in start() 9415 mMaxFadeScroll = mGhostStart + lineWidth + lineWidth; in start()
|