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

/frameworks/base/graphics/java/android/graphics/drawable/
H A DRippleBackground.java49 private float mOpacity = 0; field in class:RippleBackground
56 return mOpacity > 0 || isHardwareAnimating();
64 final int alpha = (int) (origAlpha * mOpacity + 0.5f);
85 final int duration = (int) ((1 - mOpacity) * maxDuration);
108 final int fastEnterDuration = (int) ((1 - mOpacity) * OPACITY_ENTER_DURATION_FAST);
126 final int currentAlpha = (int) (mOpacity * targetAlpha + 0.5f);
135 final int fastEnterDuration = (int) ((1 - mOpacity) * OPACITY_ENTER_DURATION_FAST);
157 mOpacity = 0;
169 object.mOpacity = value;
175 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 DDrawableContainer.java654 int mOpacity; field in class:DrawableContainer.DrawableContainerState
717 mOpacity = orig.getOpacity();
1039 return mOpacity;
1053 mOpacity = op;
H A DLayerDrawable.java1770 private int mOpacity; field in class:LayerDrawable.LayerState
1796 mOpacity = orig.mOpacity;
1851 return mOpacity;
1881 mOpacity = op;
/frameworks/rs/java/tests/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 85 milliseconds