Home
last modified time | relevance | path

Searched refs:lastEntry (Results 1 – 25 of 799) sorted by relevance

12345678910>>...32

/aosp_15_r20/development/tools/winscope/src/app/
H A Dtimeline_data.ts33 private lastEntry?: TraceEntry<object>;
87 this.lastEntry = this.findLastEntry();
157 if (this.lastEntry && position) {
159 this.lastEntry.getTimestamp().getValueNs() <
163 this.lastEntry,
199 if (!this.firstEntry || !this.lastEntry) {
207 this.lastEntry.getTimestamp(),
287 this.lastEntry?.getTimestamp().getValueNs()
356 this.lastEntry = undefined;
/aosp_15_r20/packages/apps/TV/src/com/android/tv/guide/
DProgramManager.java493 TableEntry lastEntry = entries.get(size - 1); in updateTableEntriesWithoutNotification() local
494 if (mEndUtcMillis < lastEntry.entryEndUtcMillis in updateTableEntriesWithoutNotification()
495 && lastEntry.entryEndUtcMillis != Long.MAX_VALUE) { in updateTableEntriesWithoutNotification()
496 mEndUtcMillis = lastEntry.entryEndUtcMillis; in updateTableEntriesWithoutNotification()
506 TableEntry lastEntry = entries.get(entries.size() - 1); in updateTableEntriesWithoutNotification() local
507 if (mEndUtcMillis > lastEntry.entryEndUtcMillis) { in updateTableEntriesWithoutNotification()
510 channelId, lastEntry.entryEndUtcMillis, mEndUtcMillis)); in updateTableEntriesWithoutNotification()
511 } else if (lastEntry.entryEndUtcMillis == Long.MAX_VALUE) { in updateTableEntriesWithoutNotification()
515 lastEntry.channelId, in updateTableEntriesWithoutNotification()
516 lastEntry.program, in updateTableEntriesWithoutNotification()
[all …]
/aosp_15_r20/external/guava/android/guava/src/com/google/common/collect/
H A DCompactLinkedHashMap.java95 private transient int lastEntry; field in CompactLinkedHashMap
116 this.lastEntry = ENDPOINT; in init()
172 lastEntry = pred; in setSucceeds()
182 setSucceeds(lastEntry, entryIndex); in insertEntry()
192 setSucceeds(lastEntry, index); in accessEntry()
233 this.lastEntry = ENDPOINT; in clear()
H A DObjectCountLinkedHashMap.java74 private transient int lastEntry; field in ObjectCountLinkedHashMap
99 lastEntry = ENDPOINT; in init()
145 lastEntry = pred; in setSucceeds()
154 setSucceeds(lastEntry, entryIndex); in insertEntry()
181 this.lastEntry = ENDPOINT; in clear()
H A DCompactLinkedHashSet.java124 private transient int lastEntry; field in CompactLinkedHashSet
138 this.lastEntry = ENDPOINT; in init()
189 lastEntry = pred; in setSucceeds()
198 setSucceeds(lastEntry, entryIndex); in insertEntry()
250 this.lastEntry = ENDPOINT; in clear()
H A DForwardingNavigableMap.java80 return headMap(key, false).lastEntry(); in standardLowerEntry()
112 return headMap(key, true).lastEntry(); in standardFloorEntry()
227 public Entry<K, V> lastEntry() { in lastEntry() method in ForwardingNavigableMap
228 return delegate().lastEntry(); in lastEntry()
246 Entry<K, V> entry = lastEntry(); in standardLastKey()
315 @CheckForNull private Entry<K, V> nextOrNull = forward().lastEntry(); in entryIterator()
H A DAbstractNavigableMap.java52 public Entry<K, V> lastEntry() { in lastEntry() method in AbstractNavigableMap
82 Entry<K, V> entry = lastEntry(); in lastKey()
93 return headMap(key, false).lastEntry(); in lowerEntry()
99 return headMap(key, true).lastEntry(); in floorEntry()
H A DSortedMultisets.java93 return getElementOrThrow(multiset().lastEntry()); in last()
108 return getElementOrNull(multiset().headMultiset(e, OPEN).lastEntry()); in lower()
114 return getElementOrNull(multiset().headMultiset(e, CLOSED).lastEntry()); in floor()
H A DLinkedHashMultimap.java368 private ValueSetLink<K, V> lastEntry; field in LinkedHashMultimap.ValueSet
373 this.lastEntry = this; in ValueSet()
389 return lastEntry; in getPredecessorInValueSet()
399 lastEntry = entry; in setPredecessorInValueSet()
480 succeedsInValueSet(lastEntry, newEntry); in add()
/aosp_15_r20/frameworks/av/services/camera/libcameraservice/utils/
H A DTagMonitor.cpp171 camera_metadata_entry lastEntry = lastValues.find(tag); in monitorSingleMetadata() local
191 if (lastEntry.count > 0) { in monitorSingleMetadata()
193 if (lastEntry.type == entry.type && in monitorSingleMetadata()
194 lastEntry.count == entry.count) { in monitorSingleMetadata()
196 size_t bytesPerValue = camera_metadata_type_size[lastEntry.type]; in monitorSingleMetadata()
197 size_t entryBytes = bytesPerValue * lastEntry.count; in monitorSingleMetadata()
198 int cmp = memcmp(entry.data.u8, lastEntry.data.u8, entryBytes); in monitorSingleMetadata()
219 } else if (lastEntry.count > 0) { in monitorSingleMetadata()
/aosp_15_r20/external/guava/guava/src/com/google/common/collect/
H A DCompactLinkedHashMap.java100 private transient int lastEntry; field in CompactLinkedHashMap
121 this.lastEntry = ENDPOINT; in init()
177 lastEntry = pred; in setSucceeds()
187 setSucceeds(lastEntry, entryIndex); in insertEntry()
197 setSucceeds(lastEntry, index); in accessEntry()
296 this.lastEntry = ENDPOINT; in clear()
H A DForwardingNavigableMap.java81 return headMap(key, false).lastEntry(); in standardLowerEntry()
113 return headMap(key, true).lastEntry(); in standardFloorEntry()
228 public Entry<K, V> lastEntry() { in lastEntry() method in ForwardingNavigableMap
229 return delegate().lastEntry(); in lastEntry()
247 Entry<K, V> entry = lastEntry(); in standardLastKey()
321 @CheckForNull private Entry<K, V> nextOrNull = forward().lastEntry(); in entryIterator()
H A DCompactLinkedHashSet.java126 private transient int lastEntry; field in CompactLinkedHashSet
140 this.lastEntry = ENDPOINT; in init()
191 lastEntry = pred; in setSucceeds()
200 setSucceeds(lastEntry, entryIndex); in insertEntry()
257 this.lastEntry = ENDPOINT; in clear()
H A DAbstractNavigableMap.java52 public Entry<K, V> lastEntry() { in lastEntry() method in AbstractNavigableMap
82 Entry<K, V> entry = lastEntry(); in lastKey()
93 return headMap(key, false).lastEntry(); in lowerEntry()
99 return headMap(key, true).lastEntry(); in floorEntry()
H A DSortedMultisets.java93 return getElementOrThrow(multiset().lastEntry()); in last()
108 return getElementOrNull(multiset().headMultiset(e, OPEN).lastEntry()); in lower()
114 return getElementOrNull(multiset().headMultiset(e, CLOSED).lastEntry()); in floor()
/aosp_15_r20/external/guava/android/guava-testlib/src/com/google/common/collect/testing/google/
H A DMultisetNavigationTester.java111 assertNull(sortedMultiset.headMultiset(e0(), type).lastEntry()); in testEmptyMultisetNearby()
118 assertNull(sortedMultiset.lastEntry()); in testEmptyMultisetLast()
146 assertNull(sortedMultiset.headMultiset(e0(), OPEN).lastEntry()); in testSingletonMultisetNearby()
147 assertNull(sortedMultiset.tailMultiset(e0(), OPEN).lastEntry()); in testSingletonMultisetNearby()
149 assertEquals(a, sortedMultiset.headMultiset(e0(), CLOSED).lastEntry()); in testSingletonMultisetNearby()
155 assertEquals(a, sortedMultiset.lastEntry()); in testSingletonMultisetLast()
189 assertEquals(null, sortedMultiset.headMultiset(a.getElement(), OPEN).lastEntry()); in testLower()
190 assertEquals(a, sortedMultiset.headMultiset(b.getElement(), OPEN).lastEntry()); in testLower()
191 assertEquals(a, sortedMultiset.headMultiset(c.getElement(), OPEN).lastEntry()); in testLower()
197 assertEquals(a, sortedMultiset.headMultiset(a.getElement(), CLOSED).lastEntry()); in testFloor()
[all …]
/aosp_15_r20/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
H A DMultisetNavigationTester.java111 assertNull(sortedMultiset.headMultiset(e0(), type).lastEntry()); in testEmptyMultisetNearby()
118 assertNull(sortedMultiset.lastEntry()); in testEmptyMultisetLast()
146 assertNull(sortedMultiset.headMultiset(e0(), OPEN).lastEntry()); in testSingletonMultisetNearby()
147 assertNull(sortedMultiset.tailMultiset(e0(), OPEN).lastEntry()); in testSingletonMultisetNearby()
149 assertEquals(a, sortedMultiset.headMultiset(e0(), CLOSED).lastEntry()); in testSingletonMultisetNearby()
155 assertEquals(a, sortedMultiset.lastEntry()); in testSingletonMultisetLast()
189 assertEquals(null, sortedMultiset.headMultiset(a.getElement(), OPEN).lastEntry()); in testLower()
190 assertEquals(a, sortedMultiset.headMultiset(b.getElement(), OPEN).lastEntry()); in testLower()
191 assertEquals(a, sortedMultiset.headMultiset(c.getElement(), OPEN).lastEntry()); in testLower()
197 assertEquals(a, sortedMultiset.headMultiset(a.getElement(), CLOSED).lastEntry()); in testFloor()
[all …]
/aosp_15_r20/external/guava/android/guava-tests/test/com/google/common/collect/
H A DForwardingNavigableMapTest.java246 public @Nullable Entry<K, V> lastEntry() {
295 assertNull(forwarding.lastEntry());
297 assertEquals(immutableEntry("b", 2), forwarding.lastEntry());
299 assertEquals(immutableEntry("c", 3), forwarding.lastEntry());
301 assertEquals(immutableEntry("c", 3), forwarding.lastEntry());
303 assertEquals(immutableEntry("b", 2), forwarding.lastEntry());
/aosp_15_r20/external/guava/guava-tests/test/com/google/common/collect/
H A DForwardingNavigableMapTest.java246 public @Nullable Entry<K, V> lastEntry() {
295 assertNull(forwarding.lastEntry());
297 assertEquals(immutableEntry("b", 2), forwarding.lastEntry());
299 assertEquals(immutableEntry("c", 3), forwarding.lastEntry());
301 assertEquals(immutableEntry("c", 3), forwarding.lastEntry());
303 assertEquals(immutableEntry("b", 2), forwarding.lastEntry());
/aosp_15_r20/external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
H A DLocalCache.java557 Entry<K, Timestamped<V>> lastEntry; field in LocalCache.EntryIterator
574 lastEntry = nextEntry; in next()
576 return new WriteThroughEntry(lastEntry.getKey(), lastEntry.getValue().getValue()); in next()
596 checkState(lastEntry != null); in remove()
597 LocalCache.this.remove(lastEntry.getKey(), lastEntry.getValue()); in remove()
598 lastEntry = null; in remove()
/aosp_15_r20/platform_testing/libraries/flicker/test/src/android/tools/flicker/subject/wm/
H A DWindowManagerStateSubjectTest.kt316 val lastEntry = WindowManagerTraceSubject(trace, reader).last() in canDetectActivityVisibility() constant
317 lastEntry.isAppWindowVisible(TestComponents.SHELL_SPLIT_SCREEN_PRIMARY) in canDetectActivityVisibility()
318 lastEntry.isAppWindowVisible(TestComponents.SHELL_SPLIT_SCREEN_SECONDARY) in canDetectActivityVisibility()
365 val lastEntry = WindowManagerTraceSubject(trace, reader).last() in canDetectHasVisibleAppWindows() constant
366 assertFail("Visible app windows") { lastEntry.hasNoVisibleAppWindow() } in canDetectHasVisibleAppWindows()
/aosp_15_r20/external/slf4j/slf4j-api/src/main/java/org/slf4j/helpers/
H A DNormalizedParameters.java55 final Object lastEntry = argArray[argArray.length - 1]; in getThrowableCandidate() local
56 if (lastEntry instanceof Throwable) { in getThrowableCandidate()
57 return (Throwable) lastEntry; in getThrowableCandidate()
/aosp_15_r20/tools/tradefederation/core/common_util/com/android/tradefed/util/zip/
DMergedZipEntryCollection.java55 CentralDirectoryInfo lastEntry = mZipEntries.get(mZipEntries.size() - 1); in getEndOffset() local
56 return lastEntry.getLocalHeaderOffset() + lastEntry.getCompressedSize() + HEADER_SIZE; in getEndOffset()
/aosp_15_r20/external/jline/src/src/main/java/jline/
H A DHistory.java128 int lastEntry = history.size() - 1; in moveToLastEntry() local
129 if (lastEntry >= 0 && lastEntry != currentIndex) { in moveToLastEntry()
/aosp_15_r20/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/util/
H A DSimpleDictionary.java32 private CharSequence lastEntry = ""; field in SimpleDictionary
72 if (CharUtilities.compare(text, lastEntry) <= 0) { in addMapping()
76 lastEntry = text; in addMapping()

12345678910>>...32