/frameworks/base/graphics/java/android/graphics/ |
H A D | AvoidXfermode.java | 31 Mode(int nativeInt) { argument 32 this.nativeInt = nativeInt; 34 final int nativeInt; field in class:AvoidXfermode.Mode 56 native_instance = nativeCreate(opColor, tolerance, mode.nativeInt);
|
H A D | PorterDuff.java | 61 Mode(int nativeInt) { argument 62 this.nativeInt = nativeInt; 68 public final int nativeInt; field in class:PorterDuff.Mode
|
H A D | PorterDuffColorFilter.java | 28 native_instance = native_CreatePorterDuffFilter(srcColor, mode.nativeInt); 29 nativeColorFilter = nCreatePorterDuffFilter(native_instance, srcColor, mode.nativeInt);
|
H A D | BitmapShader.java | 46 native_instance = nativeCreate(b, tileX.nativeInt, tileY.nativeInt); 47 native_shader = nativePostCreate(native_instance, b, tileX.nativeInt, tileY.nativeInt);
|
H A D | PorterDuffXfermode.java | 32 native_instance = nativeCreateXfermode(mode.nativeInt);
|
H A D | Shader.java | 55 TileMode(int nativeInt) { argument 56 this.nativeInt = nativeInt; 58 final int nativeInt; field in class:Shader.TileMode
|
H A D | ComposeShader.java | 61 shaderB.native_shader, pdMode != null ? pdMode.nativeInt : 0); 81 mode.nativeInt); 83 shaderB.native_shader, mode.nativeInt);
|
H A D | LinearGradient.java | 68 native_instance = nativeCreate1(x0, y0, x1, y1, colors, positions, tile.nativeInt); 70 tile.nativeInt); 92 native_instance = nativeCreate2(x0, y0, x1, y1, color0, color1, tile.nativeInt); 94 tile.nativeInt);
|
H A D | RadialGradient.java | 68 native_instance = nativeCreate1(x, y, radius, colors, positions, tile.nativeInt); 70 tile.nativeInt); 93 native_instance = nativeCreate2(x, y, radius, color0, color1, tile.nativeInt); 95 tile.nativeInt);
|
H A D | Region.java | 44 Op(int nativeInt) { argument 45 this.nativeInt = nativeInt; 51 public final int nativeInt; field in class:Region.Op 260 op.nativeInt); 269 op.nativeInt); 286 op.nativeInt); 295 region2.mNativeRegion, op.nativeInt);
|
H A D | Path.java | 204 nativeInt = ni; 207 final int nativeInt; field in class:Path.FillType 234 native_setFillType(mNativePath, ft.nativeInt); 472 nativeInt = ni; 474 final int nativeInt; field in class:Path.Direction 502 native_addRect(mNativePath, rect, dir.nativeInt); 516 native_addRect(mNativePath, left, top, right, bottom, dir.nativeInt); 530 native_addOval(mNativePath, oval, dir.nativeInt); 543 native_addCircle(mNativePath, x, y, radius, dir.nativeInt); 574 native_addRoundRect(mNativePath, rect, rx, ry, dir.nativeInt); [all...] |
H A D | Paint.java | 352 Style(int nativeInt) { argument 353 this.nativeInt = nativeInt; 355 final int nativeInt; field in class:Paint.Style 378 private Cap(int nativeInt) { argument 379 this.nativeInt = nativeInt; 381 final int nativeInt; field in class:Paint.Cap 402 private Join(int nativeInt) { argument 403 this.nativeInt 405 final int nativeInt; field in class:Paint.Join 426 Align(int nativeInt) argument 429 final int nativeInt; field in class:Paint.Align [all...] |
H A D | Bitmap.java | 220 nativeReconfigure(mNativeBitmap, width, height, config.nativeInt, mBuffer.length); 444 final int nativeInt; field in class:Bitmap.Config 452 this.nativeInt = ni; 556 Bitmap b = nativeCopy(mNativeBitmap, config.nativeInt, isMutable); 810 Bitmap bm = nativeCreate(null, 0, width, width, height, config.nativeInt, true); 884 config.nativeInt, false); 956 CompressFormat(int nativeInt) { argument 957 this.nativeInt = nativeInt; 959 final int nativeInt; field in class:Bitmap.CompressFormat [all...] |
H A D | Canvas.java | 577 op.nativeInt); 590 op.nativeInt); 627 return native_clipRect(mNativeCanvas, left, top, right, bottom, op.nativeInt); 668 return native_clipPath(mNativeCanvas, path.ni(), op.nativeInt); 693 return native_clipRegion(mNativeCanvas, region.ni(), op.nativeInt); 735 EdgeType(int nativeInt) { argument 736 this.nativeInt = nativeInt; 742 public final int nativeInt; field in class:Canvas.EdgeType 874 native_drawColor(mNativeCanvas, color, mode.nativeInt); 1333 VertexMode(int nativeInt) argument 1340 public final int nativeInt; field in class:Canvas.VertexMode [all...] |
H A D | Matrix.java | 523 ScaleToFit(int nativeInt) { argument 524 this.nativeInt = nativeInt; 526 final int nativeInt; field in class:Matrix.ScaleToFit 543 return native_setRectToRect(native_instance, src, dst, stf.nativeInt);
|
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
H A D | Canvas_Delegate.java | 212 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); 679 if (style == Paint.Style.FILL.nativeInt || 680 style == Paint.Style.FILL_AND_STROKE.nativeInt) { 685 if (style == Paint.Style.STROKE.nativeInt || 686 style == Paint.Style.FILL_AND_STROKE.nativeInt) { 704 if (style == Paint.Style.FILL.nativeInt || 705 style == Paint.Style.FILL_AND_STROKE.nativeInt) { [all...] |
H A D | Shader_Delegate.java | 63 if (tm.nativeInt == tileMode) {
|
H A D | 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) {
|
H A D | PorterDuffXfermode_Delegate.java | 72 if (m.nativeInt == mode) {
|
H A D | Bitmap_Delegate.java | 370 return delegate.mConfig.nativeInt; 596 int nativeInt = sManager.addNewDelegate(delegate); 604 return new Bitmap(nativeInt, null /* buffer */, width, height, density, isMutable,
|
H A D | 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) {
|
H A D | Path_Delegate.java | 151 return pathDelegate.mFillType.nativeInt; 522 if (direction == d.nativeInt) {
|
/frameworks/base/core/java/android/view/ |
H A D | GLES20Canvas.java | 482 return nClipPath(mRenderer, path.mNativePath, Region.Op.INTERSECT.nativeInt); 487 return nClipPath(mRenderer, path.mNativePath, op.nativeInt); 494 return nClipRect(mRenderer, left, top, right, bottom, Region.Op.INTERSECT.nativeInt); 502 return nClipRect(mRenderer, left, top, right, bottom, op.nativeInt); 507 return nClipRect(mRenderer, left, top, right, bottom, Region.Op.INTERSECT.nativeInt); 516 Region.Op.INTERSECT.nativeInt); 521 return nClipRect(mRenderer, rect.left, rect.top, rect.right, rect.bottom, op.nativeInt); 527 Region.Op.INTERSECT.nativeInt); 532 return nClipRect(mRenderer, rect.left, rect.top, rect.right, rect.bottom, op.nativeInt); 537 return nClipRegion(mRenderer, region.mNativeRegion, Region.Op.INTERSECT.nativeInt); [all...] |
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/ |
H A D | GcSnapshot.java | 486 if (regionOp == Region.Op.INTERSECT.nativeInt && mLayers.size() > 0) { 497 if (regionOp == Region.Op.REPLACE.nativeInt) {
|
/frameworks/base/core/java/android/widget/ |
H A D | ImageView.java | 526 nativeInt = ni; 528 final int nativeInt; field in class:ImageView.ScaleType 756 return sS2FArray[st.nativeInt - 1];
|