HomeSort by relevance Sort by last modified time
    Searched defs:distinctElements (Results 1 - 25 of 129) sorted by null

1 2 3 4 5 6

  /external/guava/guava-gwt/src/com/google/common/collect/
Multiset_CustomFieldSerializerBase.java 36 int distinctElements = reader.readInt();
37 for (int i = 0; i < distinctElements; i++) {
  /external/guava/guava/src/com/google/common/collect/
HashMultiset.java 49 * @param distinctElements the expected number of distinct elements
50 * @throws IllegalArgumentException if {@code distinctElements} is negative
52 public static <E> HashMultiset<E> create(int distinctElements) {
53 return new HashMultiset<E>(distinctElements);
75 private HashMultiset(int distinctElements) {
76 super(Maps.<E, Count>newHashMapWithExpectedSize(distinctElements));
93 int distinctElements = Serialization.readCount(stream);
95 Maps.<E, Count>newHashMapWithExpectedSize(distinctElements));
96 Serialization.populateMultiset(this, stream, distinctElements);
LinkedHashMultiset.java 59 * @param distinctElements the expected number of distinct elements
60 * @throws IllegalArgumentException if {@code distinctElements} is negative
62 public static <E> LinkedHashMultiset<E> create(int distinctElements) {
63 return new LinkedHashMultiset<E>(distinctElements);
86 private LinkedHashMultiset(int distinctElements) {
88 super(new LinkedHashMap<E, Count>(Maps.capacity(distinctElements)));
105 int distinctElements = Serialization.readCount(stream);
107 Maps.capacity(distinctElements)));
108 Serialization.populateMultiset(this, stream, distinctElements);
AbstractMultiset.java 162 abstract int distinctElements();
184 return distinctElements();
Multisets.java 313 int distinctElements() {
435 int distinctElements() {
494 int distinctElements() {
576 int distinctElements() {
632 int distinctElements() {
    [all...]
Serialization.java 121 int distinctElements = stream.readInt();
122 populateMultiset(multiset, stream, distinctElements);
131 Multiset<E> multiset, ObjectInputStream stream, int distinctElements)
133 for (int i = 0; i < distinctElements; i++) {
TreeMultiset.java 153 return (root == null) ? 0 : root.distinctElements;
223 int distinctElements() {
500 static int distinctElements(@Nullable AvlNode<?> node) {
501 return (node == null) ? 0 : node.distinctElements;
525 private int distinctElements;
538 this.distinctElements = 1;
559 distinctElements++;
568 distinctElements++;
589 distinctElements++;
603 distinctElements++
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
TreeMultiset.java 149 return (root == null) ? 0 : root.distinctElements;
219 int distinctElements() {
496 static int distinctElements(@Nullable AvlNode<?> node) {
497 return (node == null) ? 0 : node.distinctElements;
521 private int distinctElements;
534 this.distinctElements = 1;
555 distinctElements++;
564 distinctElements++;
585 distinctElements++;
599 distinctElements++
    [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/guava/guava/10.0.1/
guava-10.0.1.jar 
  /external/dagger2/lib/
auto-value-1.4.1.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/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 
  /packages/apps/Messaging/build/gcheckstyle/
google-style-checker_deploy.jar 
  /prebuilts/tools/common/m2/repository/com/google/guava/guava/23.6-android/
guava-23.6-android.jar 
  /prebuilts/tools/common/m2/repository/com/google/auto/value/auto-value/1.5.2/
auto-value-1.5.2.jar 
  /prebuilts/tools/common/gradle-plugins/repository/com/google/guava/guava/14.0/
guava-14.0.jar 
  /cts/tests/libcore/javautilcollections/libs/
guava-20.0.jar 
  /external/annotation-tools/annotation-file-utilities/
annotation-file-utilities.jar 
  /external/annotation-tools/annotation-file-utilities/lib/
guava-20.0.jar 

Completed in 106 milliseconds

1 2 3 4 5 6