Searched refs:nativeInt (Results 1 - 25 of 28) sorted by relevance

12

/frameworks/base/graphics/java/android/graphics/
H A DAvoidXfermode.java33 Mode(int nativeInt) { argument
34 this.nativeInt = nativeInt;
36 final int nativeInt; field in class:AvoidXfermode.Mode
H A DXfermode.java32 static final int DEFAULT = PorterDuff.Mode.SRC_OVER.nativeInt;
H A DPorterDuffXfermode.java32 porterDuffMode = mode.nativeInt;
H A DPorterDuff.java360 Mode(int nativeInt) { argument
361 this.nativeInt = nativeInt;
367 public final int nativeInt; field in class:PorterDuff.Mode
374 return mode.nativeInt;
H A DShader.java72 TileMode(int nativeInt) { argument
73 this.nativeInt = nativeInt;
75 final int nativeInt; field in class:Shader.TileMode
H A DBitmapShader.java44 this(bitmap, tileX.nativeInt, tileY.nativeInt);
H A DPorterDuffColorFilter.java112 return native_CreatePorterDuffFilter(mColor, mMode.nativeInt);
124 return (mColor == other.mColor && mMode.nativeInt == other.mMode.nativeInt);
H A DRegion.java44 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 DPath.java238 nativeInt = ni;
241 final int nativeInt; field in class:Path.FillType
268 nSetFillType(mNativePath, ft.nativeInt);
278 return (ft & FillType.INVERSE_WINDING.nativeInt) != 0;
286 ft ^= FillType.INVERSE_WINDING.nativeInt;
522 nativeInt = ni;
524 final int nativeInt; field in class:Path.Direction
560 nAddRect(mNativePath, left, top, right, bottom, dir.nativeInt);
580 nAddOval(mNativePath, left, top, right, bottom, dir.nativeInt);
593 nAddCircle(mNativePath, x, y, radius, dir.nativeInt);
[all...]
H A DRadialGradient.java106 mColors, mPositions, mTileMode.nativeInt);
109 mCenterColor, mEdgeColor, mTileMode.nativeInt);
H A DCanvas.java804 op.nativeInt);
828 op.nativeInt);
839 Region.Op.UNION.nativeInt);
851 Region.Op.INTERSECT.nativeInt);
863 Region.Op.DIFFERENCE.nativeInt);
875 Region.Op.INTERSECT.nativeInt);
887 Region.Op.DIFFERENCE.nativeInt);
919 return nClipRect(mNativeCanvasWrapper, left, top, right, bottom, op.nativeInt);
937 Region.Op.INTERSECT.nativeInt);
952 Region.Op.DIFFERENCE.nativeInt);
1104 EdgeType(int nativeInt) argument
1111 public final int nativeInt; field in class:Canvas.EdgeType
1251 VertexMode(int nativeInt) argument
1258 public final int nativeInt; field in class:Canvas.VertexMode
[all...]
H A DLinearGradient.java106 mColors, mPositions, mTileMode.nativeInt);
109 mColor0, mColor1, mTileMode.nativeInt);
H A DComposeShader.java58 this(shaderA, shaderB, mode.nativeInt);
H A DBitmap.java272 nativeReconfigure(mNativePtr, width, height, config.nativeInt, mRequestPremultiplied);
533 final int nativeInt; field in class:Bitmap.Config
540 this.nativeInt = ni;
662 Bitmap b = nativeCopy(mNativePtr, config.nativeInt, isMutable);
698 Bitmap b = nativeCopyAshmemConfig(mNativePtr, config.nativeInt);
1046 bm = nativeCreate(null, 0, width, width, height, config.nativeInt, true, null, null);
1059 bm = nativeCreate(null, 0, width, width, height, config.nativeInt, true,
1140 config.nativeInt, false, null, null);
1304 CompressFormat(int nativeInt) { argument
1305 this.nativeInt
1307 final int nativeInt; field in class:Bitmap.CompressFormat
[all...]
H A DPaint.java384 Style(int nativeInt) { argument
385 this.nativeInt = nativeInt;
387 final int nativeInt; field in class:Paint.Style
410 private Cap(int nativeInt) { argument
411 this.nativeInt = nativeInt;
413 final int nativeInt; field in class:Paint.Cap
434 private Join(int nativeInt) { argument
435 this.nativeInt
437 final int nativeInt; field in class:Paint.Join
458 Align(int nativeInt) argument
461 final int nativeInt; field in class:Paint.Align
[all...]
H A DMatrix.java552 ScaleToFit(int nativeInt) { argument
553 this.nativeInt = nativeInt;
556 final int nativeInt; field in class:Matrix.ScaleToFit
572 return nSetRectToRect(native_instance, src, dst, stf.nativeInt);
/frameworks/layoutlib/bridge/src/android/graphics/
H A DBaseCanvas_Delegate.java215 if (style == Paint.Style.FILL.nativeInt ||
216 style == Paint.Style.FILL_AND_STROKE.nativeInt) {
221 if (style == Paint.Style.STROKE.nativeInt ||
222 style == Paint.Style.FILL_AND_STROKE.nativeInt) {
238 if (style == Paint.Style.FILL.nativeInt ||
239 style == Paint.Style.FILL_AND_STROKE.nativeInt) {
244 if (style == Paint.Style.STROKE.nativeInt ||
245 style == Paint.Style.FILL_AND_STROKE.nativeInt) {
277 if (style == Paint.Style.FILL.nativeInt ||
278 style == Paint.Style.FILL_AND_STROKE.nativeInt) {
[all...]
H A DShader_Delegate.java66 if (tm.nativeInt == tileMode) {
H A DRegion_Delegate.java80 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 DBitmap_Delegate.java382 return delegate.mConfig.nativeInt;
685 long nativeInt = sManager.addNewDelegate(delegate);
693 return new Bitmap(nativeInt, width, height, density, isMutable,
H A DMatrix_Delegate.java554 if (stf != ScaleToFit.FILL.nativeInt) {
565 if (stf == ScaleToFit.CENTER.nativeInt || stf == ScaleToFit.END.nativeInt) {
574 if (stf == ScaleToFit.CENTER.nativeInt) {
H A DPath_Delegate.java168 return pathDelegate.mFillType.nativeInt;
564 if (direction == d.nativeInt) {
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DGcSnapshot.java490 if (regionOp == Region.Op.INTERSECT.nativeInt && mLayers.size() > 0) {
501 if (regionOp == Region.Op.REPLACE.nativeInt) {
/frameworks/base/core/java/android/view/
H A DRecordingCanvas.java213 nDrawColor(mNativeCanvasWrapper, color, PorterDuff.Mode.SRC_OVER.nativeInt);
218 nDrawColor(mNativeCanvasWrapper, color, mode.nativeInt);
540 nDrawVertices(mNativeCanvasWrapper, mode.nativeInt, vertexCount, verts,
/frameworks/base/core/java/android/widget/
H A DImageView.java799 nativeInt = ni;
801 final int nativeInt; field in class:ImageView.ScaleType
1051 return sS2FArray[st.nativeInt - 1];

Completed in 199 milliseconds

12