Searched defs:native_drawColor (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/graphics/java/android/graphics/
H A DCanvas.java811 native_drawColor(mNativeCanvas, color);
822 native_drawColor(mNativeCanvas, color, mode.nativeInt);
1672 private static native void native_drawColor(int nativeCanvas, int color); method in class:Canvas
1673 private static native void native_drawColor(int nativeCanvas, int color, method in class:Canvas
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DCanvas_Delegate.java600 native_drawColor(nativeCanvas, 0xFF000000 | r << 16 | (g&0xFF) << 8 | (b&0xFF),
607 native_drawColor(nativeCanvas, a << 24 | (r&0xFF) << 16 | (g&0xFF) << 8 | (b&0xFF),
612 /*package*/ static void native_drawColor(int nativeCanvas, int color) { method in class:Canvas_Delegate
613 native_drawColor(nativeCanvas, color, PorterDuff.Mode.SRC_OVER.nativeInt);
617 /*package*/ static void native_drawColor(int nativeCanvas, final int color, final int mode) { method in class:Canvas_Delegate

Completed in 2468 milliseconds