Home
last modified time | relevance | path

Searched refs:getLast (Results 1 – 25 of 56) sorted by relevance

123

/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/filter/
DTryWithResourcesJavacFilterTest.java141 range0.fromInclusive = m.instructions.getLast(); in javac9()
145 range0.toInclusive = m.instructions.getLast(); in javac9()
149 range2.fromInclusive = m.instructions.getLast(); in javac9()
157 range2.toInclusive = m.instructions.getLast(); in javac9()
167 range1.fromInclusive = m.instructions.getLast(); in javac9()
185 range1.toInclusive = m.instructions.getLast(); in javac9()
189 range3.fromInclusive = m.instructions.getLast(); in javac9()
213 range3.toInclusive = m.instructions.getLast(); in javac9()
392 range0.fromInclusive = m.instructions.getLast(); in javac_7_8()
417 range0.toInclusive = m.instructions.getLast(); in javac_7_8()
[all …]
DTryWithResourcesEcjFilterTest.java184 range0.fromInclusive = m.instructions.getLast(); in ecj()
191 range0.toInclusive = m.instructions.getLast(); in ecj()
194 range1.fromInclusive = m.instructions.getLast(); in ecj()
307 range1.toInclusive = m.instructions.getLast(); in ecj()
467 range0.fromInclusive = m.instructions.getLast(); in ecj_noFlowOut()
490 range0.toInclusive = m.instructions.getLast(); in ecj_noFlowOut()
500 range1.fromInclusive = m.instructions.getLast(); in ecj_noFlowOut()
595 range1.toInclusive = m.instructions.getLast(); in ecj_noFlowOut()
DEnumFilterTest.java39 assertEquals(m.instructions.getLast(), toInclusive); in testValues()
63 assertEquals(m.instructions.getLast(), toInclusive); in testValueOf()
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
DCroppedTrack.java67 …if (returnDecodingEntries.isEmpty() || returnDecodingEntries.getLast().getDelta() != nuDecodingTim… in getDecodingTimeEntries()
71 TimeToSampleBox.Entry e = returnDecodingEntries.getLast(); in getDecodingTimeEntries()
90 …if (returnDecodingEntries.isEmpty() || returnDecodingEntries.getLast().getOffset() != nuDecodingTi… in getCompositionTimeEntries()
94 CompositionTimeToSample.Entry e = returnDecodingEntries.getLast(); in getCompositionTimeEntries()
DAppendTrack.java259 …if (returnDecodingEntries.isEmpty() || returnDecodingEntries.getLast().getDelta() != nuDecodingTim… in getDecodingTimeEntries()
263 TimeToSampleBox.Entry e = returnDecodingEntries.getLast(); in getDecodingTimeEntries()
283 …if (compositionTimeEntries.isEmpty() || compositionTimeEntries.getLast().getOffset() != compositio… in getCompositionTimeEntries()
287 CompositionTimeToSample.Entry e = compositionTimeEntries.getLast(); in getCompositionTimeEntries()
/external/nist-sip/java/gov/nist/javax/sip/header/
DAcceptLanguageList.java64 public AcceptLanguage getLast() { in getLast() method in AcceptLanguageList
65 AcceptLanguage retval = (AcceptLanguage) super.getLast(); in getLast()
/external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/util/
DListOrganizerTest.java65 assertEquals(obj3, list.getLast()); in testMoveToBottom()
71 assertEquals(obj2, list.getLast()); in testMoveToBottom()
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DDTMAxisIteratorBase.java122 public int getLast() in getLast() method in DTMAxisIteratorBase
269 final int pos = isReverse() ? getLast() - position + 1 in getNodeByPosition()
/external/guava/guava/src/com/google/common/collect/
DBinaryTreeTraverser.java122 return stack.getLast();
152 T node = stack.getLast();
192 T node = stack.getLast();
DForwardingDeque.java66 public E getLast() { in getLast() method in ForwardingDeque
67 return delegate().getLast(); in getLast()
DTreeTraverser.java99 Iterator<T> itr = stack.getLast(); // throws NSEE if empty
155 PostOrderNode<T> top = stack.getLast();
/external/owasp/sanitizer/src/main/org/owasp/html/
DHtmlSanitizer.java164 attrs.add(attrs.getLast()); in sanitize()
183 attrs.add(attrs.getLast()); in sanitize()
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
DIterablesTest.java427 assertEquals(asList(5, null), Iterables.getLast(partitions));
746 assertEquals("c", Iterables.getLast(list));
752 Iterables.getLast(list);
759 assertEquals("c", Iterables.getLast(sortedSet));
764 assertEquals("foo", Iterables.getLast(iterable, "bar"));
769 assertEquals("bar", Iterables.getLast(iterable, "bar"));
774 assertNull(Iterables.getLast(iterable, null));
779 assertEquals("bar", Iterables.getLast(iterable, "qux"));
802 assertEquals("bar", Iterables.getLast(diesOnIteratorList, "qux"));
823 Iterables.getLast(sortedSet);
[all …]
/external/guava/guava-tests/test/com/google/common/collect/
DIterablesTest.java486 assertEquals(asList(5, null), Iterables.getLast(partitions));
831 assertEquals("c", Iterables.getLast(list));
837 Iterables.getLast(list);
844 assertEquals("c", Iterables.getLast(sortedSet));
849 assertEquals("foo", Iterables.getLast(iterable, "bar"));
854 assertEquals("bar", Iterables.getLast(iterable, "bar"));
859 assertNull(Iterables.getLast(iterable, null));
864 assertEquals("bar", Iterables.getLast(iterable, "qux"));
887 assertEquals("bar", Iterables.getLast(diesOnIteratorList, "qux"));
908 Iterables.getLast(sortedSet);
[all …]
DSynchronizedDequeTest.java207 public E getLast() { in getLast() method in SynchronizedDequeTest.TestDeque
209 return delegate.getLast(); in getLast()
287 create().getLast(); in testHoldsLockOnAllOperations()
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DTreeTraverser.java91 Iterator<T> itr = stack.getLast(); // throws NSEE if empty
147 PostOrderNode<T> top = stack.getLast();
DIterables.java743 public static <T> T getLast(Iterable<T> iterable) {
753 return Iterators.getLast(iterable.iterator());
765 public static <T> T getLast(Iterable<? extends T> iterable, @Nullable T defaultValue) {
775 return Iterators.getLast(iterable.iterator(), defaultValue);
/external/apache-xml/src/main/java/org/apache/xml/dtm/
DDTMAxisIterator.java52 public int getLast(); in getLast() method
/external/apache-xml/src/main/java/org/apache/xpath/axes/
DContextNodeList.java127 public int getLast(); in getLast() method
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/filter/
DSyntheticFilter.java27 methodNode.instructions.getLast()); in filter()
DLombokGeneratedFilter.java28 methodNode.instructions.getLast()); in filter()
DEnumFilter.java27 methodNode.instructions.getLast()); in filter()
/external/mockito/src/main/java/org/mockito/internal/matchers/
DCapturingMatcher.java33 return (T) arguments.getLast(); in getLastValue()
/external/mockito/src/test/java/org/mockitousage/stubbing/
DStubbingWithThrowablesTest.java153 when(mock.getLast()).thenReturn("last"); in shouldMixThrowablesAndReturnsOnDifferentMocks()
175 assertEquals("last", mock.getLast()); in shouldMixThrowablesAndReturnsOnDifferentMocks()
/external/smali/util/src/main/java/org/jf/util/jcommander/
DCommand.java61 JCommander parentJc = Iterables.getLast(commandAncestors); in getJCommander()

123