Searched defs:keyFunction (Results 1 - 19 of 19) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
H A DSortedLists.java203 Function<? super E, K> keyFunction, @Nullable K key, KeyPresentBehavior presentBehavior,
207 keyFunction,
219 * {@link Lists#transform(List, Function) Lists.transform(list, keyFunction)}.
223 Function<? super E, K> keyFunction,
229 Lists.transform(list, keyFunction), key, keyComparator, presentBehavior, absentBehavior);
202 binarySearch(List<E> list, Function<? super E, K> keyFunction, @Nullable K key, KeyPresentBehavior presentBehavior, KeyAbsentBehavior absentBehavior) argument
221 binarySearch( List<E> list, Function<? super E, K> keyFunction, @Nullable K key, Comparator<? super K> keyComparator, KeyPresentBehavior presentBehavior, KeyAbsentBehavior absentBehavior) argument
H A DFluentIterable.java436 * @param keyFunction the function used to produce the key for each value
439 * <li>{@code keyFunction} is null
441 * <li>{@code keyFunction} returns {@code null} for any element of this iterable
445 public final <K> ImmutableListMultimap<K, E> index(Function<? super E, K> keyFunction) { argument
446 return Multimaps.index(iterable, keyFunction);
454 * @param keyFunction the function used to produce the key for each value
455 * @throws IllegalArgumentException if {@code keyFunction} produces the same key for more than one
458 * {@code keyFunction} produces {@code null} for any value
461 public final <K> ImmutableMap<K, E> uniqueIndex(Function<? super E, K> keyFunction) { argument
462 return Maps.uniqueIndex(iterable, keyFunction);
[all...]
H A DMultimaps.java1440 * @param keyFunction the function used to produce the key for each value
1442 * function {@code keyFunction} on each value in the input collection to
1447 * <li>{@code keyFunction} is null
1449 * <li>{@code keyFunction} returns {@code null} for any element of {@code
1454 Iterable<V> values, Function<? super V, K> keyFunction) {
1455 return index(values.iterator(), keyFunction);
1487 * @param keyFunction the function used to produce the key for each value
1489 * function {@code keyFunction} on each value in the input collection to
1494 * <li>{@code keyFunction} is null
1496 * <li>{@code keyFunction} return
1453 index( Iterable<V> values, Function<? super V, K> keyFunction) argument
1501 index( Iterator<V> values, Function<? super V, K> keyFunction) argument
[all...]
H A DMaps.java103 static <K> Function<Entry<K, ?>, K> keyFunction() { method in class:Maps
113 return Iterators.transform(entryIterator, Maps.<K>keyFunction());
1130 * @param keyFunction the function used to produce the key for each value
1132 * keyFunction} on each value in the input collection to that value
1133 * @throws IllegalArgumentException if {@code keyFunction} produces the same
1136 * if {@code keyFunction} produces {@code null} for any value
1139 Iterable<V> values, Function<? super V, K> keyFunction) {
1140 return uniqueIndex(values.iterator(), keyFunction);
1149 * @param keyFunction the function used to produce the key for each value
1151 * keyFunction} o
1138 uniqueIndex( Iterable<V> values, Function<? super V, K> keyFunction) argument
1158 uniqueIndex( Iterator<V> values, Function<? super V, K> keyFunction) argument
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DFluentIterable.java424 * @param keyFunction the function used to produce the key for each value
427 * <li>{@code keyFunction} is null
429 * <li>{@code keyFunction} returns {@code null} for any element of this iterable
433 public final <K> ImmutableListMultimap<K, E> index(Function<? super E, K> keyFunction) { argument
434 return Multimaps.index(iterable, keyFunction);
442 * @param keyFunction the function used to produce the key for each value
443 * @throws IllegalArgumentException if {@code keyFunction} produces the same key for more than one
446 * {@code keyFunction} produces {@code null} for any value
449 public final <K> ImmutableMap<K, E> uniqueIndex(Function<? super E, K> keyFunction) { argument
450 return Maps.uniqueIndex(iterable, keyFunction);
[all...]
H A DMultimaps.java1351 * @param keyFunction the function used to produce the key for each value
1353 * function {@code keyFunction} on each value in the input collection to
1358 * <li>{@code keyFunction} is null
1360 * <li>{@code keyFunction} returns {@code null} for any element of {@code
1365 Iterable<V> values, Function<? super V, K> keyFunction) {
1366 return index(values.iterator(), keyFunction);
1398 * @param keyFunction the function used to produce the key for each value
1400 * function {@code keyFunction} on each value in the input collection to
1405 * <li>{@code keyFunction} is null
1407 * <li>{@code keyFunction} return
1364 index( Iterable<V> values, Function<? super V, K> keyFunction) argument
1412 index( Iterator<V> values, Function<? super V, K> keyFunction) argument
[all...]
H A DMaps.java98 static <K> Function<Entry<K, ?>, K> keyFunction() { method in class:Maps
108 return Iterators.transform(entryIterator, Maps.<K>keyFunction());
954 * @param keyFunction the function used to produce the key for each value
956 * keyFunction} on each value in the input collection to that value
957 * @throws IllegalArgumentException if {@code keyFunction} produces the same
960 * if {@code keyFunction} produces {@code null} for any value
963 Iterable<V> values, Function<? super V, K> keyFunction) {
964 return uniqueIndex(values.iterator(), keyFunction);
973 * @param keyFunction the function used to produce the key for each value
975 * keyFunction} o
962 uniqueIndex( Iterable<V> values, Function<? super V, K> keyFunction) argument
982 uniqueIndex( Iterator<V> values, Function<? super V, K> keyFunction) argument
[all...]
/external/clang/lib/CodeGen/
H A DCGVTables.cpp733 const CXXMethodDecl *keyFunction = Context.getCurrentKeyFunction(RD); local
734 if (keyFunction && !RD->hasAttr<DLLImportAttr>()) {
738 if (keyFunction->hasBody(def))
739 keyFunction = cast<CXXMethodDecl>(def);
741 switch (keyFunction->getTemplateSpecializationKind()) {
750 if (keyFunction->isInlined())
865 const CXXMethodDecl *keyFunction = CGM.getContext().getCurrentKeyFunction(RD); local
866 if (!keyFunction)
871 return !keyFunction->hasBody();
/external/dagger2/lib/
H A Dauto-value-1.4.1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/auto/ com/google/auto/value/ ...
H A Dgoogle-java-format-0.1-20151017.042846-2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/googlejavaformat/ com/google/googlejavaformat/CloseOp ...
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/annotation-tools/annotation-file-utilities/lib/
H A Dguava-20.0.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...
/external/guice/lib/
H A Dguava-16.0.1.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...
/external/annotation-tools/annotation-file-utilities/
H A Dannotation-file-utilities.jarMETA-INF/ META-INF/MANIFEST.MF annotations/ annotations/el/ annotations/field/ annotations/io/ annotations/io/classfile/ ...
/external/conscrypt/benchmark-android/
H A Dvogar.jarMETA-INF/ META-INF/MANIFEST.MF vogar/ vogar/TestProperties.class TestProperties.java package vogar ...
/external/v8/src/inspector/build/closure-compiler/
H A Dclosure-compiler.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/testng/ant/3rdparty/
H A Ddoclava-1.0.3.jarMETA-INF/MANIFEST.MF assets/html/index.html assets/templates/data.hdf assets/templates/assets/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 308 milliseconds