Home
last modified time | relevance | path

Searched refs:rowFunction (Results 1 – 3 of 3) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
DImmutableTable.java64 Function<? super T, ? extends R> rowFunction, in toImmutableTable() argument
67 checkNotNull(rowFunction, "rowFunction"); in toImmutableTable()
73 builder.put(rowFunction.apply(t), columnFunction.apply(t), valueFunction.apply(t)), in toImmutableTable()
90 Function<? super T, ? extends R> rowFunction, in toImmutableTable() argument
95 checkNotNull(rowFunction, "rowFunction"); in toImmutableTable()
111 rowFunction.apply(input), in toImmutableTable()
DTables.java67 java.util.function.Function<? super T, ? extends R> rowFunction, in toTable() argument
72 rowFunction, in toTable()
96 java.util.function.Function<? super T, ? extends R> rowFunction, in toTable() argument
101 checkNotNull(rowFunction); in toTable()
111 rowFunction.apply(input), in toTable()
512 Function<Map<C, V1>, Map<C, V2>> rowFunction =
519 return Maps.transformValues(fromTable.rowMap(), rowFunction);
/external/guava/android/guava/src/com/google/common/collect/
DTables.java414 Function<Map<C, V1>, Map<C, V2>> rowFunction = in rowMap() local
421 return Maps.transformValues(fromTable.rowMap(), rowFunction); in rowMap()