Searched defs:values (Results 151 - 175 of 454) sorted by relevance

1234567891011>>

/external/guava/guava/src/com/google/common/collect/
H A DEmptyImmutableTable.java119 @Override public ImmutableCollection<Object> values() { method in class:EmptyImmutableTable
H A DForwardingMap.java44 * Objects#equal} to test equality for both keys and values. This may not be
119 public Collection<V> values() { method in class:ForwardingMap
120 return delegate().values();
222 * A sensible implementation of {@link Map#values} in terms of the following
226 * may wish to override {@link ForwardingMap#values} to forward to this
H A DForwardingMultimap.java102 public boolean putAll(K key, Iterable<? extends V> values) { argument
103 return delegate().putAll(key, values);
122 public Collection<V> replaceValues(K key, Iterable<? extends V> values) { argument
123 return delegate().replaceValues(key, values);
132 public Collection<V> values() { method in class:ForwardingMultimap
133 return delegate().values();
H A DForwardingTable.java135 public Collection<V> values() { method in class:ForwardingTable
136 return delegate().values();
H A DLinkedHashMultimap.java45 * replaceValues} return collections that iterate through the values in the
47 * {@code values} iterate across the key-value mappings in the order they were
53 * iteration order. However, if you remove all values associated with a key and
60 * <p>Keys and values may be null. All optional multimap methods are supported,
95 * the specified numbers of keys and values without rehashing.
98 * @param expectedValuesPerKey the expected average number of values per key
146 * <p>Creates an empty {@code LinkedHashSet} for a collection of values for
149 * @return a new {@code LinkedHashSet} containing a collection of values for
162 * @param key key to associate with values in the collection
164 * values fo
187 createEntries(Collection<E> values) argument
205 addAll(Collection<? extends V> values) argument
254 removeAll(Collection<?> values) argument
262 retainAll(Collection<?> values) argument
323 replaceValues( @ullable K key, Iterable<? extends V> values) argument
351 @Override public Collection<V> values() { method in class:LinkedHashMultimap
[all...]
H A DMultimap.java29 * values with a single key. If you call {@link #put} twice, with the same key
30 * but different values, the multimap contains mappings from the key to both
31 * values.
33 * <p>The methods {@link #get}, {@link #keySet}, {@link #keys}, {@link #values},
55 * @param <V> the type of mapped values
69 * Returns {@code true} if the multimap contains any values for the specified
122 * Stores a collection of values with the same key.
125 * @param values values to store in the multimap
128 boolean putAll(@Nullable K key, Iterable<? extends V> values); argument
151 replaceValues(@ullable K key, Iterable<? extends V> values) argument
212 Collection<V> values(); method in interface:Multimap
[all...]
H A DRange.java56 * <li>{@code (-∞..+∞) = all values}
66 * <p>The values {@code a} and {@code b} used above are called <i>endpoints</i>.
191 * values.
218 * Returns {@code true} if every element in {@code values} is {@linkplain
221 public boolean containsAll(Iterable<? extends C> values) { argument
222 if (Iterables.isEmpty(values)) {
227 if (values instanceof SortedSet) {
228 SortedSet<? extends C> set = cast(values);
235 for (C value : values) {
352 * {@code (5..7)} is {@code [1..7)}. Note that the span may contain values
[all...]
H A DRanges.java80 * Returns a range that contains all values strictly greater than {@code
91 * Returns a range that contains all values greater than or equal to
102 * Returns a range that contains all values greater than or equal to
114 * Returns a range that contains all values strictly greater than {@code
148 * Returns a range that contains all values strictly less than {@code
156 * Returns a range that contains all values less than or equal to
180 * Returns a range that contains all values strictly greater than {@code
188 * Returns a range that contains all values greater than or equal to
227 * {@linkplain Range#contains(Comparable) contains} all of the given values.
232 * @throws NoSuchElementException if {@code values} i
235 encloseAll( Iterable<C> values) argument
[all...]
H A DRegularImmutableMap.java246 private transient ImmutableCollection<V> values; field in class:RegularImmutableMap
248 @Override public ImmutableCollection<V> values() { method in class:RegularImmutableMap
249 ImmutableCollection<V> v = values;
250 return (v == null) ? (values = new Values<V>(this)) : v;
H A DSingletonImmutableTable.java115 @Override public ImmutableCollection<V> values() { method in class:SingletonImmutableTable
H A DTable.java51 * @param <V> the type of the mapped values
174 * @return the corresponding map from column keys to values
188 * @return the corresponding map from row keys to values
203 * Returns a set of row keys that have one or more values in the table.
211 * Returns a set of column keys that have one or more values in the table.
219 * Returns a collection of all values, which may contain duplicates. Changes
223 * @return collection of values
225 Collection<V> values(); method in interface:Table
229 * column keys to values. Changes to the returned map will update this table.
238 * values
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableBiMap.java114 @Override public ImmutableSet<V> values() { method in class:ImmutableBiMap
H A DImmutableListMultimap.java30 * iteration order. Does not permit null keys or values.
174 @Override public Builder<K, V> putAll(K key, Iterable<? extends V> values) { argument
175 super.putAll(key, values);
179 @Override public Builder<K, V> putAll(K key, V... values) { argument
180 super.putAll(key, values);
270 * Returns an immutable list of the values for the given key. If no mappings
272 * returned. The values are in the same order as the parameters used to build
323 K key, Iterable<? extends V> values) {
322 replaceValues( K key, Iterable<? extends V> values) argument
H A DLinkedHashMultimap.java41 * replaceValues} return collections that iterate through the values in the
43 * {@code values} iterate across the key-value mappings in the order they were
49 * iteration order. However, if you remove all values associated with a key and
56 * <p>Keys and values may be null. All optional multimap methods are supported,
91 * the specified numbers of keys and values without rehashing.
94 * @param expectedValuesPerKey the expected average number of values per key
142 * <p>Creates an empty {@code LinkedHashSet} for a collection of values for
145 * @return a new {@code LinkedHashSet} containing a collection of values for
158 * @param key key to associate with values in the collection
160 * values fo
183 createEntries(Collection<E> values) argument
201 addAll(Collection<? extends V> values) argument
250 removeAll(Collection<?> values) argument
258 retainAll(Collection<?> values) argument
319 replaceValues( @ullable K key, Iterable<? extends V> values) argument
347 @Override public Collection<V> values() { method in class:LinkedHashMultimap
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DSetNavigationTester.java45 private List<E> values; field in class:SetNavigationTester
53 values = Helpers.copyToList(getSubjectGenerator().getSampleElements(
55 Collections.sort(values, navigableSet.comparator());
58 if (values.size() >= 1) {
59 a = values.get(0);
60 if (values.size() >= 3) {
61 b = values.get(1);
62 c = values.get(2);
156 values.subList(1, values
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DForwardingSortedMapTest.java84 @Override public Collection<V> values() { method in class:ForwardingSortedMapTest.StandardImplForwardingSortedMap
H A DMapsTransformValuesUnmodifiableIteratorTest.java74 @Override public Collection<V> values() { method in class:MapsTransformValuesUnmodifiableIteratorTest.UnmodifiableIteratorMap
77 return delegate.values();
80 return Iterators.unmodifiableIterator(delegate.values().iterator());
83 return delegate.values().removeAll(c);
86 return delegate.values().retainAll(c);
142 Collection<?> expectedValues = expected.values();
143 Collection<?> mapValues = map.values();
269 Collection<String> values = map.values();
270 values
[all...]
H A DSynchronizedMultimapTest.java105 Iterable<? extends V> values) {
107 return super.putAll(key, values);
116 Iterable<? extends V> values) {
118 return super.replaceValues(key, values);
149 @Override public Collection<V> values() { method in class:SynchronizedMultimapTest.TestMultimap
152 return super.values();
104 putAll(@ullable K key, Iterable<? extends V> values) argument
115 replaceValues(@ullable K key, Iterable<? extends V> values) argument
/external/icu4c/i18n/
H A Dsortkey.cpp99 void CollationKey::adopt(uint8_t *values, int32_t capacity, int32_t count) { argument
103 fBytes = values;
182 // on memcmp returning the exact values which match
/external/icu4c/layoutex/
H A DRunArrays.cpp213 le_int32 *values = (le_int32 *) fValues; local
215 values[index] = value;
/external/icu4c/test/perf/unisetperf/draft/
H A Dbitset.cpp32 uint16_t values[0x800]; member in struct:BMPBitHash
38 // Fill values[] with 0xffff.
39 uprv_memset(values, 0xff, sizeof(values));
54 if(values[hash]==0xffff) {
58 return values[hash]=count++;
61 return values[hash];
73 * indexed by their mapped values.
/external/icu4c/tools/toolutil/
H A Ddenseranges.cpp89 * @param values Sorted array of signed-integer values.
90 * @param length Number of values.
99 uprv_makeDenseRanges(const int32_t values[], int32_t length, argument
105 int32_t minValue=values[0];
106 int32_t maxValue=values[length-1]; // Assume minValue<=maxValue.
126 int32_t actualValue=values[i];
132 // We know gaps.count()>=1 because we have fewer values (length) than
138 // The values are too sparse for capacity or fewer ranges
/external/jmonkeyengine/engine/src/core/com/jme3/util/
H A DListMap.java300 public Collection<V> values() { method in class:ListMap
301 return backingMap.values();
302 // ArrayList<V> values = new ArrayList<V>();
305 // values.add(entry.value);
307 // return values;
/external/jsilver/src/com/google/clearsilver/jsilver/values/
H A DValue.java17 package com.google.clearsilver.jsilver.values;
78 * and unescaped values.
158 * partiallyEscaped} values of the inputs.
177 * partiallyEscaped} values of the inputs.
196 * partiallyEscaped} values of the inputs.
/external/libsepol/src/
H A Dgenbools.c209 int sepol_genbools_array(void *data, size_t len, char **names, int *values, argument
230 if (values[i] != 0 && values[i] != 1) {
232 values[i], names[i]);
236 datum->state = values[i];

Completed in 365 milliseconds

1234567891011>>