Searched defs:tileMode (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/graphics/java/android/graphics/
H A DLinearGradient.java59 int colors[], float positions[], int tileMode);
61 int color0, int color1, int tileMode);
58 nativeCreate1(float x0, float y0, float x1, float y1, int colors[], float positions[], int tileMode) argument
60 nativeCreate2(float x0, float y0, float x1, float y1, int color0, int color1, int tileMode) argument
H A DRadialGradient.java62 int colors[], float positions[], int tileMode);
64 int color0, int color1, int tileMode);
61 nativeCreate1(float x, float y, float radius, int colors[], float positions[], int tileMode) argument
63 nativeCreate2(float x, float y, float radius, int color0, int color1, int tileMode) argument
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DShader_Delegate.java58 * @param tileMode the tile mode int value
61 public static TileMode getTileMode(int tileMode) { argument
63 if (tm.nativeInt == tileMode) {
H A DGradient_Delegate.java84 protected GradientPaint(int[] colors, float[] positions, TileMode tileMode) { argument
87 mTileMode = tileMode;
H A DRadialGradient_Delegate.java58 int colors[], float positions[], int tileMode) {
60 colors, positions, Shader_Delegate.getTileMode(tileMode));
66 int color0, int color1, int tileMode) {
68 tileMode);
57 nativeCreate1(float x, float y, float radius, int colors[], float positions[], int tileMode) argument
65 nativeCreate2(float x, float y, float radius, int color0, int color1, int tileMode) argument
H A DLinearGradient_Delegate.java59 int colors[], float positions[], int tileMode) {
61 colors, positions, Shader_Delegate.getTileMode(tileMode));
68 int color0, int color1, int tileMode) {
70 tileMode);
57 nativeCreate1( float x0, float y0, float x1, float y1, int colors[], float positions[], int tileMode) argument
66 nativeCreate2( float x0, float y0, float x1, float y1, int color0, int color1, int tileMode) argument
/frameworks/base/core/jni/android/graphics/
H A DShader.cpp82 jintArray colorArray, jfloatArray posArray, int tileMode)
105 static_cast<SkShader::TileMode>(tileMode));
114 int color0, int color1, int tileMode)
124 SkShader* s = SkGradientShader::CreateLinear(pts, colors, NULL, 2, (SkShader::TileMode)tileMode);
133 jintArray colorArray, jfloatArray posArray, int tileMode)
156 static_cast<SkShader::TileMode>(tileMode));
166 int color0, int color1, int tileMode)
176 2, (SkShader::TileMode)tileMode);
80 LinearGradient_create1(JNIEnv* env, jobject, float x0, float y0, float x1, float y1, jintArray colorArray, jfloatArray posArray, int tileMode) argument
112 LinearGradient_create2(JNIEnv* env, jobject, float x0, float y0, float x1, float y1, int color0, int color1, int tileMode) argument
131 RadialGradient_create1(JNIEnv* env, jobject, float x, float y, float radius, jintArray colorArray, jfloatArray posArray, int tileMode) argument
164 RadialGradient_create2(JNIEnv* env, jobject, float x, float y, float radius, int color0, int color1, int tileMode) argument

Completed in 122 milliseconds