Searched defs:paint (Results 151 - 157 of 157) sorted by relevance

1234567

/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java867 private void drawLine(Canvas graphics, int x1, int y1, int x2, int y2, Paint paint) { argument
870 graphics.drawLine(width - x1, y1, width - x2, y2, paint);
872 graphics.drawLine(x1, y1, x2, y2, paint);
/frameworks/base/core/java/android/webkit/
H A DWebView.java2874 public void setLayerType(int layerType, Paint paint) { argument
2875 super.setLayerType(layerType, paint);
2876 mProvider.getViewDelegate().setLayerType(layerType, paint);
/frameworks/base/graphics/java/android/graphics/
H A DPaint.java54 // The approximate size of a native paint object.
224 // These flags are always set on a new/reset paint, even if flags 0 is passed.
370 * stroke-related settings in the paint.
375 * the stroke-related fields on the paint.
381 * the paint. This mode can give unexpected results if the geometry
468 * Create a new paint with default settings.
475 * Create a new paint with the specified flags. Use setFlags() to change
476 * these after the paint is created.
493 * Create a new paint, initialized with the attributes in the specified
494 * paint paramete
499 Paint(Paint paint) argument
552 setClassVariablesFrom(Paint paint) argument
2753 nInitWithPaint(long paint) argument
[all...]
/frameworks/opt/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java390 final TextPaint paint = getPaint();
395 paint.getTextBounds(textHeightSample, 0, textHeightSample.length(), mRect);
799 private CharSequence ellipsizeText(CharSequence text, TextPaint paint, float maxWidth) { argument
800 paint.setTextSize(mChipFontSize);
804 return TextUtils.ellipsize(text, paint, maxWidth,
812 * @param paint The paint to use to draw the bitmap.
814 private ChipBitmapContainer createChipBitmap(RecipientEntry contact, TextPaint paint) { argument
815 paint.setColor(getDefaultChipTextColor(contact));
816 ChipBitmapContainer bitmapContainer = createChipBitmap(contact, paint,
825 createChipBitmap(RecipientEntry contact, TextPaint paint, Drawable overrideBackgroundDrawable, int backgroundColor) argument
[all...]
/frameworks/base/core/java/android/view/
H A DViewGroup.java3822 private static void fillRect(Canvas canvas, Paint paint, int x1, int y1, int x2, int y2) { argument
3830 canvas.drawRect(x1, y1, x2, y2, paint);
3838 private static void drawCorner(Canvas c, Paint paint, int x1, int y1, int dx, int dy, int lw) { argument
3839 fillRect(c, paint, x1, y1, x1 + dx, y1 + lw * sign(dy));
3840 fillRect(c, paint, x1, y1, x1 + lw * sign(dx), y1 + dy);
3843 private static void drawRectCorners(Canvas canvas, int x1, int y1, int x2, int y2, Paint paint, argument
3845 drawCorner(canvas, paint, x1, y1, lineLength, lineLength, lineWidth);
3846 drawCorner(canvas, paint, x1, y2, lineLength, -lineLength, lineWidth);
3847 drawCorner(canvas, paint, x2, y1, -lineLength, lineLength, lineWidth);
3848 drawCorner(canvas, paint, x
3851 fillDifference(Canvas canvas, int x2, int y2, int x3, int y3, int dx1, int dy1, int dx2, int dy2, Paint paint) argument
3869 onDebugDrawMargins(Canvas canvas, Paint paint) argument
7571 onDebugDraw(View view, Canvas canvas, Paint paint) argument
8077 onDebugDraw(View view, Canvas canvas, Paint paint) argument
8438 drawRect(Canvas canvas, Paint paint, int x1, int y1, int x2, int y2) argument
[all...]
H A DView.java14181 * associated with a {@link #setLayerPaint(android.graphics.Paint) layer paint}, setting an
14182 * alpha value less than 1.0 will supersede the alpha of the layer paint.</p>
17738 * properties of the paint are taken into account when composing the layer:</p>
17746 * {@link #setAlpha(float)}, the alpha value of the layer's paint is superseded
17756 * @param paint The paint used to compose the layer. This argument is optional
17768 public void setLayerType(int layerType, @Nullable Paint paint) { argument
17777 setLayerPaint(paint);
17789 mLayerPaint = mLayerType == LAYER_TYPE_NONE ? null : paint;
17807 * properties of the paint ar
17823 setLayerPaint(@ullable Paint paint) argument
25571 public final Paint paint; field in class:View.ScrollabilityCache
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 360 milliseconds

1234567