Searched refs:IntProperty (Results 1 - 21 of 21) sorted by relevance

/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DDetailsParallax.java37 final IntProperty mFrameTop;
38 final IntProperty mFrameBottom;
58 public Parallax.IntProperty getOverviewRowTop() {
66 public Parallax.IntProperty getOverviewRowBottom() {
H A DParallax.java38 * Parallax<IntProperty> parallax = new Parallax<IntProperty>() {...};
47 * list of {@link PropertyMarkerValue} which defines the range of {@link Parallax.IntProperty} or
52 * App may subclass {@link Parallax.IntProperty} or {@link Parallax.FloatProperty} to supply
58 * <li>FloatProperty and IntProperty cannot be mixed in one Parallax</li>
75 * @param <PropertyT> Subclass of {@link Parallax.IntProperty} or {@link Parallax.FloatProperty}
81 * @param <PropertyT> Class of the property, e.g. {@link IntProperty} or {@link FloatProperty}.
99 * IntProperty provide access to an index based integer type property inside
100 * {@link Parallax}. The IntProperty typically represents UI element position inside
103 public static class IntProperty extend class in class:Parallax
125 public IntProperty(String name, int index) { method in class:Parallax.IntProperty
[all...]
H A DRecyclerViewParallax.java53 * Subclass of {@link Parallax.IntProperty}. Using this Property, users can track a
60 public static final class ChildPositionProperty extends Parallax.IntProperty {
152 source.setIntPropertyValue(getIndex(), IntProperty.UNKNOWN_AFTER);
159 source.setIntPropertyValue(getIndex(), IntProperty.UNKNOWN_AFTER);
161 source.setIntPropertyValue(getIndex(), IntProperty.UNKNOWN_BEFORE);
H A DDetailsParallaxDrawable.java172 Parallax.IntProperty frameTop = parallax.getOverviewRowTop();
173 Parallax.IntProperty frameBottom = parallax.getOverviewRowBottom();
H A DParallaxEffect.java22 import android.support.v17.leanback.widget.Parallax.IntProperty;
238 * This method is expected to get the current value of the single {@link IntProperty} or
241 * @return Current value of the single {@link IntProperty} or {@link FloatProperty}.
299 Number currentValue = ((IntProperty) mMarkerValues.get(0).getProperty()).get(source);
331 if (currentValue == IntProperty.UNKNOWN_AFTER) {
345 } else if (lastValue != IntProperty.UNKNOWN_BEFORE) {
/frameworks/base/core/java/android/util/
H A DIntProperty.java27 public abstract class IntProperty<T> extends Property<T, Integer> { class in inherits:Property
29 public IntProperty(String name) { method in class:IntProperty
/frameworks/support/v17/leanback/tests/java/android/support/v17/leanback/widget/
H A DParallaxIntTest.java32 Parallax<Parallax.IntProperty> mSource;
41 mSource = new Parallax<Parallax.IntProperty>() {
49 public IntProperty createProperty(String name, int index) {
50 return new IntProperty(name, index);
58 Parallax.IntProperty var1 = mSource.addProperty("var1");
69 Parallax.IntProperty var1 = mSource.addProperty("var1");
80 Parallax.IntProperty var1 = mSource.addProperty("var1");
91 Parallax.IntProperty var1 = mSource.addProperty("var1");
106 Parallax.IntProperty var1 = mSource.addProperty("var1");
107 Parallax.IntProperty var
[all...]
H A DParallaxIntEffectTest.java39 Parallax<Parallax.IntProperty> mSource;
51 mSource = new Parallax<Parallax.IntProperty>() {
59 public IntProperty createProperty(String name, int index) {
60 return new IntProperty(name, index);
69 Parallax.IntProperty var1 = mSource.addProperty("var1");
117 var1.setValue(mSource, Parallax.IntProperty.UNKNOWN_BEFORE);
123 var1.setValue(mSource, Parallax.IntProperty.UNKNOWN_AFTER);
132 Parallax.IntProperty var1 = mSource.addProperty("var1");
143 Parallax.IntProperty var1 = mSource.addProperty("var1");
144 Parallax.IntProperty var
[all...]
/frameworks/base/services/core/java/com/android/server/display/
H A DRampAnimator.java20 import android.util.IntProperty;
29 private final IntProperty<T> mProperty;
44 public RampAnimator(T object, IntProperty<T> property) {
H A DDisplayPowerState.java25 import android.util.IntProperty;
109 public static final IntProperty<DisplayPowerState> SCREEN_BRIGHTNESS =
110 new IntProperty<DisplayPowerState>("screenBrightness") {
/frameworks/support/v17/leanback/src/android/support/v17/leanback/graphics/
H A DFitWidthBitmapDrawable.java28 import android.util.IntProperty;
212 // use IntProperty
232 static IntProperty<FitWidthBitmapDrawable> getVerticalOffsetIntProperty() {
233 return new IntProperty<FitWidthBitmapDrawable>("verticalOffset") {
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DDetailsBackgroundVideoHelper.java88 Parallax.IntProperty frameTop = mDetailsParallax.getOverviewRowTop();
/frameworks/base/core/java/android/animation/
H A DPropertyValuesHolder.java22 import android.util.IntProperty;
1155 private IntProperty mIntProperty;
1172 if (property instanceof IntProperty) {
1173 mIntProperty = (IntProperty) mProperty;
1185 if (property instanceof IntProperty) {
1186 mIntProperty = (IntProperty) mProperty;
1192 if (property instanceof IntProperty) {
1193 mIntProperty = (IntProperty) property;
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
H A DUtilities.java33 import android.util.IntProperty;
52 new IntProperty<Drawable>("drawableAlpha") {
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskViewTransform.java24 import android.util.IntProperty;
/frameworks/base/core/java/android/widget/
H A DFastScroller.java35 import android.util.IntProperty;
1611 private static Property<View, Integer> LEFT = new IntProperty<View>("left") {
1627 private static Property<View, Integer> TOP = new IntProperty<View>("top") {
1643 private static Property<View, Integer> RIGHT = new IntProperty<View>("right") {
1659 private static Property<View, Integer> BOTTOM = new IntProperty<View>("bottom") {
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarOverlayLayout.java31 import android.util.IntProperty;
148 new IntProperty<ActionBarOverlayLayout>("actionBarHideOffset") {
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
H A DTaskStack.java47 import android.util.IntProperty;
296 private static final IntProperty<ViewState> HINT_ALPHA =
297 new IntProperty<ViewState>("drawableAlpha") {
/frameworks/base/graphics/java/android/graphics/drawable/
H A DVectorDrawable.java39 import android.util.IntProperty;
1682 new IntProperty<VFullPath> ("strokeColor") {
1708 new IntProperty<VFullPath>("fillColor") {
/frameworks/base/config/
H A Dpreloaded-classes1233 android.icu.impl.UCharacterProperty$IntProperty
2191 android.util.IntProperty
H A Dcompiled-classes-phone2098 android.icu.impl.UCharacterProperty$IntProperty
4254 android.util.IntProperty

Completed in 354 milliseconds