Home
last modified time | relevance | path

Searched refs:propertyBundle (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/apex/appsearch/framework/java/external/android/app/appsearch/
DAppSearchSchema.java413 public static PropertyConfig fromBundle(@NonNull Bundle propertyBundle) { in fromBundle() argument
414 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()
/frameworks/base/core/java/android/view/
DViewPropertyAnimator.java1134 PropertyBundle propertyBundle = mAnimatorMap.get(animation); in onAnimationUpdate() local
1135 if (propertyBundle == null) { in onAnimationUpdate()
1152 int propertyMask = propertyBundle.mPropertyMask; in onAnimationUpdate()
1156 ArrayList<NameValuesHolder> valueList = propertyBundle.mNameValuesHolder; in onAnimationUpdate()