OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ImmutableMultiset
(Results
1 - 25
of
95
) sorted by null
1
2
3
4
/external/caliper/caliper/src/main/java/com/google/caliper/worker/
AllocationStats.java
25
import com.google.common.collect.
ImmutableMultiset
;
40
private final
ImmutableMultiset
<Allocation> allocations;
48
this(allocationCount, allocationSize, reps,
ImmutableMultiset
.<Allocation>of());
57
ImmutableMultiset
.copyOf(allocations));
/external/guava/guava/src/com/google/common/collect/
ImmutableMultiset.java
52
public abstract class
ImmutableMultiset
<E> extends ImmutableCollection<E>
55
private static final
ImmutableMultiset
<Object> EMPTY =
62
public static <E>
ImmutableMultiset
<E> of() {
63
return (
ImmutableMultiset
<E>) EMPTY;
73
public static <E>
ImmutableMultiset
<E> of(E element) {
84
public static <E>
ImmutableMultiset
<E> of(E e1, E e2) {
95
public static <E>
ImmutableMultiset
<E> of(E e1, E e2, E e3) {
106
public static <E>
ImmutableMultiset
<E> of(E e1, E e2, E e3, E e4) {
117
public static <E>
ImmutableMultiset
<E> of(E e1, E e2, E e3, E e4, E e5) {
128
public static <E>
ImmutableMultiset
<E> of
[
all
...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableMultiset.java
51
public abstract class
ImmutableMultiset
<E> extends ImmutableCollection<E>
54
private static final
ImmutableMultiset
<Object> EMPTY =
61
public static <E>
ImmutableMultiset
<E> of() {
62
return (
ImmutableMultiset
<E>) EMPTY;
72
public static <E>
ImmutableMultiset
<E> of(E element) {
83
public static <E>
ImmutableMultiset
<E> of(E e1, E e2) {
94
public static <E>
ImmutableMultiset
<E> of(E e1, E e2, E e3) {
105
public static <E>
ImmutableMultiset
<E> of(E e1, E e2, E e3, E e4) {
116
public static <E>
ImmutableMultiset
<E> of(E e1, E e2, E e3, E e4, E e5) {
127
public static <E>
ImmutableMultiset
<E> of
[
all
...]
/external/guava/guava-testlib/test/com/google/common/testing/
ArbitraryInstancesTest.java
37
import com.google.common.collect.
ImmutableMultiset
;
187
assertEquals(
ImmutableMultiset
.of(), ArbitraryInstances.get(Multiset.class));
188
assertEquals(
ImmutableMultiset
.of(), ArbitraryInstances.get(
ImmutableMultiset
.class));
FreshValueGeneratorTest.java
39
import com.google.common.collect.
ImmutableMultiset
;
201
assertValueAndTypeEquals(
ImmutableMultiset
.of(new FreshValueGenerator().generate(String.class)),
202
new FreshValueGenerator().generate(new TypeToken<
ImmutableMultiset
<String>>() {}));
203
assertValueAndTypeEquals(
ImmutableMultiset
.of(new FreshValueGenerator().generate(Number.class)),
204
new FreshValueGenerator().generate(new TypeToken<
ImmutableMultiset
<Number>>() {}));
205
assertNotInstantiable(new TypeToken<
ImmutableMultiset
<EmptyEnum>>() {});
[
all
...]
/prebuilts/tools/common/m2/repository/com/squareup/haha/haha/2.0.2/
haha-2.0.2.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
/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
/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
/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-17.0.jar
guava-18.0.jar
/prebuilts/gradle-plugin/com/android/databinding/compiler/2.1.0/
compiler-2.1.0.jar
/prebuilts/gradle-plugin/com/android/databinding/compiler/2.1.0-beta1/
compiler-2.1.0-beta1.jar
/prebuilts/gradle-plugin/com/android/databinding/compiler/2.1.0-beta3/
compiler-2.1.0-beta3.jar
Completed in 2981 milliseconds
1
2
3
4