Searched refs:nextEntry (Results 1 - 25 of 44) sorted by relevance

12

/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DLinkedHashMultimap.java354 ValueSetLink<K, V> nextEntry = firstEntry;
367 return nextEntry != ValueSet.this;
375 ValueEntry<K, V> entry = (ValueEntry<K, V>) nextEntry;
378 nextEntry = entry.getSuccessorInValueSet();
491 ValueEntry<K, V> nextEntry = multimapHeaderEntry.successorInMultimap;
496 return nextEntry != multimapHeaderEntry;
504 ValueEntry<K, V> result = nextEntry;
506 nextEntry = nextEntry.successorInMultimap;
/external/mockito/src/main/java/org/mockito/internal/util/concurrent/
H A DWeakConcurrentMap.java293 private Map.Entry<WeakKey<K>, V> nextEntry; field in class:WeakConcurrentMap.EntryIterator
304 nextEntry = iterator.next();
305 nextKey = nextEntry.getKey().get();
310 nextEntry = null;
325 return new SimpleEntry(nextKey, nextEntry);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
H A DAnnotatedBytes.java165 Map.Entry<Integer, AnnotationEndpoint> nextEntry = annotatations.higherEntry(cursor);
166 if (nextEntry != null) {
167 int nextKey = nextEntry.getKey();
171 AnnotationEndpoint nextEndpoint = nextEntry.getValue();
195 endPoint = nextEntry.getValue();
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
H A DSlotIndexes.h656 IndexListEntry *prevEntry, *nextEntry;
659 nextEntry = &getIndexAfter(mi).entry();
660 prevEntry = nextEntry->getPrev();
664 nextEntry = prevEntry->getNext();
669 unsigned dist = ((nextEntry->getIndex() - prevEntry->getIndex())/2) & ~3u;
674 insert(nextEntry, newEntry);
720 IndexListEntry *nextEntry = 0;
723 nextEntry = getTail();
725 nextEntry = &getMBBStartIdx(nextMBB).entry();
728 insert(nextEntry, startEntr
[all...]
/external/deqp/framework/randomshaders/
H A DrsgVariableManager.hpp131 Iterator nextEntry = m_iter; local
133 nextEntry = findNext(m_filter, nextEntry, m_end);
134 return FilteredIterator(nextEntry, m_end, m_filter);
/external/guava/guava/src/com/google/common/collect/
H A DLinkedHashMultimap.java358 ValueSetLink<K, V> nextEntry = firstEntry;
371 return nextEntry != ValueSet.this;
379 ValueEntry<K, V> entry = (ValueEntry<K, V>) nextEntry;
382 nextEntry = entry.getSuccessorInValueSet();
495 ValueEntry<K, V> nextEntry = multimapHeaderEntry.successorInMultimap;
500 return nextEntry != multimapHeaderEntry;
508 ValueEntry<K, V> result = nextEntry;
510 nextEntry = nextEntry.successorInMultimap;
H A DMapMakerInternalMap.java3596 ReferenceEntry<K, V> nextEntry; field in class:MapMakerInternalMap.HashIterator
3636 if (nextEntry != null) {
3637 for (nextEntry = nextEntry.getNext(); nextEntry != null; nextEntry = nextEntry.getNext()) {
3638 if (advanceTo(nextEntry)) {
3651 if ((nextEntry = currentTable.get(nextTableIndex--)) != null) {
3652 if (advanceTo(nextEntry) || nextInChai
3685 WriteThroughEntry nextEntry() { method in class:MapMakerInternalMap.HashIterator
[all...]
H A DHashBiMap.java293 BiEntry<K, V> nextEntry = entry.nextInKToVBucket;
295 entry = nextEntry;
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DSortedMapNavigationTester.java173 Entry<K, V> nextEntry = entryItr.next();
174 assertTrue(comparator.compare(prevEntry.getKey(), nextEntry.getKey()) < 0);
175 prevEntry = nextEntry;
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3collections.c201 pANTLR3_HASH_ENTRY nextEntry; local
225 nextEntry = entry->nextEntry;
246 entry = nextEntry; /* Load next pointer to see if we shoud free it */
308 (*nextPointer) = entry->nextEntry;
319 nextPointer = & (entry->nextEntry); /* Address of the next pointer in the current entry */
320 entry = entry->nextEntry; /* Address of the next element in the bucket (if any) */
365 (*nextPointer) = entry->nextEntry;
384 nextPointer = & (entry->nextEntry); /* Address of the next pointer in the current entry */
385 entry = entry->nextEntry; /* Addres
2193 pANTLR3_TRIE_ENTRY nextEntry; local
[all...]
/external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
H A DLocalCache.java543 Entry<K, Timestamped<V>> nextEntry; field in class:LocalCache.EntryIterator
551 if (nextEntry == null) {
554 if (nextEntry == null) {
559 lastEntry = nextEntry;
560 nextEntry = null;
566 if (nextEntry == null) {
570 nextEntry = next;
/external/mockito/src/test/java/org/mockito/internal/stubbing/defaultanswers/
H A DReturnsGenericDeepStubsTest.java41 Map.Entry<? extends Cloneable, Set<Number>> nextEntry = mock.entrySet().iterator().next();
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3collections.h83 struct ANTLR3_HASH_ENTRY_struct * nextEntry; member in struct:ANTLR3_HASH_ENTRY_struct
/external/guava/guava/src/com/google/common/cache/
H A DLocalCache.java4254 ReferenceEntry<K, V> nextEntry; field in class:LocalCache.HashIterator
4294 if (nextEntry != null) {
4295 for (nextEntry = nextEntry.getNext(); nextEntry != null; nextEntry = nextEntry.getNext()) {
4296 if (advanceTo(nextEntry)) {
4309 if ((nextEntry = currentTable.get(nextTableIndex--)) != null) {
4310 if (advanceTo(nextEntry) || nextInChai
4344 WriteThroughEntry nextEntry() { method in class:LocalCache.HashIterator
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.core_2.0.2.R36x_v20100804.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.metadata.generator_1.0.200.v20100503a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.publisher_1.1.2.v20100824-2220.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.databinding.observable_1.3.0.I20100601-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/guice/extensions/persist/lib/
H A Dcommons-collections.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt META-INF/NOTICE ...
H A Dhibernate-search.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/hibernate/ org/hibernate/search/ org/hibernate/search/annotations/ ...
/external/caliper/lib/
H A Djersey-core-1.11.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/jersey-module-version META- ...
H A Dgson-2.2.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gson/ com/google/gson/stream/ ...
/external/guice/lib/
H A Dguava-16.0.1.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...
/external/testng/lib-supplied/
H A Dguice-2.0.jarMETA-INF/ META-INF/MANIFEST.MF LICENSE NOTICE org/ org/testng/ org/testng/guice/ org/testng/ ...
/external/dagger2/lib/
H A Dauto-value-1.0.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/auto/ com/google/auto/value/ ...

Completed in 800 milliseconds

12