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

1 2 3 4 5 6 7 8 9

  /external/proguard/src/proguard/gui/
ClassPathPanel.java 267 ClassPathEntry firstEntry = (ClassPathEntry)listModel.get(index);
269 filterDialog.setFilter(firstEntry.getFilter());
270 filterDialog.setApkFilter(firstEntry.getApkFilter());
271 filterDialog.setJarFilter(firstEntry.getJarFilter());
272 filterDialog.setAarFilter(firstEntry.getAarFilter());
273 filterDialog.setWarFilter(firstEntry.getWarFilter());
274 filterDialog.setEarFilter(firstEntry.getEarFilter());
275 filterDialog.setZipFilter(firstEntry.getZipFilter());
  /external/guava/guava/src/com/google/common/collect/
DescendingImmutableSortedMultiset.java 38 public Entry<E> firstEntry() {
44 return forward.firstEntry();
EmptyImmutableSortedMultiset.java 38 public Entry<E> firstEntry() {
SortedMultiset.java 62 Entry<E> firstEntry();
UnmodifiableSortedMultiset.java 74 public Entry<E> firstEntry() {
75 return delegate().firstEntry();
AbstractSortedMultiset.java 66 public Entry<E> firstEntry() {
DescendingMultiset.java 92 @Override public Entry<E> firstEntry() {
97 return forwardMultiset().firstEntry();
ForwardingSortedMultiset.java 61 * {@link SortedMultiset#firstEntry} {@link SortedMultiset#headMultiset}, {@link
107 public Entry<E> firstEntry() {
108 return delegate().firstEntry();
112 * A sensible definition of {@link #firstEntry()} in terms of {@code entrySet().iterator()}.
114 * If you override {@link #entrySet()}, you may wish to override {@link #firstEntry()} to forward
136 * {@link #firstEntry()} to forward to this implementation.
RegularImmutableSortedMultiset.java 59 public Entry<E> firstEntry() {
AbstractNavigableMap.java 43 public Entry<K, V> firstEntry() {
67 Entry<K, V> entry = firstEntry();
100 return tailMap(key, true).firstEntry();
106 return tailMap(key, false).firstEntry();
ForwardingNavigableMap.java 123 * A sensible definition of {@link #ceilingEntry} in terms of the {@code firstEntry()} of
128 return tailMap(key, true).firstEntry();
151 * A sensible definition of {@link #higherEntry} in terms of the {@code firstEntry()} of
156 return tailMap(key, false).firstEntry();
174 public Entry<K, V> firstEntry() {
175 return delegate().firstEntry();
179 * A sensible definition of {@link #firstEntry} in terms of the {@code iterator()} of
181 * {@code firstEntry} to forward to this implementation.
188 * A sensible definition of {@link #firstKey} in terms of {@code firstEntry}. If you override
189 * {@code firstEntry}, you may wish to override {@code firstKey} to forward to thi
    [all...]
TreeRangeMap.java 147 Entry<Cut<K>, RangeMapEntry<K, V>> firstEntry = entriesByLowerBound.firstEntry();
149 if (firstEntry == null) {
153 firstEntry.getValue().getKey().lowerBound,
TreeRangeSet.java 126 Entry<Cut<C>, Range<C>> firstEntry = rangesByLowerBound.firstEntry();
128 if (firstEntry == null) {
131 return Range.create(firstEntry.getValue().lowerBound, lastEntry.getValue().upperBound);
577 Entry<Cut<C>, Range<C>> firstEntry = tailMap(cut, true).firstEntry();
578 if (firstEntry != null && firstEntry.getKey().equals(cut)) {
579 return firstEntry.getValue();
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
SortedMultiset.java 35 Entry<E> firstEntry();
UnmodifiableSortedMultiset.java 72 public Entry<E> firstEntry() {
73 return delegate().firstEntry();
AbstractSortedMultiset.java 66 public Entry<E> firstEntry() {
DescendingMultiset.java 92 @Override public Entry<E> firstEntry() {
97 return forwardMultiset().firstEntry();
  /external/proguard/src/proguard/
ConfigurationChecker.java 63 ClassPathEntry firstEntry = programJars.get(0);
64 if (firstEntry.isOutput())
66 throw new IOException("The output jar [" + firstEntry.getName() +
  /libcore/ojluni/src/main/java/java/util/jar/
JarOutputStream.java 90 if (firstEntry) {
107 firstEntry = false;
112 private boolean firstEntry = true;
  /libcore/ojluni/src/main/java/java/util/
NavigableMap.java 68 * <p>This interface additionally defines methods {@link #firstEntry},
221 Map.Entry<K,V> firstEntry();
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
SortedMapInterfaceTest.java 69 Entry<K, V> firstEntry = iterator.next();
78 subMap.put(firstEntry.getKey(), value);
96 Entry<K, V> firstEntry = iterator.next();
101 assertNull(subMap.remove(firstEntry.getKey()));
  /external/guava/guava-tests/test/com/google/common/collect/
ForwardingNavigableMapTest.java 161 public Entry<K, V> firstEntry() {
339 forward().firstEntry();
340 assertEquals("[firstEntry]", getCalls());
ForwardingSortedMultisetTest.java 74 public Entry<E> firstEntry() {
229 forward().firstEntry();
230 assertEquals("[firstEntry]", getCalls());
  /frameworks/support/collection/src/test/java/androidx/collection/
ArrayMapCompatTest.java 47 Map.Entry<String, String> firstEntry = copyOf(iterator.next());
48 assertTrue(expectedEntriesToIterate.remove(firstEntry));
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
LigatureTreeWalker.java 75 LigatureEntry firstEntry = (LigatureEntry) aLigatureSet.elementAt(0);
77 return firstEntry.getComponentChar(0);

Completed in 356 milliseconds

1 2 3 4 5 6 7 8 9