Home
last modified time | relevance | path

Searched refs:IntProperty (Results 1 – 25 of 30) sorted by relevance

12

/frameworks/support/v17/leanback/tests/java/android/support/v17/leanback/widget/
DParallaxIntTest.java32 Parallax<Parallax.IntProperty> mSource;
41 mSource = new Parallax<Parallax.IntProperty>() { in setUp()
49 public IntProperty createProperty(String name, int index) { in setUp()
50 return new IntProperty(name, index); in setUp()
58 Parallax.IntProperty var1 = mSource.addProperty("var1"); in testVariable()
69 Parallax.IntProperty var1 = mSource.addProperty("var1"); in testFixedKeyValue()
80 Parallax.IntProperty var1 = mSource.addProperty("var1"); in testFractionOfKeyValue()
91 Parallax.IntProperty var1 = mSource.addProperty("var1"); in testFixedKeyValueWithFraction()
106 Parallax.IntProperty var1 = mSource.addProperty("var1"); in testVerifyIntPropertys_wrongOrder()
107 Parallax.IntProperty var2 = mSource.addProperty("var2"); in testVerifyIntPropertys_wrongOrder()
[all …]
DParallaxIntEffectTest.java39 Parallax<Parallax.IntProperty> mSource;
51 mSource = new Parallax<Parallax.IntProperty>() { in setUp()
59 public IntProperty createProperty(String name, int index) { in setUp()
60 return new IntProperty(name, index); in setUp()
69 Parallax.IntProperty var1 = mSource.addProperty("var1"); in testOneVariable()
117 var1.setValue(mSource, Parallax.IntProperty.UNKNOWN_BEFORE); in testOneVariable()
123 var1.setValue(mSource, Parallax.IntProperty.UNKNOWN_AFTER); in testOneVariable()
132 Parallax.IntProperty var1 = mSource.addProperty("var1"); in testVerifyKeyValueOfSameVariableInDesendantOrder()
143 Parallax.IntProperty var1 = mSource.addProperty("var1"); in testTwoVariable()
144 Parallax.IntProperty var2 = mSource.addProperty("var2"); in testTwoVariable()
[all …]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
DDetailsParallax.java37 final IntProperty mFrameTop;
38 final IntProperty mFrameBottom;
58 public Parallax.IntProperty getOverviewRowTop() { in getOverviewRowTop()
66 public Parallax.IntProperty getOverviewRowBottom() { in getOverviewRowBottom()
DParallax.java103 public static class IntProperty extends Property<Parallax, Integer> { class in Parallax
125 public IntProperty(String name, int index) { in IntProperty() method in Parallax.IntProperty
228 static class IntPropertyMarkerValue extends PropertyMarkerValue<IntProperty> {
232 IntPropertyMarkerValue(IntProperty property, int value) { in IntPropertyMarkerValue()
236 IntPropertyMarkerValue(IntProperty property, int value, float fractionOfMax) { in IntPropertyMarkerValue()
456 if (property instanceof IntProperty) { in addProperty()
465 mValues[newPropertyIndex] = IntProperty.UNKNOWN_AFTER; in addProperty()
500 } else if (last == IntProperty.UNKNOWN_BEFORE && v == IntProperty.UNKNOWN_AFTER) { in verifyIntProperties()
618 if (ranges[0].getProperty() instanceof IntProperty) { in addEffect()
DRecyclerViewParallax.java60 public static final class ChildPositionProperty extends Parallax.IntProperty {
152 source.setIntPropertyValue(getIndex(), IntProperty.UNKNOWN_AFTER); in updateValue()
159 source.setIntPropertyValue(getIndex(), IntProperty.UNKNOWN_AFTER); in updateValue()
161 source.setIntPropertyValue(getIndex(), IntProperty.UNKNOWN_BEFORE); in updateValue()
DParallaxEffect.java22 import android.support.v17.leanback.widget.Parallax.IntProperty;
299 Number currentValue = ((IntProperty) mMarkerValues.get(0).getProperty()).get(source); in calculateDirectValue()
331 if (currentValue == IntProperty.UNKNOWN_AFTER) { in calculateFraction()
345 } else if (lastValue != IntProperty.UNKNOWN_BEFORE) { in calculateFraction()
DDetailsParallaxDrawable.java172 Parallax.IntProperty frameTop = parallax.getOverviewRowTop(); in connect()
173 Parallax.IntProperty frameBottom = parallax.getOverviewRowBottom(); in connect()
/frameworks/base/core/java/android/util/
DIntProperty.java27 public abstract class IntProperty<T> extends Property<T, Integer> { class
29 public IntProperty(String name) { in IntProperty() method in IntProperty
/frameworks/base/services/core/java/com/android/server/display/
DRampAnimator.java20 import android.util.IntProperty;
29 private final IntProperty<T> mProperty;
44 public RampAnimator(T object, IntProperty<T> property) { in RampAnimator()
DDisplayPowerState.java24 import android.util.IntProperty;
107 public static final IntProperty<DisplayPowerState> SCREEN_BRIGHTNESS =
108 new IntProperty<DisplayPowerState>("screenBrightness") {
/frameworks/support/v17/leanback/src/android/support/v17/leanback/graphics/
DFitWidthBitmapDrawable.java28 import android.util.IntProperty;
232 static IntProperty<FitWidthBitmapDrawable> getVerticalOffsetIntProperty() { in getVerticalOffsetIntProperty()
233 return new IntProperty<FitWidthBitmapDrawable>("verticalOffset") { in getVerticalOffsetIntProperty()
/frameworks/base/core/java/android/animation/
DPropertyValuesHolder.java22 import android.util.IntProperty;
1155 private IntProperty mIntProperty;
1172 if (property instanceof IntProperty) { in IntPropertyValuesHolder()
1173 mIntProperty = (IntProperty) mProperty; in IntPropertyValuesHolder()
1185 if (property instanceof IntProperty) { in IntPropertyValuesHolder()
1186 mIntProperty = (IntProperty) mProperty; in IntPropertyValuesHolder()
1192 if (property instanceof IntProperty) { in setProperty()
1193 mIntProperty = (IntProperty) property; in setProperty()
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
DUtilities.java33 import android.util.IntProperty;
52 new IntProperty<Drawable>("drawableAlpha") {
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
DDetailsBackgroundVideoHelper.java88 Parallax.IntProperty frameTop = mDetailsParallax.getOverviewRowTop(); in startParallax()
/frameworks/base/core/java/android/widget/
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/packages/SystemUI/src/com/android/systemui/recents/views/
DTaskViewTransform.java24 import android.util.IntProperty;
/frameworks/base/core/java/com/android/internal/widget/
DActionBarOverlayLayout.java31 import android.util.IntProperty;
148 new IntProperty<ActionBarOverlayLayout>("actionBarHideOffset") {
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
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/
DVectorDrawable.java38 import android.util.IntProperty;
1675 new IntProperty<VFullPath> ("strokeColor") {
1701 new IntProperty<VFullPath>("fillColor") {
/frameworks/base/
Dpreloaded-classes107 [Landroid.icu.impl.UCharacterProperty$IntProperty;
1446 android.icu.impl.UCharacterProperty$IntProperty
2286 android.util.IntProperty
/frameworks/support/api/
D26.0.0-alpha1.txt3388 method public android.support.v17.leanback.widget.Parallax.IntProperty getOverviewRowBottom();
3389 method public android.support.v17.leanback.widget.Parallax.IntProperty getOverviewRowTop();
4056 …llax<IntPropertyT extends android.support.v17.leanback.widget.Parallax.IntProperty> extends androi…
4065 public static class Parallax.IntProperty extends android.util.Property {
4066 ctor public Parallax.IntProperty(java.lang.String, int);
4078 …lic Parallax.IntPropertyMarkerValue(android.support.v17.leanback.widget.Parallax.IntProperty, int);
4079 …allax.IntPropertyMarkerValue(android.support.v17.leanback.widget.Parallax.IntProperty, int, float);
4320 …ewParallax.ChildPositionProperty extends android.support.v17.leanback.widget.Parallax.IntProperty {
D25.3.0.txt2997 method public android.support.v17.leanback.widget.Parallax.IntProperty getOverviewRowBottom();
2998 method public android.support.v17.leanback.widget.Parallax.IntProperty getOverviewRowTop();
3652 public static class Parallax.IntProperty extends android.util.Property {
3653 ctor public Parallax.IntProperty(java.lang.String, int);
3897 …ewParallax.ChildPositionProperty extends android.support.v17.leanback.widget.Parallax.IntProperty {
D25.4.0.txt3045 method public android.support.v17.leanback.widget.Parallax.IntProperty getOverviewRowBottom();
3046 method public android.support.v17.leanback.widget.Parallax.IntProperty getOverviewRowTop();
3700 public static class Parallax.IntProperty extends android.util.Property {
3701 ctor public Parallax.IntProperty(java.lang.String, int);
3945 …ewParallax.ChildPositionProperty extends android.support.v17.leanback.widget.Parallax.IntProperty {
D26.0.0-beta1.txt4172 method public android.support.v17.leanback.widget.Parallax.IntProperty getOverviewRowBottom();
4173 method public android.support.v17.leanback.widget.Parallax.IntProperty getOverviewRowTop();
4827 public static class Parallax.IntProperty extends android.util.Property {
4828 ctor public Parallax.IntProperty(java.lang.String, int);
5134 …ewParallax.ChildPositionProperty extends android.support.v17.leanback.widget.Parallax.IntProperty {
D26.0.0-SNAPSHOT.txt4261 method public android.support.v17.leanback.widget.Parallax.IntProperty getOverviewRowBottom();
4262 method public android.support.v17.leanback.widget.Parallax.IntProperty getOverviewRowTop();
4920 public static class Parallax.IntProperty extends android.util.Property {
4921 ctor public Parallax.IntProperty(java.lang.String, int);
5240 …ewParallax.ChildPositionProperty extends android.support.v17.leanback.widget.Parallax.IntProperty {

12