Home
last modified time | relevance | path

Searched refs:newFirst (Results 1 – 9 of 9) sorted by relevance

/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
DSourceNodeImpl.java62 final int newFirst = Math.min(getFirstLine(), first); in ensureCapacity() local
64 final int newLength = newLast - newFirst + 1; in ensureCapacity()
67 System.arraycopy(lines, 0, newLines, offset - newFirst, in ensureCapacity()
69 offset = newFirst; in ensureCapacity()
/external/guava/guava-tests/test/com/google/common/collect/
DMapMakerInternalMapTest.java638 InternalEntry<Object, Object, ?> newFirst = in testRemoveFromChain() local
640 assertSame(keyThree, newFirst.getKey()); in testRemoveFromChain()
641 assertSame(valueThree, newFirst.getValue()); in testRemoveFromChain()
642 assertEquals(hashThree, newFirst.getHash()); in testRemoveFromChain()
643 assertSame(entryOne, newFirst.getNext()); in testRemoveFromChain()
646 newFirst = segment.removeFromChainForTesting(entryThree, entryOne); in testRemoveFromChain()
647 assertSame(keyTwo, newFirst.getKey()); in testRemoveFromChain()
648 assertSame(valueTwo, newFirst.getValue()); in testRemoveFromChain()
649 assertEquals(hashTwo, newFirst.getHash()); in testRemoveFromChain()
650 newFirst = newFirst.getNext(); in testRemoveFromChain()
[all …]
/external/guava/android/guava-tests/test/com/google/common/collect/
DMapMakerInternalMapTest.java638 InternalEntry<Object, Object, ?> newFirst = in testRemoveFromChain() local
640 assertSame(keyThree, newFirst.getKey()); in testRemoveFromChain()
641 assertSame(valueThree, newFirst.getValue()); in testRemoveFromChain()
642 assertEquals(hashThree, newFirst.getHash()); in testRemoveFromChain()
643 assertSame(entryOne, newFirst.getNext()); in testRemoveFromChain()
646 newFirst = segment.removeFromChainForTesting(entryThree, entryOne); in testRemoveFromChain()
647 assertSame(keyTwo, newFirst.getKey()); in testRemoveFromChain()
648 assertSame(valueTwo, newFirst.getValue()); in testRemoveFromChain()
649 assertEquals(hashTwo, newFirst.getHash()); in testRemoveFromChain()
650 newFirst = newFirst.getNext(); in testRemoveFromChain()
[all …]
/external/guava/guava/src/com/google/common/collect/
DMapMakerInternalMap.java1627 E newFirst = copyEntry(e, newNext); in expand() local
1628 if (newFirst != null) { in expand()
1629 newTable.set(newIndex, newFirst); in expand()
1662 E newFirst = removeFromChain(first, e); in replace() local
1664 table.set(index, newFirst); in replace()
1710 E newFirst = removeFromChain(first, e); in replace() local
1712 table.set(index, newFirst); in replace()
1758 E newFirst = removeFromChain(first, e); in remove() local
1760 table.set(index, newFirst); in remove()
1799 E newFirst = removeFromChain(first, e); in remove() local
[all …]
/external/guava/android/guava/src/com/google/common/collect/
DMapMakerInternalMap.java1627 E newFirst = copyEntry(e, newNext); in expand() local
1628 if (newFirst != null) { in expand()
1629 newTable.set(newIndex, newFirst); in expand()
1662 E newFirst = removeFromChain(first, e); in replace() local
1664 table.set(index, newFirst); in replace()
1710 E newFirst = removeFromChain(first, e); in replace() local
1712 table.set(index, newFirst); in replace()
1758 E newFirst = removeFromChain(first, e); in remove() local
1760 table.set(index, newFirst); in remove()
1799 E newFirst = removeFromChain(first, e); in remove() local
[all …]
/external/guava/android/guava/src/com/google/common/cache/
DLocalCache.java2847 ReferenceEntry<K, V> newFirst = copyEntry(e, newNext); in expand() local
2848 if (newFirst != null) { in expand()
2849 newTable.set(newIndex, newFirst); in expand()
2884 ReferenceEntry<K, V> newFirst = in replace() local
2894 table.set(index, newFirst); in replace()
2946 ReferenceEntry<K, V> newFirst = in replace() local
2956 table.set(index, newFirst); in replace()
3009 ReferenceEntry<K, V> newFirst = in remove() local
3012 table.set(index, newFirst); in remove()
3055 ReferenceEntry<K, V> newFirst = in remove() local
[all …]
/external/guava/guava/src/com/google/common/cache/
DLocalCache.java2937 ReferenceEntry<K, V> newFirst = copyEntry(e, newNext); in expand() local
2938 if (newFirst != null) { in expand()
2939 newTable.set(newIndex, newFirst); in expand()
2974 ReferenceEntry<K, V> newFirst = in replace() local
2984 table.set(index, newFirst); in replace()
3036 ReferenceEntry<K, V> newFirst = in replace() local
3046 table.set(index, newFirst); in replace()
3099 ReferenceEntry<K, V> newFirst = in remove() local
3102 table.set(index, newFirst); in remove()
3145 ReferenceEntry<K, V> newFirst = in remove() local
[all …]
/external/guava/guava-tests/test/com/google/common/cache/
DLocalCacheTest.java1802 ReferenceEntry<Object, Object> newFirst = segment.removeEntryFromChain(entryThree, entryTwo); in testRemoveEntryFromChain() local
1803 assertSame(keyThree, newFirst.getKey()); in testRemoveEntryFromChain()
1804 assertSame(valueThree, newFirst.getValueReference().get()); in testRemoveEntryFromChain()
1805 assertEquals(hashThree, newFirst.getHash()); in testRemoveEntryFromChain()
1806 assertSame(entryOne, newFirst.getNext()); in testRemoveEntryFromChain()
1809 newFirst = segment.removeEntryFromChain(entryThree, entryOne); in testRemoveEntryFromChain()
1810 assertSame(keyTwo, newFirst.getKey()); in testRemoveEntryFromChain()
1811 assertSame(valueTwo, newFirst.getValueReference().get()); in testRemoveEntryFromChain()
1812 assertEquals(hashTwo, newFirst.getHash()); in testRemoveEntryFromChain()
1813 newFirst = newFirst.getNext(); in testRemoveEntryFromChain()
[all …]
/external/guava/android/guava-tests/test/com/google/common/cache/
DLocalCacheTest.java1786 ReferenceEntry<Object, Object> newFirst = segment.removeEntryFromChain(entryThree, entryTwo); in testRemoveEntryFromChain() local
1787 assertSame(keyThree, newFirst.getKey()); in testRemoveEntryFromChain()
1788 assertSame(valueThree, newFirst.getValueReference().get()); in testRemoveEntryFromChain()
1789 assertEquals(hashThree, newFirst.getHash()); in testRemoveEntryFromChain()
1790 assertSame(entryOne, newFirst.getNext()); in testRemoveEntryFromChain()
1793 newFirst = segment.removeEntryFromChain(entryThree, entryOne); in testRemoveEntryFromChain()
1794 assertSame(keyTwo, newFirst.getKey()); in testRemoveEntryFromChain()
1795 assertSame(valueTwo, newFirst.getValueReference().get()); in testRemoveEntryFromChain()
1796 assertEquals(hashTwo, newFirst.getHash()); in testRemoveEntryFromChain()
1797 newFirst = newFirst.getNext(); in testRemoveEntryFromChain()
[all …]