Searched refs:entries (Results 226 - 250 of 606) sorted by relevance

1234567891011>>

/external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/
H A DMapSerializer.java61 struct MapEntry[length] entries {
136 Set<Entry> entries = map.entrySet();
138 Iterator<Entry> it = entries.iterator();
175 it = entries.iterator();
/external/kernel-headers/original/uapi/linux/netfilter_ipv6/
H A Dip6_tables.h57 #define IP6T_ENTRY_ITERATE(entries, size, fn, args...) \
58 XT_ENTRY_ITERATE(struct ip6t_entry, entries, size, fn, ## args)
209 /* Number of entries */
212 /* Size of entries. */
225 /* Number of entries */
228 /* Total size of new entries */
237 /* Information about old entries: */
238 /* Number of counters (must be equal to current number of entries). */
240 /* The old entries' counters. */
243 /* The entries (han
244 struct ip6t_entry entries[0]; member in struct:ip6t_replace
[all...]
/external/linux-tools-perf/src/tools/perf/util/
H A Devlist.h28 struct list_head entries; member in struct:perf_evlist
158 return list_entry(evlist->entries.next, struct perf_evsel, node);
163 return list_entry(evlist->entries.prev, struct perf_evsel, node);
/external/sfntly/cpp/src/test/
H A Dcmap_iterator_test.cc90 BitSet* entries = new BitSet(count); local
94 (*entries)[c] = true;
96 return entries;
/external/guava/guava/src/com/google/common/collect/
H A DForwardingMultimap.java72 public Collection<Entry<K, V>> entries() { method in class:ForwardingMultimap
73 return delegate().entries();
H A DMultimap.java86 * <li>{@link #keys}, {@link #keySet}, {@link #values}, {@link #entries}, which
245 * order returned by {@code multimap.entries()}.
333 * <p>Changes to the returned collection or the entries it contains will
337 Collection<Map.Entry<K, V>> entries(); method in interface:Multimap
348 * support {@code put} or {@code putAll}, nor do its entries support {@link
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DForwardingImmutableMap.java41 ForwardingImmutableMap(Entry<? extends K, ? extends V>... entries) { argument
43 for (Entry<? extends K, ? extends V> entry : entries) {
H A DImmutableSetMultimap.java80 * Returns an immutable multimap containing the given entries, in order.
92 * Returns an immutable multimap containing the given entries, in order.
106 * Returns an immutable multimap containing the given entries, in order.
121 * Returns an immutable multimap containing the given entries, in order.
136 // looking for of() with > 5 entries? Use the builder instead.
263 List<Map.Entry<K, Collection<V>>> entries = Lists.newArrayList(
266 entries,
268 for (Map.Entry<K, Collection<V>> entry : entries) {
376 for (Entry<K, V> entry : entries()) {
405 private transient ImmutableSet<Entry<K, V>> entries; field in class:ImmutableSetMultimap
412 @Override public ImmutableSet<Entry<K, V>> entries() { method in class:ImmutableSetMultimap
[all...]
/external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
H A DJoinerTest.java262 assertEquals("", j.join(ImmutableMultimap.of().entries()));
263 assertEquals("", j.join(ImmutableMultimap.of().entries().iterator()));
264 assertEquals(":", j.join(ImmutableMultimap.of("", "").entries()));
265 assertEquals(":", j.join(ImmutableMultimap.of("", "").entries().iterator()));
266 assertEquals("1:a;1:b", j.join(ImmutableMultimap.of("1", "a", "1", "b").entries()));
267 assertEquals("1:a;1:b", j.join(ImmutableMultimap.of("1", "a", "1", "b").entries().iterator()));
290 j.appendTo(sb1, ImmutableMultimap.of(1, 2, 3, 4, 5, 6, 1, 3, 5, 10).entries());
294 j.appendTo(sb2, ImmutableMultimap.of(1, 2, 3, 4, 5, 6, 1, 3, 5, 10).entries().iterator());
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
H A DMultimapSizeTester.java46 for (Entry<K, V> entry : multimap.entries()) {
101 assertEquals(3, multimap().entries().size());
H A DMultimapTestSuiteBuilder.java156 .named(parentBuilder.getName() + ".entries")
283 for (Map.Entry<Feature<?>, Feature<?>> entry : GET_FEATURE_MAP.entries()) {
415 return multimapGenerator.create(elements).entries();
449 Entry<K, V>[] entries = new Entry[elements.length];
451 entries[i] = mapEntry(k, (V) elements[i]);
453 return multimapGenerator.create(entries).values();
467 List<Entry<K, V>> entries = new ArrayList<Entry<K, V>>();
469 entries.add(mapEntry(k, v));
471 Iterable<Entry<K, V>> ordered = multimapGenerator.order(entries);
505 Map.Entry[] entries
[all...]
/external/guava/guava-tests/test/com/google/common/base/
H A DJoinerTest.java265 assertEquals("", j.join(ImmutableMultimap.of().entries()));
266 assertEquals("", j.join(ImmutableMultimap.of().entries().iterator()));
267 assertEquals(":", j.join(ImmutableMultimap.of("", "").entries()));
268 assertEquals(":", j.join(ImmutableMultimap.of("", "").entries().iterator()));
269 assertEquals("1:a;1:b", j.join(ImmutableMultimap.of("1", "a", "1", "b").entries()));
270 assertEquals("1:a;1:b", j.join(ImmutableMultimap.of("1", "a", "1", "b").entries().iterator()));
293 j.appendTo(sb1, ImmutableMultimap.of(1, 2, 3, 4, 5, 6, 1, 3, 5, 10).entries());
297 j.appendTo(sb2, ImmutableMultimap.of(1, 2, 3, 4, 5, 6, 1, 3, 5, 10).entries().iterator());
/external/guava/guava-tests/test/com/google/common/collect/
H A DConstrainedMapTest.java106 protected Map<String, String> create(Entry<String, String>[] entries) { argument
110 for (Entry<String, String> entry : entries) {
H A DHashMultimapTest.java46 protected SetMultimap<String, String> create(Entry<String, String>[] entries) {
48 for (Entry<String, String> entry : entries) {
H A DImmutableEnumMapTest.java46 protected Map<AnEnum, String> create(Entry<AnEnum, String>[] entries) { argument
48 for (Entry<AnEnum, String> entry : entries) {
H A DSynchronizedBiMapTest.java78 protected BiMap<String, String> create(Entry<String, String>[] entries) { argument
81 for (Entry<String, String> entry : entries) {
91 protected BiMap<String, String> create(Entry<String, String>[] entries) { argument
96 for (Entry<String, String> entry : entries) {
/external/linux-tools-perf/src/tools/perf/ui/browsers/
H A Dmap.c105 .entries = &self->dso->symbols[self->type],
116 for (nd = rb_first(mb.b.entries); nd; nd = rb_next(nd)) {
/external/squashfs-tools/kernel/fs/squashfs/
H A Dfile.c152 meta->entries = 0;
263 offset = index < meta->offset + meta->entries ? index :
264 meta->offset + meta->entries - 1;
271 "meta->entries %d\n", offset, meta->offset,
272 meta->entries);
283 for (i = meta->offset + meta->entries; i <= index &&
290 if (meta->entries == 0)
306 meta->entries++;
310 TRACE("get_meta_index: meta->offset %d, meta->entries %d\n",
311 meta->offset, meta->entries);
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dextent.c41 int entries; member in struct:extent_path
76 printf("header: magic=%x entries=%u max=%u depth=%u generation=%u\n",
251 handle->path[0].left = handle->path[0].entries =
333 } else if (path->left < path->entries-1)
341 if (path->left < path->entries-1)
378 path->left = path->entries;
397 path->left+1 >= path->entries)
457 newpath->left = newpath->entries =
471 path->left = path->entries - 1;
742 (path->left == path->entries
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DDerivedCollectionGenerators.java127 // Start with a suitably shaped collection of entries
132 Collection<Map.Entry<K, V>> entries =
136 entries.add(Helpers.mapEntry(keysArray[i++], entry.getValue()));
139 return mapGenerator.create(entries.toArray()).keySet();
155 List<Entry<K, V>> entries = new ArrayList<Entry<K, V>>();
157 entries.add(mapEntry(element, v));
161 for (Entry<K, V> entry : mapGenerator.order(entries)) {
240 // Start with a suitably shaped collection of entries
245 Collection<Map.Entry<K, V>> entries =
249 entries
493 create(Object... entries) argument
[all...]
/external/icu/icu4c/source/i18n/
H A Ducol_sit.cpp102 } entries[UCOL_SIT_ITEMS_COUNT]; member in struct:CollatorSpec
307 spec->entries[i].start = start;
309 spec->entries[i].len = (int32_t)(end - start);
358 if(s->entries[i].start) {
365 optName = *(s->entries[i].start);
367 for(j = 0; j < s->entries[i].len; j++) {
369 destination[len+j] = uprv_toupper(*(s->entries[i].start+j));
372 len += s->entries[i].len;
374 len += s->entries[i].len;
376 uprv_strncat(destination,s->entries[
[all...]
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_tile_cache.c138 /*assert(tc->entries[pos].x < 0);*/
139 FREE( tc->entries[pos] );
396 tc->entries[pos]->data.depth32, 0/*STRIDE*/);
405 (unsigned *) tc->entries[pos]->data.colorui128);
412 (int *) tc->entries[pos]->data.colori128);
419 (float *) tc->entries[pos]->data.color);
439 struct softpipe_cached_tile *tile = tc->entries[pos];
472 if (!tc->entries[pos])
476 tc->tile = tc->entries[pos];
477 tc->entries[po
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DTBSCertList.java254 CRLEntry[] entries = new CRLEntry[revokedCertificates.size()];
256 for (int i = 0; i < entries.length; i++)
258 entries[i] = CRLEntry.getInstance(revokedCertificates.getObjectAt(i));
261 return entries;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/59/1/.cp/
H A DjdtCompilerAdapter.jar ... .zip.ZipFile jarFile java.util.Enumeration entries java.util.zip.ZipEntry entry org. ...
/external/guava/guava-gwt/src/com/google/common/collect/
H A DLinkedListMultimap_CustomFieldSerializer.java51 for (Map.Entry<?, ?> entry : multimap.entries()) {

Completed in 691 milliseconds

1234567891011>>