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

1 2

  /dalvik/vm/
ReferenceTable.h 37 * table/nextEntry is allowed.)
40 Object** nextEntry; /* top of the list */
70 return pRef->nextEntry - pRef->table;
  /frameworks/base/tools/aapt/
DirectoryWalker.h 31 virtual struct dirent* nextEntry() = 0;
73 virtual struct dirent* nextEntry() {
  /frameworks/base/tools/aapt/tests/
MockDirectoryWalker.h 42 virtual struct dirent* nextEntry() {
  /libcore/luni/src/main/java/java/util/
LinkedHashMap.java 348 final LinkedEntry<K, V> nextEntry() {
370 public final K next() { return nextEntry().key; }
374 public final V next() { return nextEntry().value; }
379 public final Map.Entry<K, V> next() { return nextEntry(); }
WeakHashMap.java 118 private Entry<K, V> currentEntry, nextEntry;
130 if (nextEntry != null && (nextKey != null || nextEntry.isNull)) {
134 if (nextEntry == null) {
136 if ((nextEntry = elementData[position++]) != null) {
140 if (nextEntry == null) {
145 nextKey = nextEntry.get();
146 if (nextKey != null || nextEntry.isNull) {
149 nextEntry = nextEntry.next
    [all...]
HashMap.java 771 HashMapEntry<K, V> nextEntry = entryForNullKey;
776 if (nextEntry == null) {
782 nextEntry = next;
787 return nextEntry != null;
790 HashMapEntry<K, V> nextEntry() {
793 if (nextEntry == null)
796 HashMapEntry<K, V> entryToReturn = nextEntry;
802 nextEntry = next;
819 public K next() { return nextEntry().key; }
824 public V next() { return nextEntry().value;
    [all...]
Hashtable.java 713 HashtableEntry<K, V> nextEntry;
723 nextEntry = next;
727 return nextEntry != null;
730 HashtableEntry<K, V> nextEntry() {
733 if (nextEntry == null)
736 HashtableEntry<K, V> entryToReturn = nextEntry;
742 nextEntry = next;
747 if (nextEntry == null)
750 HashtableEntry<K, V> entryToReturn = nextEntry;
756 nextEntry = next
    [all...]
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3collections.h 83 struct ANTLR3_HASH_ENTRY_struct * 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...]
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
ApiLookup.java 442 int nextEntry = buffer.position();
450 buffer.putInt(nextEntry);
452 buffer.position(nextEntry);
462 nextEntry = buffer.position();
479 buffer.putInt(nextEntry);
481 buffer.position(nextEntry);
512 nextEntry = buffer.position();
    [all...]
TypoLookup.java 382 int nextEntry = buffer.position();
391 buffer.putInt(nextEntry);
393 buffer.position(nextEntry);
398 nextEntry = buffer.position();
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentHashMap.java     [all...]
  /packages/apps/Mms/src/com/android/mms/dom/smil/
SmilPlayer.java 688 TimelineEntry nextEntry = actionNext();
689 if (nextEntry != null) {
690 entry = nextEntry;
  /frameworks/base/services/input/
InputDispatcher.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.core_2.0.2.R36x_v20100804.jar 
org.eclipse.equinox.p2.metadata.generator_1.0.200.v20100503a.jar 
org.eclipse.core.databinding.observable_1.3.0.I20100601-0800.jar 
org.eclipse.equinox.p2.publisher_1.1.2.v20100824-2220.jar 
  /tools/motodev/src/plugins/videos/libs/gdata/java/deps/
google-collect-1.0-rc1.jar 
  /prebuilts/sdk/tools/lib/
guava-10.0.1.jar 
lint.jar 
lint_api.jar 
lint_checks.jar 
  /prebuilts/tools/common/guava-tools/
guava-13.0.1.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-nodeps.jar 

Completed in 2073 milliseconds

1 2