Searched defs:bgColor (Results 1 - 8 of 8) sorted by relevance

/frameworks/support/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/
H A DItem.java29 public final int bgColor; field in class:Item
31 Item(int id, String text, int bgColor) { argument
34 this.bgColor = bgColor;
44 && this.bgColor == item.bgColor
/frameworks/base/core/java/android/text/
H A DTextPaint.java31 public int bgColor; field in class:TextPaint
68 bgColor = tp.bgColor;
85 return bgColor == other.bgColor
/frameworks/support/compat/src/androidTest/java/androidx/core/graphics/drawable/
H A DIconCompatTest.java78 public static void verifyBadgeBitmap(Intent intent, int bgColor, int badgeColor) { argument
83 assertEquals(bgColor, bitmap.getPixel(2, 2));
84 assertEquals(bgColor, bitmap.getPixel(w - 2, 2));
85 assertEquals(bgColor, bitmap.getPixel(2, h - 2));
/frameworks/base/core/jni/android/graphics/
H A DGIFMovie.cpp393 SkColor bgColor = SkPackARGB32(0, 0, 0, 0); local
396 bgColor = SkColorSetARGB(0xFF, col.Red, col.Green, col.Blue);
407 fPaintingColor = bgColor;
/frameworks/ex/framesequence/jni/
H A DFrameSequence_gif.cpp262 Color8888 bgColor = mFrameSequence.getBackgroundColor(); local
265 outputPtr[y * outputPixelStride + x] = bgColor;
/frameworks/base/core/java/android/view/
H A DViewStructure.java194 * @param bgColor The background color, packed as 0xAARRGGBB.
197 public abstract void setTextStyle(float size, int fgColor, int bgColor, int style); argument
H A DSurfaceView.java924 * @param bgColor An opaque color to fill the background. Alpha component will be ignored.
927 public void setResizeBackgroundColor(int bgColor) { argument
928 mSurfaceControl.setBackgroundColor(bgColor);
1226 private void setBackgroundColor(int bgColor) { argument
1227 final float[] colorComponents = new float[] { Color.red(bgColor) / 255.f,
1228 Color.green(bgColor) / 255.f, Color.blue(bgColor) / 255.f };
/frameworks/base/core/java/android/app/assist/
H A DAssistStructure.java1722 public void setTextStyle(float size, int fgColor, int bgColor, int style) { argument
1725 t.mTextBackgroundColor = bgColor;

Completed in 41 milliseconds