Home
last modified time | relevance | path

Searched refs:nextEntry (Results 1 – 25 of 40) sorted by relevance

12

/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/examples/
DExpander.java243 ArchiveEntry nextEntry = supplier.getNextReadableEntry(); in expand() local
244 while (nextEntry != null) { in expand()
245 File f = new File(targetDirectory, nextEntry.getName()); in expand()
247 throw new IOException("expanding " + nextEntry.getName() in expand()
250 if (nextEntry.isDirectory()) { in expand()
260 writer.writeEntryDataTo(nextEntry, o); in expand()
263 nextEntry = supplier.getNextReadableEntry(); in expand()
/external/turbine/java/com/google/turbine/bytecode/
DConstantPool.java34 int nextEntry = 1; field in ConstantPool
189 int entry = nextEntry; in insert()
191 nextEntry += width(key.kind()); in insert()
192 if ((nextEntry & 0xffff) != nextEntry) { in insert()
DClassWriter.java83 output.writeShort(constantPool.nextEntry); in writeConstantPool()
/external/mockito/src/main/java/org/mockito/internal/util/concurrent/
DWeakConcurrentMap.java296 private Map.Entry<WeakKey<K>, V> nextEntry; field in WeakConcurrentMap.EntryIterator
307 nextEntry = iterator.next(); in findNext()
308 nextKey = nextEntry.getKey().get(); in findNext()
313 nextEntry = null; in findNext()
328 return new SimpleEntry(nextKey, nextEntry); in next()
/external/antlr/runtime/C/src/
Dantlr3collections.c201 pANTLR3_HASH_ENTRY nextEntry; in antlr3HashFree() local
225 nextEntry = entry->nextEntry; in antlr3HashFree()
246 entry = nextEntry; /* Load next pointer to see if we shoud free it */ in antlr3HashFree()
308 (*nextPointer) = entry->nextEntry; in antlr3HashRemoveI()
319 … nextPointer = & (entry->nextEntry); /* Address of the next pointer in the current entry */ in antlr3HashRemoveI()
320 entry = entry->nextEntry; /* Address of the next element in the bucket (if any) */ in antlr3HashRemoveI()
365 (*nextPointer) = entry->nextEntry; in antlr3HashRemove()
384 … nextPointer = & (entry->nextEntry); /* Address of the next pointer in the current entry */ in antlr3HashRemove()
385 entry = entry->nextEntry; /* Address of the next element in the bucket (if any) */ in antlr3HashRemove()
471 entry = entry->nextEntry; in antlr3HashGetI()
[all …]
/external/guava/android/guava/src/com/google/common/collect/
DLinkedHashMultimap.java409 ValueSetLink<K, V> nextEntry = firstEntry; in iterator()
422 return nextEntry != ValueSet.this; in iterator()
431 ValueEntry<K, V> entry = (ValueEntry<K, V>) nextEntry; in iterator()
434 nextEntry = entry.getSuccessorInValueSet(); in iterator()
551 ValueEntry<K, V> nextEntry = multimapHeaderEntry.getSuccessorInMultimap(); in entryIterator()
556 return nextEntry != multimapHeaderEntry; in entryIterator()
564 ValueEntry<K, V> result = nextEntry; in entryIterator()
566 nextEntry = nextEntry.getSuccessorInMultimap(); in entryIterator()
DMapMakerInternalMap.java2514 @CheckForNull E nextEntry; field in MapMakerInternalMap.HashIterator
2552 if (nextEntry != null) { in nextInChain()
2553 for (nextEntry = nextEntry.getNext(); nextEntry != null; nextEntry = nextEntry.getNext()) { in nextInChain()
2554 if (advanceTo(nextEntry)) { in nextInChain()
2565 if ((nextEntry = currentTable.get(nextTableIndex--)) != null) { in nextInTable()
2566 if (advanceTo(nextEntry) || nextInChain()) { in nextInTable()
2599 WriteThroughEntry nextEntry() { in nextEntry() method in MapMakerInternalMap.HashIterator
2620 return nextEntry().getKey(); in next()
2628 return nextEntry().getValue(); in next()
2683 return nextEntry(); in next()
/external/guava/guava/src/com/google/common/collect/
DLinkedHashMultimap.java413 ValueSetLink<K, V> nextEntry = firstEntry; in iterator()
426 return nextEntry != ValueSet.this; in iterator()
435 ValueEntry<K, V> entry = (ValueEntry<K, V>) nextEntry; in iterator()
438 nextEntry = entry.getSuccessorInValueSet(); in iterator()
565 ValueEntry<K, V> nextEntry = multimapHeaderEntry.getSuccessorInMultimap(); in entryIterator()
570 return nextEntry != multimapHeaderEntry; in entryIterator()
578 ValueEntry<K, V> result = nextEntry; in entryIterator()
580 nextEntry = nextEntry.getSuccessorInMultimap(); in entryIterator()
DMapMakerInternalMap.java2509 @Nullable E nextEntry; field in MapMakerInternalMap.HashIterator
2547 if (nextEntry != null) { in nextInChain()
2548 for (nextEntry = nextEntry.getNext(); nextEntry != null; nextEntry = nextEntry.getNext()) { in nextInChain()
2549 if (advanceTo(nextEntry)) { in nextInChain()
2560 if ((nextEntry = currentTable.get(nextTableIndex--)) != null) { in nextInTable()
2561 if (advanceTo(nextEntry) || nextInChain()) { in nextInTable()
2594 WriteThroughEntry nextEntry() { in nextEntry() method in MapMakerInternalMap.HashIterator
2615 return nextEntry().getKey(); in next()
2623 return nextEntry().getValue(); in next()
2678 return nextEntry(); in next()
/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/util/
DAnnotatedBytes.java164 Map.Entry<Integer, AnnotationEndpoint> nextEntry = annotatations.higherEntry(cursor); in annotate() local
165 if (nextEntry != null) { in annotate()
166 int nextKey = nextEntry.getKey(); in annotate()
170 AnnotationEndpoint nextEndpoint = nextEntry.getValue(); in annotate()
194 endPoint = nextEntry.getValue(); in annotate()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
DAnnotatedBytes.java165 Map.Entry<Integer, AnnotationEndpoint> nextEntry = annotatations.higherEntry(cursor); in annotate() local
166 if (nextEntry != null) { in annotate()
167 int nextKey = nextEntry.getKey(); in annotate()
171 AnnotationEndpoint nextEndpoint = nextEntry.getValue(); in annotate()
195 endPoint = nextEntry.getValue(); in annotate()
/external/antlr/runtime/ObjC/Framework/
DLinkedHashMap.h150 LHMEntry *nextEntry; variable
155 @property (retain) LHMEntry *nextEntry;
164 - (LHMEntry *) nextEntry;
DLinkedHashMap.m83 @synthesize nextEntry;
97 nextEntry = lhm.header.after;
115 return nextEntry != lhm.header;
129 - (LHMEntry *) nextEntry
133 if (nextEntry == lhm.header)
135 LHMEntry * e = lastReturned = nextEntry;
136 nextEntry = e.after;
142 [nextEntry release];
165 return [self nextEntry].key;
186 return [self nextEntry].value;
[all …]
/external/dagger2/java/dagger/hilt/android/plugin/src/main/kotlin/dagger/hilt/android/plugin/util/
DFiles.kt21 var inputEntry = nextEntry in isClassFile()
24 inputEntry = nextEntry in isClassFile()
/external/deqp/framework/randomshaders/
DrsgVariableManager.hpp137 Iterator nextEntry = m_iter; in operator +() local
139 nextEntry = findNext(m_filter, nextEntry, m_end); in operator +()
140 return FilteredIterator(nextEntry, m_end, m_filter); in operator +()
/external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
DLocalCache.java544 Entry<K, Timestamped<V>> nextEntry; field in LocalCache.EntryIterator
552 if (nextEntry == null) { in next()
555 if (nextEntry == null) { in next()
560 lastEntry = nextEntry; in next()
561 nextEntry = null; in next()
567 if (nextEntry == null) { in hasNext()
571 nextEntry = next; in hasNext()
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/
DIOMethodsTest.java151 final ArchiveEntry nextEntry = ais1.getNextEntry(); in compareReads() local
152 assertNotNull(nextEntry); in compareReads()
155 final long size = nextEntry.getSize(); in compareReads()
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
DSortedMapNavigationTester.java185 Entry<K, V> nextEntry = entryItr.next(); in testOrderedByComparator() local
186 assertTrue(comparator.compare(prevEntry.getKey(), nextEntry.getKey()) < 0); in testOrderedByComparator()
187 prevEntry = nextEntry; in testOrderedByComparator()
/external/guava/android/guava-testlib/src/com/google/common/collect/testing/testers/
DSortedMapNavigationTester.java185 Entry<K, V> nextEntry = entryItr.next(); in testOrderedByComparator() local
186 assertTrue(comparator.compare(prevEntry.getKey(), nextEntry.getKey()) < 0); in testOrderedByComparator()
187 prevEntry = nextEntry; in testOrderedByComparator()
/external/dagger2/java/dagger/hilt/android/plugin/src/main/kotlin/dagger/hilt/android/plugin/
DAndroidEntryPointClassTransformer.kt79 var entry = input.nextEntry in <lambda>()
86 entry = input.nextEntry in <lambda>()
/external/jacoco/org.jacoco.core/src/org/jacoco/core/analysis/
DAnalyzer.java266 while ((entry = nextEntry(zip, location)) != null) { in analyzeZip()
272 private ZipEntry nextEntry(final ZipInputStream input, in nextEntry() method in Analyzer
/external/jacoco/org.jacoco.core/src/org/jacoco/core/instr/
DInstrumenter.java214 while ((entry = nextEntry(zipin, name)) != null) { in instrumentZip()
263 private ZipEntry nextEntry(final ZipInputStream input, in nextEntry() method in Instrumenter
/external/angle/util/windows/third_party/StackWalker/src/
DStackWalker.h157 nextEntry, enumerator
/external/mockito/src/test/java/org/mockito/internal/stubbing/defaultanswers/
DReturnsGenericDeepStubsTest.java41 Map.Entry<? extends Cloneable, Set<Number>> nextEntry = mock.entrySet().iterator().next(); in generic_deep_mock_frenzy__look_at_these_chained_calls() local
/external/guava/android/guava/src/com/google/common/cache/
DLocalCache.java4190 @CheckForNull ReferenceEntry<K, V> nextEntry;
4228 if (nextEntry != null) {
4229 for (nextEntry = nextEntry.getNext(); nextEntry != null; nextEntry = nextEntry.getNext()) {
4230 if (advanceTo(nextEntry)) {
4241 if ((nextEntry = currentTable.get(nextTableIndex--)) != null) {
4242 if (advanceTo(nextEntry) || nextInChain()) {
4276 WriteThroughEntry nextEntry() {
4297 return nextEntry().getKey();
4305 return nextEntry().getValue();
4365 return nextEntry();

12