HomeSort by relevance Sort by last modified time
    Searched refs:nextEntry (Results 1 - 25 of 292) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/Camera2/src/com/android/camera/async/
ConcurrentBufferQueue.java 156 private T doWithNextEntry(Entry<T> nextEntry) throws BufferQueueClosedException {
157 if (nextEntry.isClosingMarker()) {
160 mQueue.add(nextEntry);
163 return nextEntry.getValue();
169 Entry<T> nextEntry = mQueue.take();
170 return doWithNextEntry(nextEntry);
176 Entry<T> nextEntry = mQueue.poll(timeout, unit);
177 if (nextEntry == null) {
180 return doWithNextEntry(nextEntry);
185 Entry<T> nextEntry = mQueue.peek()
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixDirectoryStream.java 151 private Path nextEntry;
212 if (nextEntry == null && !atEof)
213 nextEntry = readNextEntry();
214 return nextEntry != null;
220 if (nextEntry == null && !atEof) {
223 result = nextEntry;
224 nextEntry = null;
  /frameworks/base/tools/aapt/
DirectoryWalker.h 31 virtual struct dirent* nextEntry() = 0;
73 virtual struct dirent* nextEntry() {
FileFinder.cpp 55 while ((entry = dw->nextEntry()) != NULL) {
  /external/turbine/java/com/google/turbine/bytecode/
ConstantPool.java 34 int nextEntry = 1;
162 int entry = nextEntry;
164 nextEntry += width(key.kind());
165 if ((nextEntry & 0xffff) != nextEntry) {
ClassWriter.java 85 output.writeShort(constantPool.nextEntry);
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
LinkedHashMultimap.java 354 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/
WeakConcurrentMap.java 293 private Map.Entry<WeakKey<K>, V> nextEntry;
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/
AnnotatedBytes.java 165 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/
SlotIndexes.h 656 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, startEntry)
    [all...]
  /frameworks/base/core/java/android/util/jar/
StrictJarFile.java 261 private ZipEntry nextEntry;
268 if (nextEntry != null) {
269 final ZipEntry ze = nextEntry;
270 nextEntry = null;
278 if (nextEntry != null) {
287 nextEntry = ze;
  /external/deqp/framework/randomshaders/
rsgVariableManager.hpp 131 Iterator nextEntry = m_iter;
133 nextEntry = findNext(m_filter, nextEntry, m_end);
134 return FilteredIterator(nextEntry, m_end, m_filter);
  /frameworks/base/libs/androidfw/include/androidfw/
ZipFileRO.h 106 ZipEntryRO nextEntry(void* cookie);
  /frameworks/base/tools/aapt/tests/
MockDirectoryWalker.h 42 virtual struct dirent* nextEntry() {
  /external/guava/guava/src/com/google/common/collect/
LinkedHashMultimap.java 358 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;
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
SortedMapNavigationTester.java 173 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/
antlr3collections.c 201 pANTLR3_HASH_ENTRY nextEntry;
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; /* Address of the next element in the bucket (if any) *
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
LocalCache.java 543 Entry<K, Timestamped<V>> nextEntry;
551 if (nextEntry == null) {
554 if (nextEntry == null) {
559 lastEntry = nextEntry;
560 nextEntry = null;
566 if (nextEntry == null) {
570 nextEntry = next;
  /frameworks/support/jetifier/jetifier/processor/src/main/kotlin/com/android/tools/build/jetifier/processor/archive/
Archive.kt 141 var entry: ZipEntry? = zipIn.nextEntry
154 entry = zipIn.nextEntry
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/analysis/
Analyzer.java 259 while ((entry = nextEntry(zip, location)) != null) {
265 private ZipEntry nextEntry(final ZipInputStream input,
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/instr/
Instrumenter.java 214 while ((entry = nextEntry(zipin, name)) != null) {
230 private ZipEntry nextEntry(final ZipInputStream input,
  /external/mockito/src/test/java/org/mockito/internal/stubbing/defaultanswers/
ReturnsGenericDeepStubsTest.java 41 Map.Entry<? extends Cloneable, Set<Number>> nextEntry = mock.entrySet().iterator().next();
  /external/turbine/javatests/com/google/turbine/bytecode/
ClassWriterTest.java 99 while (pool.nextEntry < 0xffff) {
  /frameworks/base/core/jni/
com_android_internal_content_NativeLibraryHelper.cpp 329 while ((next = mZipFile->nextEntry(mCookie)) != NULL) {
533 while ((next = zipFile->nextEntry(cookie)) != NULL) {
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3collections.h 83 struct ANTLR3_HASH_ENTRY_struct * nextEntry;

Completed in 1861 milliseconds

1 2 3 4 5 6 7 8 91011>>