Searched refs:itemTypes (Results 1 – 2 of 2) sorted by relevance
/aosp14/frameworks/base/core/java/android/os/ |
H A D | BaseBundle.java | 379 final <T> T getValue(String key, @Nullable Class<T> clazz, @Nullable Class<?>... itemTypes) { in getValue() argument 381 return (i >= 0) ? getValueAt(i, clazz, itemTypes) : null; in getValue() 397 final <T> T getValueAt(int i, @Nullable Class<T> clazz, @Nullable Class<?>... itemTypes) { in getValueAt() argument 401 object = unwrapLazyValueFromMapLocked(i, clazz, itemTypes); in getValueAt() 411 @Nullable Class<?>... itemTypes) { in unwrapLazyValueFromMapLocked() argument 415 object = ((BiFunction<Class<?>, Class<?>[], ?>) object).apply(clazz, itemTypes); in unwrapLazyValueFromMapLocked()
|
H A D | Parcel.java | 4384 @Nullable Class<?>... itemTypes) { in readValue() argument 4390 object = readValue(type, loader, clazz, itemTypes); in readValue() 4398 object = readValue(type, loader, clazz, itemTypes); in readValue() 4488 mObject = source.readValue(mLoader, clazz, itemTypes); in apply() 4597 @Nullable Class<?>... itemTypes) { in readValue() argument 4614 Class<?> keyType = ArrayUtils.getOrNull(itemTypes, 0); in readValue() 4615 Class<?> valueType = ArrayUtils.getOrNull(itemTypes, 1); in readValue() 4650 Class<?> itemType = ArrayUtils.getOrNull(itemTypes, 0); in readValue() 4675 Class<?> itemType = ArrayUtils.getOrNull(itemTypes, 0); in readValue() 4697 Class<?> itemType = ArrayUtils.getOrNull(itemTypes, 0); in readValue() [all …]
|