HomeSort by relevance Sort by last modified time
    Searched defs:expectedValuesPerKey (Results 1 - 10 of 10) sorted by null

  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ArrayListMultimap.java 62 @VisibleForTesting transient int expectedValuesPerKey;
77 * @param expectedValuesPerKey the expected average number of values per key
79 * expectedValuesPerKey} is negative
82 int expectedKeys, int expectedValuesPerKey) {
83 return new ArrayListMultimap<K, V>(expectedKeys, expectedValuesPerKey);
99 expectedValuesPerKey = DEFAULT_VALUES_PER_KEY;
102 private ArrayListMultimap(int expectedKeys, int expectedValuesPerKey) {
104 checkArgument(expectedValuesPerKey >= 0);
105 this.expectedValuesPerKey = expectedValuesPerKey;
    [all...]
HashMultimap.java 49 transient int expectedValuesPerKey = DEFAULT_VALUES_PER_KEY;
64 * @param expectedValuesPerKey the expected average number of values per key
66 * expectedValuesPerKey} is negative
69 int expectedKeys, int expectedValuesPerKey) {
70 return new HashMultimap<K, V>(expectedKeys, expectedValuesPerKey);
89 private HashMultimap(int expectedKeys, int expectedValuesPerKey) {
91 Preconditions.checkArgument(expectedValuesPerKey >= 0);
92 this.expectedValuesPerKey = expectedValuesPerKey;
109 return Sets.<V>newHashSetWithExpectedSize(expectedValuesPerKey);
    [all...]
LinkedHashMultimap.java 72 transient int expectedValuesPerKey = DEFAULT_VALUES_PER_KEY;
94 * @param expectedValuesPerKey the expected average number of values per key
96 * expectedValuesPerKey} is negative
99 int expectedKeys, int expectedValuesPerKey) {
100 return new LinkedHashMultimap<K, V>(expectedKeys, expectedValuesPerKey);
122 private LinkedHashMultimap(int expectedKeys, int expectedValuesPerKey) {
124 Preconditions.checkArgument(expectedValuesPerKey >= 0);
125 this.expectedValuesPerKey = expectedValuesPerKey;
128 ((long) expectedKeys) * expectedValuesPerKey));
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ArrayListMultimap.java 67 @VisibleForTesting transient int expectedValuesPerKey;
82 * @param expectedValuesPerKey the expected average number of values per key
84 * expectedValuesPerKey} is negative
87 int expectedKeys, int expectedValuesPerKey) {
88 return new ArrayListMultimap<K, V>(expectedKeys, expectedValuesPerKey);
104 expectedValuesPerKey = DEFAULT_VALUES_PER_KEY;
107 private ArrayListMultimap(int expectedKeys, int expectedValuesPerKey) {
109 checkArgument(expectedValuesPerKey >= 0);
110 this.expectedValuesPerKey = expectedValuesPerKey;
    [all...]
HashMultimap.java 54 transient int expectedValuesPerKey = DEFAULT_VALUES_PER_KEY;
69 * @param expectedValuesPerKey the expected average number of values per key
71 * expectedValuesPerKey} is negative
74 int expectedKeys, int expectedValuesPerKey) {
75 return new HashMultimap<K, V>(expectedKeys, expectedValuesPerKey);
94 private HashMultimap(int expectedKeys, int expectedValuesPerKey) {
96 Preconditions.checkArgument(expectedValuesPerKey >= 0);
97 this.expectedValuesPerKey = expectedValuesPerKey;
114 return Sets.<V>newHashSetWithExpectedSize(expectedValuesPerKey);
    [all...]
LinkedHashMultimap.java 76 transient int expectedValuesPerKey = DEFAULT_VALUES_PER_KEY;
98 * @param expectedValuesPerKey the expected average number of values per key
100 * expectedValuesPerKey} is negative
103 int expectedKeys, int expectedValuesPerKey) {
104 return new LinkedHashMultimap<K, V>(expectedKeys, expectedValuesPerKey);
126 private LinkedHashMultimap(int expectedKeys, int expectedValuesPerKey) {
128 Preconditions.checkArgument(expectedValuesPerKey >= 0);
129 this.expectedValuesPerKey = expectedValuesPerKey;
132 ((long) expectedKeys) * expectedValuesPerKey));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
compiler.jar 
  /external/owasp/sanitizer/distrib/lib/
guava.jar 
  /external/owasp/sanitizer/lib/guava-libraries/
guava.jar 
  /external/chromium_org/third_party/checkstyle/
checkstyle-5.7-all.jar 

Completed in 65 milliseconds