/frameworks/base/graphics/java/android/graphics/ |
SweepGradient.java | 53 * @param color0 The color to use at the start of the sweep 56 public SweepGradient(float cx, float cy, int color0, int color1) { 57 native_instance = nativeCreate2(cx, cy, color0, color1); 58 native_shader = nativePostCreate2(native_instance, cx, cy, color0, color1); 62 private static native int nativeCreate2(float x, float y, int color0, int color1); 67 int color0, int color1);
|
LinearGradient.java | 49 @param color0 The color at the start of the gradient line. 53 public LinearGradient(float x0, float y0, float x1, float y1, int color0, int color1, 55 native_instance = nativeCreate2(x0, y0, x1, y1, color0, color1, tile.nativeInt); 56 native_shader = nativePostCreate2(native_instance, x0, y0, x1, y1, color0, color1, 63 int color0, int color1, int tileMode); 67 int color0, int color1, int tileMode);
|
RadialGradient.java | 51 @param color0 The color at the center of the circle. 56 int color0, int color1, TileMode tile) { 60 native_instance = nativeCreate2(x, y, radius, color0, color1, tile.nativeInt); 61 native_shader = nativePostCreate2(native_instance, x, y, radius, color0, color1, 68 int color0, int color1, int tileMode); 73 int color0, int color1, int tileMode);
|
/frameworks/native/opengl/libagl/ |
dxt.cpp | 130 * contains a transparent pixel (color0 < color1, code == 3). This 158 uint16_t color0 = colors & 0xffff; local 161 if (color0 < color1) { 224 uint16_t color0 = colors & 0xffff; local 230 if (color0 != prev_color0 || color1 != prev_color1) { 232 prev_color0 = color0; 235 int r0 = red(color0); 236 int g0 = green(color0); 237 int b0 = blue(color0); 247 c[0] = color0; 349 uint16_t color0 = colors & 0xffff; local 506 uint16_t color0 = colors & 0xffff; local [all...] |
/frameworks/base/core/jni/android/graphics/ |
Shader.cpp | 186 float x0, float y0, float x1, float y1, int color0, int color1, int tileMode) { 197 storedColors[0] = static_cast<uint32_t>(color0); 212 int color0, int color1, int tileMode) 219 colors[0] = color0; 262 int color0, int color1, int tileMode) { 267 colors[0] = color0; 315 float x, float y, float radius, int color0, int color1, int tileMode) { 322 storedColors[0] = static_cast<uint32_t>(color0); 365 int color0, int color1) { 367 colors[0] = color0; [all...] |
/external/skia/samplecode/ |
SampleVertices.cpp | 32 SkPMColor color0 = SkPreMultiplyARGB(0x80, 0x80, 0xff, 0x80); local 35 bm.eraseColor(color0); 38 pixels[0] = pixels[2] = color0;
|
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
LinearGradient_Delegate.java | 68 int color0, int color1, int tileMode) { 70 x0, y0, x1, y1, new int[] { color0, color1}, null /*positions*/, 85 int color0, int color1, int tileMode) {
|
RadialGradient_Delegate.java | 66 int color0, int color1, int tileMode) { 67 return nativeCreate1(x, y, radius, new int[] { color0, color1 }, null /*positions*/, 80 int color0, int color1, int tileMode) {
|
SweepGradient_Delegate.java | 61 /*package*/ static int nativeCreate2(float x, float y, int color0, int color1) { 62 return nativeCreate1(x, y, new int[] { color0, color1 }, null /*positions*/); 74 int color0, int color1) {
|
/prebuilts/sdk/10/ |
android.jar | |
/prebuilts/sdk/12/ |
android.jar | |
/prebuilts/sdk/14/ |
android.jar | |
/prebuilts/sdk/15/ |
android.jar | |
/prebuilts/sdk/4/ |
android.jar | |
/prebuilts/sdk/6/ |
android.jar | |
/prebuilts/sdk/current/ |
android.jar | |