Searched defs:mOpacity (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/graphics/java/android/graphics/drawable/
H A DRippleBackground.java50 private float mOpacity = 0; field in class:RippleBackground
63 return mOpacity > 0 || isHardwareAnimating();
71 final int alpha = (int) (origAlpha * mOpacity + 0.5f);
92 final int duration = (int) ((1 - mOpacity) * maxDuration);
116 (int) ((1 - mOpacity) * OPACITY_ENTER_DURATION_FAST) : 0;
134 final int currentAlpha = (int) (mOpacity * targetAlpha + 0.5f);
143 (int) ((1 - mOpacity) * OPACITY_ENTER_DURATION_FAST) : 0;
170 mOpacity = 0;
182 object.mOpacity = value;
188 return object.mOpacity;
[all...]
H A DRippleForeground.java76 private float mOpacity = 1; field in class:RippleForeground
115 final int alpha = (int) (origAlpha * mOpacity + 0.5f);
215 return (int) (1000 * mOpacity / WAVE_OPACITY_DECAY_VELOCITY + 0.5f);
287 p.setAlpha((int) (p.getAlpha() * mOpacity + 0.5f));
323 mOpacity = 0;
425 object.mOpacity = value;
431 return object.mOpacity;
H A DAdaptiveIconDrawable.java953 private int mOpacity; field in class:AdaptiveIconDrawable.LayerState
975 mOpacity = orig.mOpacity;
1029 return mOpacity;
1058 mOpacity = op;
H A DDrawableContainer.java707 int mOpacity; field in class:DrawableContainer.DrawableContainerState
780 mOpacity = orig.mOpacity;
1155 return mOpacity;
1167 mOpacity = op;
H A DLayerDrawable.java1942 private int mOpacity; field in class:LayerDrawable.LayerState
1971 mOpacity = orig.mOpacity;
2070 return mOpacity;
2100 mOpacity = op;
/frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/engine/
H A DVolume.java55 return mLooks.get(name).mOpacity;
67 Log.v(LOGTAG, "mOpacity "+l.dblArrayToString(l.mOpacity));
72 int[][] mOpacity; field in class:Volume.Look
84 mOpacity = new int[opacitySplit.length][];
87 mOpacity[i] = readNumbers(opacitySplit[i]);
93 mOpacity = opacity;
121 return "mColor=" + dblArrayToString(mColor) + "\nmOpacity=" + dblArrayToString(mOpacity);
H A DMaterial.java76 public Opactiy[] mOpacity = new Opactiy[0]; field in class:Material
134 mOpacity = new Opactiy[2];
135 mOpacity[0] = new Opactiy();
136 mOpacity[0].mPos = start;
137 mOpacity[0].mValue = 0;
139 mOpacity[1] = new Opactiy();
140 mOpacity[1].mPos = end;
141 mOpacity[1].mValue = 1;
168 mOpacity = new Opactiy[opacity.length];
170 mOpacity[
[all...]

Completed in 128 milliseconds