Searched refs:propertyBundle (Results 1 – 2 of 2) sorted by relevance
413 public static PropertyConfig fromBundle(@NonNull Bundle propertyBundle) { in fromBundle() argument414 switch (propertyBundle.getInt(PropertyConfig.DATA_TYPE_FIELD)) { in fromBundle()416 return new StringPropertyConfig(propertyBundle); in fromBundle()418 return new LongPropertyConfig(propertyBundle); in fromBundle()420 return new DoublePropertyConfig(propertyBundle); in fromBundle()422 return new BooleanPropertyConfig(propertyBundle); in fromBundle()424 return new BytesPropertyConfig(propertyBundle); in fromBundle()426 return new DocumentPropertyConfig(propertyBundle); in fromBundle()430 + propertyBundle.getInt(PropertyConfig.DATA_TYPE_FIELD) in fromBundle()432 + propertyBundle); in fromBundle()
1134 PropertyBundle propertyBundle = mAnimatorMap.get(animation); in onAnimationUpdate() local1135 if (propertyBundle == null) { in onAnimationUpdate()1152 int propertyMask = propertyBundle.mPropertyMask; in onAnimationUpdate()1156 ArrayList<NameValuesHolder> valueList = propertyBundle.mNameValuesHolder; in onAnimationUpdate()