/frameworks/base/graphics/java/android/graphics/ |
AvoidXfermode.java | 30 Mode(int nativeInt) { 31 this.nativeInt = nativeInt; 33 final int nativeInt; 55 native_instance = nativeCreate(opColor, tolerance, mode.nativeInt);
|
PorterDuff.java | 61 Mode(int nativeInt) { 62 this.nativeInt = nativeInt; 68 public final int nativeInt;
|
BitmapShader.java | 41 native_instance = nativeCreate(b, tileX.nativeInt, tileY.nativeInt); 42 native_shader = nativePostCreate(native_instance, b, tileX.nativeInt, tileY.nativeInt);
|
Shader.java | 55 TileMode(int nativeInt) { 56 this.nativeInt = nativeInt; 58 final int nativeInt;
|
PorterDuffColorFilter.java | 28 native_instance = native_CreatePorterDuffFilter(srcColor, mode.nativeInt); 29 nativeColorFilter = nCreatePorterDuffFilter(native_instance, srcColor, mode.nativeInt);
|
PorterDuffXfermode.java | 32 native_instance = nativeCreateXfermode(mode.nativeInt);
|
LinearGradient.java | 39 native_instance = nativeCreate1(x0, y0, x1, y1, colors, positions, tile.nativeInt); 41 tile.nativeInt); 55 native_instance = nativeCreate2(x0, y0, x1, y1, color0, color1, tile.nativeInt); 57 tile.nativeInt);
|
RadialGradient.java | 42 native_instance = nativeCreate1(x, y, radius, colors, positions, tile.nativeInt); 44 tile.nativeInt); 60 native_instance = nativeCreate2(x, y, radius, color0, color1, tile.nativeInt); 62 tile.nativeInt);
|
ComposeShader.java | 47 shaderB.native_shader, pdMode != null ? pdMode.nativeInt : 0); 65 mode.nativeInt); 67 shaderB.native_shader, mode.nativeInt);
|
Path.java | 112 nativeInt = ni; 114 final int nativeInt; 141 native_setFillType(mNativePath, ft.nativeInt); 379 nativeInt = ni; 381 final int nativeInt; 409 native_addRect(mNativePath, rect, dir.nativeInt); 423 native_addRect(mNativePath, left, top, right, bottom, dir.nativeInt); 437 native_addOval(mNativePath, oval, dir.nativeInt); 450 native_addCircle(mNativePath, x, y, radius, dir.nativeInt); 481 native_addRoundRect(mNativePath, rect, rx, ry, dir.nativeInt); [all...] |
Region.java | 37 Op(int nativeInt) { 38 this.nativeInt = nativeInt; 44 public final int nativeInt; 252 op.nativeInt); 261 op.nativeInt); 278 op.nativeInt); 287 region2.mNativeRegion, op.nativeInt);
|
Paint.java | 250 Style(int nativeInt) { 251 this.nativeInt = nativeInt; 253 final int nativeInt; 276 private Cap(int nativeInt) { 277 this.nativeInt = nativeInt; 279 final int nativeInt; 300 private Join(int nativeInt) { 301 this.nativeInt = nativeInt [all...] |
Canvas.java | 536 op.nativeInt); 550 op.nativeInt); 589 op.nativeInt); 632 return native_clipPath(mNativeCanvas, path.ni(), op.nativeInt); 657 return native_clipRegion(mNativeCanvas, region.ni(), op.nativeInt); 691 EdgeType(int nativeInt) { 692 this.nativeInt = nativeInt; 698 public final int nativeInt; 713 return native_quickReject(mNativeCanvas, rect, type.nativeInt); [all...] |
Bitmap.java | 307 final int nativeInt; 315 this.nativeInt = ni; 403 Bitmap b = nativeCopy(mNativeBitmap, config.nativeInt, isMutable); 605 Bitmap bm = nativeCreate(null, 0, width, width, height, config.nativeInt, true); 650 config.nativeInt, false); 688 CompressFormat(int nativeInt) { 689 this.nativeInt = nativeInt; 691 final int nativeInt; 726 return nativeCompress(mNativeBitmap, format.nativeInt, quality [all...] |
Matrix.java | 516 ScaleToFit(int nativeInt) { 517 this.nativeInt = nativeInt; 519 final int nativeInt; 536 return native_setRectToRect(native_instance, src, dst, stf.nativeInt);
|
BitmapFactory.java | 617 nativeSetDefaultConfig(config.nativeInt);
|
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
Canvas_Delegate.java | 214 return canvasDelegate.clipRect(left, top, right, bottom, Region.Op.INTERSECT.nativeInt); 595 PorterDuff.Mode.SRC_OVER.nativeInt); 602 PorterDuff.Mode.SRC_OVER.nativeInt); 607 native_drawColor(nativeCanvas, color, PorterDuff.Mode.SRC_OVER.nativeInt); 676 if (style == Paint.Style.FILL.nativeInt || 677 style == Paint.Style.FILL_AND_STROKE.nativeInt) { 682 if (style == Paint.Style.STROKE.nativeInt || 683 style == Paint.Style.FILL_AND_STROKE.nativeInt) { 700 if (style == Paint.Style.FILL.nativeInt || 701 style == Paint.Style.FILL_AND_STROKE.nativeInt) { [all...] |
Shader_Delegate.java | 63 if (tm.nativeInt == tileMode) {
|
Region_Delegate.java | 80 if (regionOp == Region.Op.DIFFERENCE.nativeInt) { 91 } else if (regionOp == Region.Op.INTERSECT.nativeInt) { 102 } else if (regionOp == Region.Op.UNION.nativeInt) { 113 } else if (regionOp == Region.Op.XOR.nativeInt) { 124 } else if (regionOp == Region.Op.REVERSE_DIFFERENCE.nativeInt) {
|
PorterDuffXfermode_Delegate.java | 72 if (m.nativeInt == mode) {
|
Bitmap_Delegate.java | 324 return delegate.mConfig.nativeInt; 524 int nativeInt = sManager.addNewDelegate(delegate); 527 return new Bitmap(nativeInt, null /* buffer */, isMutable, null /*ninePatchChunk*/, density);
|
Matrix_Delegate.java | 603 if (stf != ScaleToFit.FILL.nativeInt) { 614 if (stf == ScaleToFit.CENTER.nativeInt || stf == ScaleToFit.END.nativeInt) { 623 if (stf == ScaleToFit.CENTER.nativeInt) { [all...] |
Path_Delegate.java | 151 return pathDelegate.mFillType.nativeInt; 516 if (direction == d.nativeInt) {
|
/frameworks/base/core/java/android/view/ |
GLES20Canvas.java | 397 return nClipRect(mRenderer, left, top, right, bottom, Region.Op.INTERSECT.nativeInt); 405 return nClipRect(mRenderer, left, top, right, bottom, op.nativeInt); 410 return nClipRect(mRenderer, left, top, right, bottom, Region.Op.INTERSECT.nativeInt); 419 Region.Op.INTERSECT.nativeInt); 424 return nClipRect(mRenderer, rect.left, rect.top, rect.right, rect.bottom, op.nativeInt); 430 Region.Op.INTERSECT.nativeInt); 435 return nClipRect(mRenderer, rect.left, rect.top, rect.right, rect.bottom, op.nativeInt); 457 return nQuickReject(mRenderer, left, top, right, bottom, type.nativeInt); 794 nDrawColor(mRenderer, color, mode.nativeInt); [all...] |
/frameworks/base/core/java/android/widget/ |
ImageView.java | 464 nativeInt = ni; 466 final int nativeInt; 642 return sS2FArray[st.nativeInt - 1]; [all...] |