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

  /frameworks/base/graphics/java/android/graphics/
AvoidXfermode.java 31 Mode(int nativeInt) {
32 this.nativeInt = nativeInt;
34 final int nativeInt;
56 native_instance = nativeCreate(opColor, tolerance, mode.nativeInt);
PorterDuff.java 61 Mode(int nativeInt) {
62 this.nativeInt = nativeInt;
68 public final int nativeInt;
PorterDuffXfermode.java 32 native_instance = nativeCreateXfermode(mode.nativeInt);
Shader.java 58 TileMode(int nativeInt) {
59 this.nativeInt = nativeInt;
61 final int nativeInt;
BitmapShader.java 46 init(nativeCreate(b, tileX.nativeInt, tileY.nativeInt));
Region.java 44 Op(int nativeInt) {
45 this.nativeInt = nativeInt;
51 public final int nativeInt;
260 op.nativeInt);
269 op.nativeInt);
286 op.nativeInt);
295 region2.mNativeRegion, op.nativeInt);
Path.java 210 nativeInt = ni;
213 final int nativeInt;
240 native_setFillType(mNativePath, ft.nativeInt);
250 return (ft & FillType.INVERSE_WINDING.nativeInt) != 0;
258 ft ^= FillType.INVERSE_WINDING.nativeInt;
494 nativeInt = ni;
496 final int nativeInt;
532 native_addRect(mNativePath, left, top, right, bottom, dir.nativeInt);
552 native_addOval(mNativePath, left, top, right, bottom, dir.nativeInt);
565 native_addCircle(mNativePath, x, y, radius, dir.nativeInt);
    [all...]
PorterDuffColorFilter.java 103 native_instance = native_CreatePorterDuffFilter(mColor, mMode.nativeInt);
LinearGradient.java 68 init(nativeCreate1(x0, y0, x1, y1, colors, positions, tile.nativeInt));
90 init(nativeCreate2(x0, y0, x1, y1, color0, color1, tile.nativeInt));
RadialGradient.java 72 init(nativeCreate1(centerX, centerY, radius, colors, stops, tileMode.nativeInt));
95 init(nativeCreate2(centerX, centerY, radius, centerColor, edgeColor, tileMode.nativeInt));
Paint.java 336 Style(int nativeInt) {
337 this.nativeInt = nativeInt;
339 final int nativeInt;
362 private Cap(int nativeInt) {
363 this.nativeInt = nativeInt;
365 final int nativeInt;
386 private Join(int nativeInt) {
387 this.nativeInt = nativeInt
    [all...]
Bitmap.java 230 nativeReconfigure(mNativeBitmap, width, height, config.nativeInt, mBuffer.length,
445 final int nativeInt;
453 this.nativeInt = ni;
557 Bitmap b = nativeCopy(mNativeBitmap, config.nativeInt, isMutable);
812 Bitmap bm = nativeCreate(null, 0, width, width, height, config.nativeInt, true);
    [all...]
ComposeShader.java 73 mode.nativeInt));
Canvas.java 706 op.nativeInt);
719 op.nativeInt);
731 Region.Op.INTERSECT.nativeInt);
743 Region.Op.INTERSECT.nativeInt);
763 return native_clipRect(mNativeCanvasWrapper, left, top, right, bottom, op.nativeInt);
781 Region.Op.INTERSECT.nativeInt);
799 Region.Op.INTERSECT.nativeInt);
810 return native_clipPath(mNativeCanvasWrapper, path.ni(), op.nativeInt);
838 return native_clipRegion(mNativeCanvasWrapper, region.ni(), op.nativeInt);
883 EdgeType(int nativeInt) {
    [all...]
Matrix.java 555 ScaleToFit(int nativeInt) {
556 this.nativeInt = nativeInt;
558 final int nativeInt;
575 return native_setRectToRect(native_instance, src, dst, stf.nativeInt);
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Canvas_Delegate.java 580 if (style == Paint.Style.FILL.nativeInt ||
581 style == Paint.Style.FILL_AND_STROKE.nativeInt) {
586 if (style == Paint.Style.STROKE.nativeInt ||
587 style == Paint.Style.FILL_AND_STROKE.nativeInt) {
606 if (style == Paint.Style.FILL.nativeInt ||
607 style == Paint.Style.FILL_AND_STROKE.nativeInt) {
612 if (style == Paint.Style.STROKE.nativeInt ||
613 style == Paint.Style.FILL_AND_STROKE.nativeInt) {
648 if (style == Paint.Style.FILL.nativeInt ||
649 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) {
Bitmap_Delegate.java 369 return delegate.mConfig.nativeInt;
612 long nativeInt = sManager.addNewDelegate(delegate);
620 return new Bitmap(nativeInt, null /* buffer */, width, height, density, isMutable,
Matrix_Delegate.java 548 if (stf != ScaleToFit.FILL.nativeInt) {
559 if (stf == ScaleToFit.CENTER.nativeInt || stf == ScaleToFit.END.nativeInt) {
568 if (stf == ScaleToFit.CENTER.nativeInt) {
    [all...]
Path_Delegate.java 158 return pathDelegate.mFillType.nativeInt;
527 if (direction == d.nativeInt) {
Paint_Delegate.java     [all...]
  /frameworks/base/core/java/android/view/
GLES20Canvas.java 281 return nClipPath(mRenderer, path.mNativePath, Region.Op.INTERSECT.nativeInt);
286 return nClipPath(mRenderer, path.mNativePath, op.nativeInt);
293 return nClipRect(mRenderer, left, top, right, bottom, Region.Op.INTERSECT.nativeInt);
301 return nClipRect(mRenderer, left, top, right, bottom, op.nativeInt);
306 return nClipRect(mRenderer, left, top, right, bottom, Region.Op.INTERSECT.nativeInt);
315 Region.Op.INTERSECT.nativeInt);
320 return nClipRect(mRenderer, rect.left, rect.top, rect.right, rect.bottom, op.nativeInt);
326 Region.Op.INTERSECT.nativeInt);
331 return nClipRect(mRenderer, rect.left, rect.top, rect.right, rect.bottom, op.nativeInt);
336 return nClipRegion(mRenderer, region.mNativeRegion, Region.Op.INTERSECT.nativeInt);
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
GcSnapshot.java 487 if (regionOp == Region.Op.INTERSECT.nativeInt && mLayers.size() > 0) {
498 if (regionOp == Region.Op.REPLACE.nativeInt) {
  /frameworks/base/core/java/android/widget/
ImageView.java 635 nativeInt = ni;
637 final int nativeInt;
869 return sS2FArray[st.nativeInt - 1];
    [all...]

Completed in 906 milliseconds