OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ImmutableListMultimap
(Results
1 - 25
of
93
) sorted by null
1
2
3
4
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableListMultimap.java
33
* {@code
ImmutableListMultimap
} contains its own data and will <i>never</i>
34
* change. {@code
ImmutableListMultimap
} is convenient for
51
public class
ImmutableListMultimap
<K, V>
58
public static <K, V>
ImmutableListMultimap
<K, V> of() {
59
return (
ImmutableListMultimap
<K, V>) EmptyImmutableListMultimap.INSTANCE;
65
public static <K, V>
ImmutableListMultimap
<K, V> of(K k1, V v1) {
66
ImmutableListMultimap
.Builder<K, V> builder
67
=
ImmutableListMultimap
.builder();
75
public static <K, V>
ImmutableListMultimap
<K, V> of(K k1, V v1, K k2, V v2) {
76
ImmutableListMultimap
.Builder<K, V> builde
[
all
...]
/external/guava/guava/src/com/google/common/collect/
ImmutableListMultimap.java
38
* {@code
ImmutableListMultimap
} contains its own data and will <i>never</i>
39
* change. {@code
ImmutableListMultimap
} is convenient for
56
public class
ImmutableListMultimap
<K, V>
63
public static <K, V>
ImmutableListMultimap
<K, V> of() {
64
return (
ImmutableListMultimap
<K, V>) EmptyImmutableListMultimap.INSTANCE;
70
public static <K, V>
ImmutableListMultimap
<K, V> of(K k1, V v1) {
71
ImmutableListMultimap
.Builder<K, V> builder
72
=
ImmutableListMultimap
.builder();
80
public static <K, V>
ImmutableListMultimap
<K, V> of(K k1, V v1, K k2, V v2) {
81
ImmutableListMultimap
.Builder<K, V> builde
[
all
...]
/external/guava/guava-gwt/test-super/com/google/common/net/super/com/google/common/net/
MediaTypeTest.java
33
import com.google.common.collect.
ImmutableListMultimap
;
114
private static final
ImmutableListMultimap
<String, String> PARAMETERS =
115
ImmutableListMultimap
.of("a", "1", "a", "2", "b", "3");
118
assertEquals(
ImmutableListMultimap
.of(), MediaType.parse("text/plain").parameters());
119
assertEquals(
ImmutableListMultimap
.of("charset", "utf-8"),
141
ImmutableListMultimap
<String, String> parameters =
142
ImmutableListMultimap
.of("a", "1", "@", "2", "b", "3");
335
.withParameters(
ImmutableListMultimap
.of("a", "1", "a", "2")),
337
.withParameters(
ImmutableListMultimap
.of("a", "2", "a", "1")))
/external/guava/guava-testlib/test/com/google/common/testing/
FreshValueGeneratorTest.java
36
import com.google.common.collect.
ImmutableListMultimap
;
242
assertFreshInstance(new TypeToken<
ImmutableListMultimap
<String, Integer>>() {});
245
ImmutableListMultimap
.of(generator.generate(String.class), generator.generate(int.class)),
247
new TypeToken<
ImmutableListMultimap
<String, Integer>>() {}));
[
all
...]
/external/owasp/sanitizer/distrib/lib/
guava.jar
/external/owasp/sanitizer/lib/guava-libraries/
guava.jar
/packages/services/Telecomm/libs/
guava.jar
/prebuilts/tools/common/m2/repository/com/google/auto/value/auto-value/1.3/
auto-value-1.3.jar
/prebuilts/tools/common/m2/repository/com/google/auto/value/auto-value/1.3-rc1/
auto-value-1.3-rc1.jar
/prebuilts/tools/common/m2/repository/com/google/guava/guava/10.0.1/
guava-10.0.1.jar
/prebuilts/tools/common/m2/repository/org/gradle/gradle-tooling-api/2.0/
gradle-tooling-api-2.0.jar
/prebuilts/tools/common/m2/repository/org/gradle/gradle-tooling-api/2.1/
gradle-tooling-api-2.1.jar
/prebuilts/tools/common/m2/repository/org/gradle/gradle-tooling-api/2.2/
gradle-tooling-api-2.2.jar
/cts/tests/libcore/javautilcollections/libs/
guava-20.0.jar
/external/dagger2/lib/
auto-value-1.0.jar
google-java-format-0.1-20151017.042846-2.jar
/external/guice/lib/
guava-16.0.1.jar
/external/testng/ant/3rdparty/
doclava-1.0.3.jar
/frameworks/data-binding/prebuilds/1.0-rc0/
databinding-studio-bundle.jar
/packages/apps/Messaging/build/gcheckstyle/
google-style-checker_deploy.jar
/prebuilts/devtools/tools/lib/
guava-13.0.1.jar
guava-17.0.jar
guava-18.0.jar
/prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
guava-14.0.1.jar
/prebuilts/gradle-plugin/com/android/databinding/compiler/2.1.0/
compiler-2.1.0.jar
Completed in 1086 milliseconds
1
2
3
4