Searched defs:mapByPage (Results 1 - 4 of 4) sorted by relevance

/frameworks/support/paging/common/src/main/java/androidx/paging/
H A DDataSource.java137 * Same as {@link #mapByPage(Function)}, but operates on individual items.
145 * @see #mapByPage(Function)
147 * @see DataSource#mapByPage(Function)
152 return mapByPage(createListFunction(function));
168 * @see DataSource#mapByPage(Function)
171 public <ToValue> DataSource.Factory<Key, ToValue> mapByPage( method in class:DataSource.Factory
176 return Factory.this.create().mapByPage(function);
224 * @see DataSource.Factory#mapByPage(Function)
227 public abstract <ToValue> DataSource<Key, ToValue> mapByPage( method in class:DataSource
233 * Same as {@link #mapByPage(Functio
[all...]
H A DItemKeyedDataSource.java363 public final <ToValue> ItemKeyedDataSource<Key, ToValue> mapByPage( method in class:ItemKeyedDataSource
372 return mapByPage(createListFunction(function));
H A DPageKeyedDataSource.java414 public final <ToValue> PageKeyedDataSource<Key, ToValue> mapByPage( method in class:PageKeyedDataSource
423 return mapByPage(createListFunction(function));
H A DPositionalDataSource.java494 public <ToValue> DataSource<Integer, ToValue> mapByPage( method in class:PositionalDataSource.ContiguousWithoutPlaceholdersWrapper
557 public final <V> PositionalDataSource<V> mapByPage( method in class:PositionalDataSource
565 return mapByPage(createListFunction(function));

Completed in 54 milliseconds