HomeSort by relevance Sort by last modified time
    Searched defs:size (Results 1551 - 1575 of 11184) sorted by null

<<61626364656667686970>>

  /external/google-breakpad/src/third_party/libdisasm/
x86_insn.c 12 if ( insn && insn->type != insn_invalid && insn->size > 0 ) {
93 int size, offset; local
117 size = x86_operand_size( op );
118 offset = insn->size - size;
152 return(4); /* default size */
  /external/google-breakpad/src/tools/linux/md2core/
minidump_memory_range_unittest.cc 72 size_t size; member in struct:__anon11598::__anon11600
205 size_t element_size = kElements[i].size;
209 << ", size=" << element_size
  /external/guava/guava/src/com/google/common/base/
SmallCharMatcher.java 72 * Returns an array size suitable for the backing array of a hash table that
74 * returned size is the smallest power of two that can hold setSize elements
81 // Correct the size for open addressing to match desired load factor.
93 int size = chars.cardinality(); local
96 char[] table = new char[chooseTableSize(size)];
Strings.java 165 final int size = (int) longSize; local
166 if (size != longSize) {
168 "Required array size too large: " + longSize);
171 final char[] array = new char[size];
174 for (n = len; n < size - n; n <<= 1) {
177 System.arraycopy(array, 0, array, n, size - n);
  /external/guava/guava/src/com/google/common/collect/
DescendingImmutableSortedSet.java 37 public int size() { method in class:DescendingImmutableSortedSet
38 return forward.size();
106 return size() - 1 - index;
DescendingMultiset.java 119 @Override public int size() { method in class:DescendingMultiset
120 return forwardMultiset().entrySet().size();
EmptyImmutableSet.java 38 public int size() { method in class:EmptyImmutableSet
EmptyImmutableSortedSet.java 42 public int size() { method in class:EmptyImmutableSortedSet
ForwardingList.java 131 add(size(), element); method
196 * of {@link #size}, {@link #get(int)}, {@link #set(int, Object)}, {@link
219 * A sensible definition of {@link #equals(Object)} in terms of {@link #size}
ForwardingMultimap.java 127 public int size() { method in class:ForwardingMultimap
128 return delegate().size();
ForwardingTable.java 128 public int size() { method in class:ForwardingTable
129 return delegate().size();
ImmutableEnumSet.java 35 switch (set.size()) {
68 public int size() { method in class:ImmutableEnumSet
69 return delegate.size();
Multimap.java 50 * example, the {@link #size} is {@code 3}, not {@code 2}, and the {@link
126 * <li>The total entry count is available as {@link #size}.
171 * keys</i> in the multimap, which is given by {@code keySet().size()} or
172 * {@code asMap().size()}. See the opening section of the {@link Multimap}
175 int size(); method in interface:Multimap
179 * Equivalent to {@code size() == 0}, but can in some cases be more efficient.
208 * multimap size by 1. Other implementations prohibit duplicates, and storing
211 * @return {@code true} if the method increased the size of the multimap, or
310 * the same size as this multimap, and {@code keys().count(k) ==
311 * get(k).size()} for all {@code k}
    [all...]
ObjectArrays.java 84 * @return an array whose size is one larger than {@code array}, with
100 * @return an array whose size is one larger than {@code array}, with
123 * specified array and the size of the specified collection.
143 int size = c.size(); local
144 if (array.length < size) {
145 array = newArray(array, size);
148 if (array.length > size) {
149 array[size] = null;
158 * the runtime type of the specified array and the size of the specified collection
    [all...]
RegularImmutableSortedMultiset.java 75 public int size() { method in class:RegularImmutableSortedMultiset
76 long size = cumulativeCounts[offset + length] - cumulativeCounts[offset]; local
77 return Ints.saturatedCast(size);
SingletonImmutableBiMap.java 60 public int size() { method in class:SingletonImmutableBiMap
SingletonImmutableList.java 62 public int size() { method in class:SingletonImmutableList
85 return that.size() == 1 && element.equals(that.get(0));
  /external/guava/guava-gwt/src/com/google/common/collect/
LinkedHashMultimap_CustomFieldSerializer.java 64 stream.writeInt(multimap.keySet().size());
68 stream.writeInt(multimap.size());
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DescendingMultiset.java 119 @Override public int size() { method in class:DescendingMultiset
120 return forwardMultiset().entrySet().size();
EmptyContiguousSet.java 43 @Override public int size() { method in class:EmptyContiguousSet
ImmutableSet.java 75 int size = others.length + 6; local
76 List<E> all = new ArrayList<E>(size);
130 switch (delegate.size()) {
148 switch (set.size()) {
183 contents.ensureCapacity(contents.size() + elements.length);
191 contents.ensureCapacity(contents.size() + collection.size());
ObjectArrays.java 55 * @return an array whose size is one larger than {@code array}, with
71 * @return an array whose size is one larger than {@code array}, with
94 * specified array and the size of the specified collection.
114 int size = c.size(); local
115 if (array.length < size) {
116 array = newArray(array, size);
119 if (array.length > size) {
120 array[size] = null;
129 * the runtime type of the specified array and the size of the specified collection
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
MinimalCollection.java 66 @Override public int size() { method in class:MinimalCollection
SafeTreeMap.java 140 public int size() { method in class:SafeTreeMap
141 return delegate().size();
244 @Override public int size() {
245 return delegate.size();
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
MultimapReplaceValuesTester.java 49 int size = multimap().size(); local
59 int size = multimap().size(); local
69 int size = multimap().size(); local
75 assertEquals(size + values.size(), multimap().size());
80 int size = multimap().size() local
92 int size = multimap().size(); local
116 int size = multimap().size(); local
    [all...]

Completed in 370 milliseconds

<<61626364656667686970>>