HomeSort by relevance Sort by last modified time
    Searched full:propertyname (Results 201 - 225 of 1260) sorted by null

1 2 3 4 5 6 7 891011>>

  /packages/apps/TvSettings/Settings/res/anim/
list_item_focus.xml 22 android:propertyName="alpha"
31 android:propertyName="alpha"
list_item_pressed.xml 20 android:propertyName="alpha"
29 android:propertyName="alpha"
setup_fragment_close_in.xml 20 android:propertyName="x"
27 android:propertyName="alpha"
setup_fragment_close_out.xml 20 android:propertyName="x"
27 android:propertyName="alpha"
setup_fragment_open_in.xml 20 android:propertyName="x"
27 android:propertyName="alpha"
setup_fragment_open_out.xml 20 android:propertyName="x"
27 android:propertyName="alpha"
  /packages/inputmethods/LatinIME/java/res/anim/
key_preview_dismiss_holo.xml 23 android:propertyName="scaleX"
28 android:propertyName="scaleY"
key_preview_dismiss_lxx.xml 23 android:propertyName="scaleX"
28 android:propertyName="scaleY"
key_preview_show_up_holo.xml 23 android:propertyName="scaleX"
28 android:propertyName="scaleY"
key_preview_show_up_lxx.xml 23 android:propertyName="scaleX"
28 android:propertyName="scaleY"
  /packages/services/Car/car-support-lib/res/anim/
car_fab_state_list_animator.xml 19 <objectAnimator android:propertyName="translationZ"
28 <objectAnimator android:propertyName="translationZ"
  /prebuilts/sdk/current/support/v17/leanback/res/animator/
lb_onboarding_description_enter.xml 20 android:propertyName="alpha"
26 android:propertyName="translationY"
lb_onboarding_start_button_fade_in.xml 20 android:propertyName="alpha"
26 android:propertyName="translationX"
lb_onboarding_start_button_fade_out.xml 20 android:propertyName="alpha"
26 android:propertyName="translationX"
lb_onboarding_title_enter.xml 20 android:propertyName="alpha"
26 android:propertyName="translationY"
  /external/guava/guava-testlib/test/com/google/common/collect/testing/features/
FeatureEnumTest.java 53 for (String propertyName : new String[]{"value", "absent"}) {
56 method = annotationClass.getMethod(propertyName);
59 annotationClass, propertyName));
63 annotationClass, propertyName),
66 annotationClass, propertyName, annotationClass.getDeclaringClass()),
  /frameworks/base/core/java/android/animation/
PropertyValuesHolder.java 132 * @param propertyName The name of the property for this holder.
134 private PropertyValuesHolder(String propertyName) {
135 mPropertyName = propertyName;
152 * @param propertyName The name of the property being animated.
156 public static PropertyValuesHolder ofInt(String propertyName, int... values) {
157 return new IntPropertyValuesHolder(propertyName, values);
178 * @param propertyName The name of the property being animated. Can also be the
185 public static PropertyValuesHolder ofMultiInt(String propertyName, int[][] values) {
202 return new MultiIntValuesHolder(propertyName, null, evaluator, (Object[]) values);
210 * @param propertyName The name of the property being animated. Can also be th
    [all...]
ObjectAnimator.java 109 * using more than one PropertyValuesHolder objects, then setting the propertyName simply
110 * sets the propertyName in the first of those PropertyValuesHolder objects.</p>
112 * @param propertyName The name of the property being animated. Should not be null.
114 public void setPropertyName(@NonNull String propertyName) {
116 // propertyName to be used later when setValues() is called if so.
120 valuesHolder.setPropertyName(propertyName);
122 mValuesMap.put(propertyName, valuesHolder);
124 mPropertyName = propertyName;
138 // propertyName to be used later when setValues() is called if so.
172 String propertyName = null
    [all...]
  /build/blueprint/
unpack.go 137 propertyName := namePrefix + proptools.PropertyNameForField(field.Name)
140 panic(fmt.Errorf("field %s is not settable", propertyName))
151 panic(fmt.Errorf("field %s is a non-string slice", propertyName))
155 panic(fmt.Errorf("field %s contains a nil interface", propertyName))
160 panic(fmt.Errorf("field %s contains a non-pointer interface", propertyName))
167 panic(fmt.Errorf("field %s contains a nil pointer", propertyName))
173 panic(fmt.Errorf("field %s contains a pointer to %s", propertyName, ptrKind))
178 panic(fmt.Errorf(`int field %s must be tagged blueprint:"mutated"`, propertyName))
182 panic(fmt.Errorf("unsupported kind for field %s: %s", propertyName, kind))
192 packedProperty, ok := propertyMap[propertyName]
    [all...]
  /frameworks/opt/vcard/java/com/android/vcard/
VCardSourceDetector.java 103 final String propertyName = property.getName();
106 if (propertyName.equalsIgnoreCase(VCardConstants.PROPERTY_VERSION)
118 } else if (propertyName.equalsIgnoreCase(TYPE_FOMA_CHARSET_SIGN)) {
127 if (WINDOWS_MOBILE_PHONE_SIGNS.contains(propertyName)) {
129 } else if (FOMA_SIGNS.contains(propertyName)) {
131 } else if (JAPANESE_MOBILE_PHONE_SIGNS.contains(propertyName)) {
133 } else if (APPLE_SIGNS.contains(propertyName)) {
  /libcore/ojluni/src/main/java/java/beans/
PropertyChangeEvent.java 53 * @param propertyName The programmatic name of the property
58 public PropertyChangeEvent(Object source, String propertyName,
61 this.propertyName = propertyName;
73 return propertyName;
123 private String propertyName;
153 sb.append("[propertyName=").append(getPropertyName());
  /frameworks/data-binding/compiler/src/main/java/android/databinding/annotationprocessor/
ProcessBindable.java 163 CharSequence propertyName;
165 propertyName = name.subSequence(3, name.length());
167 propertyName = name.subSequence(2, name.length());
172 char firstChar = propertyName.charAt(0);
174 propertyName.subSequence(1, propertyName.length());
233 void addProperty(String className, String propertyName);
259 public void addProperty(String className, String propertyName) {
265 properties.add(propertyName);
  /development/samples/training/AnimationsDemo/res/animator/
card_flip_left_in.xml 42 android:propertyName="alpha"
49 android:propertyName="rotationY"
57 android:propertyName="alpha"
card_flip_right_in.xml 42 android:propertyName="alpha"
49 android:propertyName="rotationY"
57 android:propertyName="alpha"
  /external/guice/core/src/com/google/inject/name/
Names.java 65 String propertyName = (String) e.nextElement();
66 String value = properties.getProperty(propertyName);
67 binder.bind(Key.get(String.class, new NamedImpl(propertyName))).toInstance(value);

Completed in 1692 milliseconds

1 2 3 4 5 6 7 891011>>