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

1 2

  /frameworks/support/leanback/src/main/java/androidx/leanback/widget/
DetailsParallax.java 37 final IntProperty mFrameTop;
38 final IntProperty mFrameBottom;
58 public Parallax.IntProperty getOverviewRowTop() {
66 public Parallax.IntProperty getOverviewRowBottom() {
Parallax.java 39 * Parallax<IntProperty> parallax = new Parallax<IntProperty>() {...};
48 * list of {@link PropertyMarkerValue} which defines the range of {@link Parallax.IntProperty} or
53 * App may subclass {@link Parallax.IntProperty} or {@link Parallax.FloatProperty} to supply
59 * <li>FloatProperty and IntProperty cannot be mixed in one Parallax</li>
76 * @param <PropertyT> Subclass of {@link Parallax.IntProperty} or {@link Parallax.FloatProperty}
82 * @param <PropertyT> Class of the property, e.g. {@link IntProperty} or {@link FloatProperty}.
100 * IntProperty provide access to an index based integer type property inside
101 * {@link Parallax}. The IntProperty typically represents UI element position inside
104 public static class IntProperty extends Property<Parallax, Integer>
    [all...]
RecyclerViewParallax.java 54 * Subclass of {@link Parallax.IntProperty}. Using this Property, users can track a
61 public static final class ChildPositionProperty extends Parallax.IntProperty {
153 source.setIntPropertyValue(getIndex(), IntProperty.UNKNOWN_AFTER);
160 source.setIntPropertyValue(getIndex(), IntProperty.UNKNOWN_AFTER);
162 source.setIntPropertyValue(getIndex(), IntProperty.UNKNOWN_BEFORE);
DetailsParallaxDrawable.java 175 Parallax.IntProperty frameTop = parallax.getOverviewRowTop();
176 Parallax.IntProperty frameBottom = parallax.getOverviewRowBottom();
ParallaxEffect.java 25 import androidx.leanback.widget.Parallax.IntProperty;
243 * This method is expected to get the current value of the single {@link IntProperty} or
246 * @return Current value of the single {@link IntProperty} or {@link FloatProperty}.
304 Number currentValue = ((IntProperty) mMarkerValues.get(0).getProperty()).get(source);
336 if (currentValue == IntProperty.UNKNOWN_AFTER) {
350 } else if (lastValue != IntProperty.UNKNOWN_BEFORE) {
  /frameworks/base/core/java/android/util/
IntProperty.java 27 public abstract class IntProperty<T> extends Property<T, Integer> {
29 public IntProperty(String name) {
  /frameworks/support/leanback/src/androidTest/java/androidx/leanback/widget/
ParallaxIntTest.java 32 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 var2 = mSource.addProperty("var2")
    [all...]
ParallaxIntEffectTest.java 38 Parallax<Parallax.IntProperty> mSource;
50 mSource = new Parallax<Parallax.IntProperty>() {
58 public IntProperty createProperty(String name, int index) {
59 return new IntProperty(name, index);
68 Parallax.IntProperty var1 = mSource.addProperty("var1");
116 var1.setValue(mSource, Parallax.IntProperty.UNKNOWN_BEFORE);
122 var1.setValue(mSource, Parallax.IntProperty.UNKNOWN_AFTER);
131 Parallax.IntProperty var1 = mSource.addProperty("var1");
142 Parallax.IntProperty var1 = mSource.addProperty("var1");
143 Parallax.IntProperty var2 = mSource.addProperty("var2")
    [all...]
  /external/icu/icu4c/source/common/
uprops.cpp 301 struct IntProperty;
303 typedef int32_t IntPropertyGetValue(const IntProperty &prop, UChar32 c, UProperty which);
304 typedef int32_t IntPropertyGetMaxValue(const IntProperty &prop, UProperty which);
306 struct IntProperty {
314 static int32_t defaultGetValue(const IntProperty &prop, UChar32 c, UProperty /*which*/) {
319 static int32_t defaultGetMaxValue(const IntProperty &prop, UProperty /*which*/) {
323 static int32_t getMaxValueFromShift(const IntProperty &prop, UProperty /*which*/) {
327 static int32_t getBiDiClass(const IntProperty &/*prop*/, UChar32 c, UProperty /*which*/) {
331 static int32_t getBiDiPairedBracketType(const IntProperty &/*prop*/, UChar32 c, UProperty /*which*/) {
335 static int32_t biDiGetMaxValue(const IntProperty &/*prop*/, UProperty which)
    [all...]
  /frameworks/base/services/core/java/com/android/server/display/
RampAnimator.java 20 import android.util.IntProperty;
29 private final IntProperty<T> mProperty;
44 public RampAnimator(T object, IntProperty<T> property) {
DisplayPowerState.java 25 import android.util.IntProperty;
109 public static final IntProperty<DisplayPowerState> SCREEN_BRIGHTNESS =
110 new IntProperty<DisplayPowerState>("screenBrightness") {
  /cts/tests/tests/util/src/android/util/cts/
PropertyTest.java 23 import android.util.IntProperty;
105 // the primitive-friendly IntProperty and FloatProperty subclasses.
147 private static final IntProperty<PropertyTest> INT_PROP =
148 new IntProperty<PropertyTest>("int") {
  /frameworks/support/leanback/src/main/java/androidx/leanback/graphics/
FitWidthBitmapDrawable.java 26 import android.util.IntProperty;
213 // use IntProperty
233 static IntProperty<FitWidthBitmapDrawable> getVerticalOffsetIntProperty() {
234 return new IntProperty<FitWidthBitmapDrawable>("verticalOffset") {
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
UCharacterProperty.java 455 private class IntProperty {
459 IntProperty(int column, int mask, int shift) {
464 IntProperty(int source) {
480 private class BiDiIntProperty extends IntProperty {
490 private class CombiningClassIntProperty extends IntProperty {
500 private class NormQuickCheckIntProperty extends IntProperty { // UCHAR_NF*_QUICK_CHECK properties
518 IntProperty intProps[]={
525 new IntProperty(0, BLOCK_MASK_, BLOCK_SHIFT_),
532 new IntProperty(2, DECOMPOSITION_TYPE_MASK_, 0),
533 new IntProperty(0, EAST_ASIAN_MASK_, EAST_ASIAN_SHIFT_)
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
UCharacterProperty.java 454 private class IntProperty {
458 IntProperty(int column, int mask, int shift) {
463 IntProperty(int source) {
479 private class BiDiIntProperty extends IntProperty {
489 private class CombiningClassIntProperty extends IntProperty {
499 private class NormQuickCheckIntProperty extends IntProperty { // UCHAR_NF*_QUICK_CHECK properties
517 IntProperty intProps[]={
524 new IntProperty(0, BLOCK_MASK_, BLOCK_SHIFT_),
531 new IntProperty(2, DECOMPOSITION_TYPE_MASK_, 0),
532 new IntProperty(0, EAST_ASIAN_MASK_, EAST_ASIAN_SHIFT_)
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
MessagingPropertyAnimator.java 22 import android.util.IntProperty;
44 private static final IntProperty<View> TOP =
45 new IntProperty<View>("top") {
ActionBarOverlayLayout.java 31 import android.util.IntProperty;
148 new IntProperty<ActionBarOverlayLayout>("actionBarHideOffset") {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
DockState.java 42 import android.util.IntProperty;
105 private static final IntProperty<ViewState> HINT_ALPHA =
106 new IntProperty<ViewState>("drawableAlpha") {
  /frameworks/support/leanback/src/main/java/androidx/leanback/app/
DetailsBackgroundVideoHelper.java 89 Parallax.IntProperty frameTop = mDetailsParallax.getOverviewRowTop();
  /frameworks/base/core/java/android/animation/
PropertyValuesHolder.java 22 import android.util.IntProperty;
    [all...]
  /frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/recents/utilities/
Utilities.java 36 import android.util.IntProperty;
53 new IntProperty<Drawable>("drawableAlpha") {
  /frameworks/base/core/java/android/widget/
FastScroller.java 35 import android.util.IntProperty;
    [all...]
  /prebuilts/tools/common/m2/repository/com/nineoldandroids/library/2.4.0/
library-2.4.0.jar 
  /frameworks/base/graphics/java/android/graphics/drawable/
VectorDrawable.java 39 import android.util.IntProperty;
    [all...]
  /packages/apps/Launcher3/quickstep/libs/
sysui_shared.jar 

Completed in 515 milliseconds

1 2