Home
last modified time | relevance | path

Searched refs:firstEntry (Results 1 – 25 of 82) sorted by relevance

1234

/external/guava/android/guava/src/com/google/common/collect/
DObjectCountLinkedHashMap.java71 private transient int firstEntry; field in ObjectCountLinkedHashMap
98 firstEntry = ENDPOINT; in init()
106 return (firstEntry == ENDPOINT) ? -1 : firstEntry; in firstIndex()
140 firstEntry = succ; in setSucceeds()
180 this.firstEntry = ENDPOINT; in clear()
DCompactLinkedHashMap.java90 private transient int firstEntry; field in CompactLinkedHashMap
113 this.firstEntry = ENDPOINT; in init()
164 firstEntry = succ; in setSucceeds()
217 return firstEntry; in firstEntryIndex()
230 this.firstEntry = ENDPOINT; in clear()
DCompactLinkedHashSet.java121 private transient int firstEntry; field in CompactLinkedHashSet
137 this.firstEntry = ENDPOINT; in init()
183 firstEntry = succ; in setSucceeds()
225 return firstEntry; in firstEntryIndex()
249 this.firstEntry = ENDPOINT; in clear()
DAbstractNavigableMap.java46 public Entry<K, V> firstEntry() { in firstEntry() method in AbstractNavigableMap
71 Entry<K, V> entry = firstEntry(); in firstKey()
105 return tailMap(key, true).firstEntry(); in ceilingEntry()
111 return tailMap(key, false).firstEntry(); in higherEntry()
DForwardingNavigableMap.java145 return tailMap(key, true).firstEntry(); in standardCeilingEntry()
177 return tailMap(key, false).firstEntry(); in standardHigherEntry()
198 public Entry<K, V> firstEntry() { in firstEntry() method in ForwardingNavigableMap
199 return delegate().firstEntry(); in firstEntry()
218 Entry<K, V> entry = firstEntry(); in standardFirstKey()
DLinkedHashMultimap.java366 private ValueSetLink<K, V> firstEntry; field in LinkedHashMultimap.ValueSet
371 this.firstEntry = this; in ValueSet()
393 return firstEntry; in getSuccessorInValueSet()
403 firstEntry = entry; in setSuccessorInValueSet()
409 ValueSetLink<K, V> nextEntry = firstEntry; in iterator()
496 for (ValueSetLink<K, V> entry = firstEntry; in rehashIfNecessary()
537 for (ValueSetLink<K, V> entry = firstEntry; in clear()
DDescendingImmutableSortedMultiset.java42 public Entry<E> firstEntry() { in firstEntry() method in DescendingImmutableSortedMultiset
49 return forward.firstEntry(); in lastEntry()
DSortedMultisets.java87 return getElementOrThrow(multiset().firstEntry()); in first()
120 return getElementOrNull(multiset().tailMultiset(e, CLOSED).firstEntry()); in ceiling()
126 return getElementOrNull(multiset().tailMultiset(e, OPEN).firstEntry()); in higher()
/external/proguard/src/proguard/gui/
DClassPathPanel.java267 ClassPathEntry firstEntry = (ClassPathEntry)listModel.get(index); in getFiltersFrom() local
269 filterDialog.setFilter(firstEntry.getFilter()); in getFiltersFrom()
270 filterDialog.setApkFilter(firstEntry.getApkFilter()); in getFiltersFrom()
271 filterDialog.setJarFilter(firstEntry.getJarFilter()); in getFiltersFrom()
272 filterDialog.setAarFilter(firstEntry.getAarFilter()); in getFiltersFrom()
273 filterDialog.setWarFilter(firstEntry.getWarFilter()); in getFiltersFrom()
274 filterDialog.setEarFilter(firstEntry.getEarFilter()); in getFiltersFrom()
275 filterDialog.setZipFilter(firstEntry.getZipFilter()); in getFiltersFrom()
/external/guava/guava/src/com/google/common/collect/
DCompactLinkedHashSet.java123 private transient int firstEntry; field in CompactLinkedHashSet
139 this.firstEntry = ENDPOINT; in init()
185 firstEntry = succ; in setSucceeds()
227 return firstEntry; in firstEntryIndex()
256 this.firstEntry = ENDPOINT; in clear()
DCompactLinkedHashMap.java95 private transient int firstEntry; field in CompactLinkedHashMap
118 this.firstEntry = ENDPOINT; in init()
169 firstEntry = succ; in setSucceeds()
222 return firstEntry; in firstEntryIndex()
293 this.firstEntry = ENDPOINT; in clear()
DAbstractNavigableMap.java46 public Entry<K, V> firstEntry() { in firstEntry() method in AbstractNavigableMap
71 Entry<K, V> entry = firstEntry(); in firstKey()
105 return tailMap(key, true).firstEntry(); in ceilingEntry()
111 return tailMap(key, false).firstEntry(); in higherEntry()
DForwardingNavigableMap.java146 return tailMap(key, true).firstEntry(); in standardCeilingEntry()
178 return tailMap(key, false).firstEntry(); in standardHigherEntry()
199 public Entry<K, V> firstEntry() { in firstEntry() method in ForwardingNavigableMap
200 return delegate().firstEntry(); in firstEntry()
219 Entry<K, V> entry = firstEntry(); in standardFirstKey()
DLinkedHashMultimap.java370 private ValueSetLink<K, V> firstEntry; field in LinkedHashMultimap.ValueSet
375 this.firstEntry = this; in ValueSet()
397 return firstEntry; in getSuccessorInValueSet()
407 firstEntry = entry; in setSuccessorInValueSet()
413 ValueSetLink<K, V> nextEntry = firstEntry; in iterator()
456 for (ValueSetLink<K, V> entry = firstEntry; in forEach()
510 for (ValueSetLink<K, V> entry = firstEntry; in rehashIfNecessary()
551 for (ValueSetLink<K, V> entry = firstEntry; in clear()
DDescendingImmutableSortedMultiset.java42 public Entry<E> firstEntry() { in firstEntry() method in DescendingImmutableSortedMultiset
49 return forward.firstEntry(); in lastEntry()
DSortedMultisets.java87 return getElementOrThrow(multiset().firstEntry()); in first()
120 return getElementOrNull(multiset().tailMultiset(e, CLOSED).firstEntry()); in ceiling()
126 return getElementOrNull(multiset().tailMultiset(e, OPEN).firstEntry()); in higher()
DUnmodifiableSortedMultiset.java76 public Entry<E> firstEntry() { in firstEntry() method in UnmodifiableSortedMultiset
77 return delegate().firstEntry(); in firstEntry()
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/extractor/src/test/java/com/google/android/exoplayer2/metadata/dvbsi/
DAppInfoTableDecoderTest.java46 Metadata.Entry firstEntry = metadata.get(0); in decode_typical() local
47 assertThat(firstEntry).isInstanceOf(AppInfoTable.class); in decode_typical()
48 assertThat(((AppInfoTable) firstEntry).controlCode) in decode_typical()
50 assertThat(((AppInfoTable) firstEntry).url).isEqualTo("http://example.com/path/foo"); in decode_typical()
/external/guava/guava-testlib/src/com/google/common/collect/testing/
DSortedMapInterfaceTest.java69 Entry<K, V> firstEntry = iterator.next(); in testTailMapWriteThrough() local
78 subMap.put(firstEntry.getKey(), value); in testTailMapWriteThrough()
96 Entry<K, V> firstEntry = iterator.next(); in testTailMapRemoveThrough() local
101 assertNull(subMap.remove(firstEntry.getKey())); in testTailMapRemoveThrough()
/external/guava/android/guava-testlib/src/com/google/common/collect/testing/
DSortedMapInterfaceTest.java69 Entry<K, V> firstEntry = iterator.next(); in testTailMapWriteThrough() local
78 subMap.put(firstEntry.getKey(), value); in testTailMapWriteThrough()
96 Entry<K, V> firstEntry = iterator.next(); in testTailMapRemoveThrough() local
101 assertNull(subMap.remove(firstEntry.getKey())); in testTailMapRemoveThrough()
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/extractor/src/test/java/com/google/android/exoplayer2/metadata/dvbsi/
DAppInfoTableDecoderTest.java46 Metadata.Entry firstEntry = metadata.get(0); in decode_typical() local
47 assertThat(firstEntry).isInstanceOf(AppInfoTable.class); in decode_typical()
48 assertThat(((AppInfoTable) firstEntry).controlCode) in decode_typical()
50 assertThat(((AppInfoTable) firstEntry).url).isEqualTo("http://example.com/path/foo"); in decode_typical()
/external/proguard/src/proguard/
DConfigurationChecker.java63 ClassPathEntry firstEntry = programJars.get(0); in check() local
64 if (firstEntry.isOutput()) in check()
66 throw new IOException("The output jar [" + firstEntry.getName() + in check()
/external/guava/android/guava-testlib/src/com/google/common/collect/testing/google/
DMultisetNavigationTester.java94 assertNull(sortedMultiset.firstEntry()); in testEmptyMultisetFirst()
112 assertNull(sortedMultiset.tailMultiset(e0(), type).firstEntry()); in testEmptyMultisetNearby()
134 assertEquals(a, sortedMultiset.firstEntry()); in testSingletonMultisetFirst()
150 assertEquals(a, sortedMultiset.tailMultiset(e0(), CLOSED).firstEntry()); in testSingletonMultisetNearby()
167 assertEquals(a, sortedMultiset.firstEntry()); in testFirst()
207 assertEquals(a, sortedMultiset.tailMultiset(a.getElement(), CLOSED).firstEntry()); in testCeiling()
208 assertEquals(c, sortedMultiset.tailMultiset(b.getElement(), CLOSED).firstEntry()); in testCeiling()
209 assertEquals(c, sortedMultiset.tailMultiset(c.getElement(), CLOSED).firstEntry()); in testCeiling()
215 assertEquals(c, sortedMultiset.tailMultiset(a.getElement(), OPEN).firstEntry()); in testHigher()
216 assertEquals(c, sortedMultiset.tailMultiset(b.getElement(), OPEN).firstEntry()); in testHigher()
[all …]
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
DMultisetNavigationTester.java94 assertNull(sortedMultiset.firstEntry()); in testEmptyMultisetFirst()
112 assertNull(sortedMultiset.tailMultiset(e0(), type).firstEntry()); in testEmptyMultisetNearby()
134 assertEquals(a, sortedMultiset.firstEntry()); in testSingletonMultisetFirst()
150 assertEquals(a, sortedMultiset.tailMultiset(e0(), CLOSED).firstEntry()); in testSingletonMultisetNearby()
167 assertEquals(a, sortedMultiset.firstEntry()); in testFirst()
207 assertEquals(a, sortedMultiset.tailMultiset(a.getElement(), CLOSED).firstEntry()); in testCeiling()
208 assertEquals(c, sortedMultiset.tailMultiset(b.getElement(), CLOSED).firstEntry()); in testCeiling()
209 assertEquals(c, sortedMultiset.tailMultiset(c.getElement(), CLOSED).firstEntry()); in testCeiling()
215 assertEquals(c, sortedMultiset.tailMultiset(a.getElement(), OPEN).firstEntry()); in testHigher()
216 assertEquals(c, sortedMultiset.tailMultiset(b.getElement(), OPEN).firstEntry()); in testHigher()
[all …]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DUnmodifiableSortedMultiset.java69 public Entry<E> firstEntry() { in firstEntry() method in UnmodifiableSortedMultiset
70 return delegate().firstEntry(); in firstEntry()

1234