Searched refs:itemTypes (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/core/java/android/os/ |
D | Parcel.java | 4341 @Nullable Class<?>... itemTypes) { in readValue() argument 4347 object = readValue(type, loader, clazz, itemTypes); in readValue() 4355 object = readValue(type, loader, clazz, itemTypes); in readValue() 4436 public Object apply(@Nullable Class<?> clazz, @Nullable Class<?>[] itemTypes) { in apply() argument 4445 mObject = source.readValue(mLoader, clazz, itemTypes); in apply() 4543 @Nullable Class<?>... itemTypes) { in readValue() argument 4560 Class<?> keyType = ArrayUtils.getOrNull(itemTypes, 0); in readValue() 4561 Class<?> valueType = ArrayUtils.getOrNull(itemTypes, 1); in readValue() 4596 Class<?> itemType = ArrayUtils.getOrNull(itemTypes, 0); in readValue() 4621 Class<?> itemType = ArrayUtils.getOrNull(itemTypes, 0); in readValue() [all …]
|
D | BaseBundle.java | 372 final <T> T getValue(String key, @Nullable Class<T> clazz, @Nullable Class<?>... itemTypes) { in getValue() argument 374 return (i >= 0) ? getValueAt(i, clazz, itemTypes) : null; in getValue() 390 final <T> T getValueAt(int i, @Nullable Class<T> clazz, @Nullable Class<?>... itemTypes) { in getValueAt() argument 394 object = ((BiFunction<Class<?>, Class<?>[], ?>) object).apply(clazz, itemTypes); in getValueAt()
|