HomeSort by relevance Sort by last modified time
    Searched refs:nativeCreate1 (Results 1 - 8 of 8) sorted by null

  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
ComposeShader_Delegate.java 66 /*package*/ static long nativeCreate1(long native_shaderA, long native_shaderB,
LinearGradient_Delegate.java 57 /*package*/ static long nativeCreate1(LinearGradient thisGradient,
69 return nativeCreate1(thisGradient,
RadialGradient_Delegate.java 57 /*package*/ static long nativeCreate1(float x, float y, float radius,
67 return nativeCreate1(x, y, radius, new int[] { color0, color1 }, null /*positions*/,
SweepGradient_Delegate.java 55 /*package*/ static long nativeCreate1(float x, float y, int colors[], float positions[]) {
62 return nativeCreate1(x, y, new int[] { color0, color1 }, null /*positions*/);
  /frameworks/base/graphics/java/android/graphics/
ComposeShader.java 56 init(nativeCreate1(shaderA.getNativeInstance(), shaderB.getNativeInstance(),
97 private static native long nativeCreate1(long native_shaderA, long native_shaderB,
SweepGradient.java 65 init(nativeCreate1(cx, cy, colors, positions));
107 private static native long nativeCreate1(float x, float y, int colors[], float positions[]);
LinearGradient.java 68 init(nativeCreate1(x0, y0, x1, y1, colors, positions, tile.nativeInt));
115 private native long nativeCreate1(float x0, float y0, float x1, float y1,
RadialGradient.java 72 init(nativeCreate1(centerX, centerY, radius, colors, stops, tileMode.nativeInt));
120 private static native long nativeCreate1(float x, float y, float radius,

Completed in 58 milliseconds