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

1 2

  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
DetailsParallax.java 37 final IntProperty mFrameTop;
38 final IntProperty mFrameBottom;
58 public Parallax.IntProperty getOverviewRowTop() {
66 public Parallax.IntProperty getOverviewRowBottom() {
Parallax.java 38 * 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 extends Property<Parallax, Integer>
    [all...]
RecyclerViewParallax.java 53 * 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);
DetailsParallaxDrawable.java 172 Parallax.IntProperty frameTop = parallax.getOverviewRowTop();
173 Parallax.IntProperty frameBottom = parallax.getOverviewRowBottom();
ParallaxEffect.java 22 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/
IntProperty.java 27 public abstract class IntProperty<T> extends Property<T, Integer> {
29 public IntProperty(String name) {
  /frameworks/support/v17/leanback/tests/java/android/support/v17/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 39 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 var2 = mSource.addProperty("var2")
    [all...]
  /external/icu/icu4c/source/common/
uprops.cpp 294 struct IntProperty;
296 typedef int32_t IntPropertyGetValue(const IntProperty &prop, UChar32 c, UProperty which);
297 typedef int32_t IntPropertyGetMaxValue(const IntProperty &prop, UProperty which);
299 struct IntProperty {
307 static int32_t defaultGetValue(const IntProperty &prop, UChar32 c, UProperty /*which*/) {
312 static int32_t defaultGetMaxValue(const IntProperty &prop, UProperty /*which*/) {
316 static int32_t getMaxValueFromShift(const IntProperty &prop, UProperty /*which*/) {
320 static int32_t getBiDiClass(const IntProperty &/*prop*/, UChar32 c, UProperty /*which*/) {
324 static int32_t getBiDiPairedBracketType(const IntProperty &/*prop*/, UChar32 c, UProperty /*which*/) {
328 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 24 import android.util.IntProperty;
107 public static final IntProperty<DisplayPowerState> SCREEN_BRIGHTNESS =
108 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/v17/leanback/src/android/support/v17/leanback/graphics/
FitWidthBitmapDrawable.java 28 import android.util.IntProperty;
212 // use IntProperty
232 static IntProperty<FitWidthBitmapDrawable> getVerticalOffsetIntProperty() {
233 return new IntProperty<FitWidthBitmapDrawable>("verticalOffset") {
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
UCharacterProperty.java 446 private class IntProperty {
450 IntProperty(int column, int mask, int shift) {
455 IntProperty(int source) {
471 private class BiDiIntProperty extends IntProperty {
481 private class CombiningClassIntProperty extends IntProperty {
491 private class NormQuickCheckIntProperty extends IntProperty { // UCHAR_NF*_QUICK_CHECK properties
509 IntProperty intProps[]={
516 new IntProperty(0, BLOCK_MASK_, BLOCK_SHIFT_),
523 new IntProperty(2, DECOMPOSITION_TYPE_MASK_, 0),
524 new IntProperty(0, EAST_ASIAN_MASK_, EAST_ASIAN_SHIFT_)
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
UCharacterProperty.java 445 private class IntProperty {
449 IntProperty(int column, int mask, int shift) {
454 IntProperty(int source) {
470 private class BiDiIntProperty extends IntProperty {
480 private class CombiningClassIntProperty extends IntProperty {
490 private class NormQuickCheckIntProperty extends IntProperty { // UCHAR_NF*_QUICK_CHECK properties
508 IntProperty intProps[]={
515 new IntProperty(0, BLOCK_MASK_, BLOCK_SHIFT_),
522 new IntProperty(2, DECOMPOSITION_TYPE_MASK_, 0),
523 new IntProperty(0, EAST_ASIAN_MASK_, EAST_ASIAN_SHIFT_)
    [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
DetailsBackgroundVideoHelper.java 88 Parallax.IntProperty frameTop = mDetailsParallax.getOverviewRowTop();
  /frameworks/base/core/java/android/animation/
PropertyValuesHolder.java 22 import android.util.IntProperty;
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
Utilities.java 33 import android.util.IntProperty;
52 new IntProperty<Drawable>("drawableAlpha") {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
TaskViewTransform.java 24 import android.util.IntProperty;
  /frameworks/base/core/java/android/widget/
FastScroller.java 35 import android.util.IntProperty;
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
ActionBarOverlayLayout.java 31 import android.util.IntProperty;
148 new IntProperty<ActionBarOverlayLayout>("actionBarHideOffset") {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
TaskStack.java 47 import android.util.IntProperty;
296 private static final IntProperty<ViewState> HINT_ALPHA =
297 new IntProperty<ViewState>("drawableAlpha") {
    [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 38 import android.util.IntProperty;
    [all...]
  /frameworks/base/
preloaded-classes 107 [Landroid.icu.impl.UCharacterProperty$IntProperty;
    [all...]

Completed in 474 milliseconds

1 2