/external/guava/guava/src/com/google/common/collect/ |
D | ForwardingSortedMap.java | 76 public SortedMap<K, V> headMap(K toKey) { in headMap() argument 77 return delegate().headMap(toKey); in headMap() 86 public SortedMap<K, V> subMap(K fromKey, K toKey) { in subMap() argument 87 return delegate().subMap(fromKey, toKey); in subMap() 153 @Beta protected SortedMap<K, V> standardSubMap(K fromKey, K toKey) { in standardSubMap() argument 154 checkArgument(unsafeCompare(fromKey, toKey) <= 0, "fromKey must be <= toKey"); in standardSubMap() 155 return tailMap(fromKey).headMap(toKey); in standardSubMap()
|
D | StandardRowSortedTable.java | 118 public SortedMap<R, Map<C, V>> headMap(R toKey) { in headMap() argument 119 checkNotNull(toKey); in headMap() 121 sortedBackingMap().headMap(toKey), factory).rowMap(); in headMap() 125 public SortedMap<R, Map<C, V>> subMap(R fromKey, R toKey) { in subMap() argument 127 checkNotNull(toKey); in subMap() 129 sortedBackingMap().subMap(fromKey, toKey), factory).rowMap(); in subMap()
|
D | ForwardingNavigableMap.java | 362 protected SortedMap<K, V> standardSubMap(K fromKey, K toKey) { in standardSubMap() argument 363 return subMap(fromKey, true, toKey, false); in standardSubMap() 367 public NavigableMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { in subMap() argument 368 return delegate().subMap(fromKey, fromInclusive, toKey, toInclusive); in subMap() 372 public NavigableMap<K, V> headMap(K toKey, boolean inclusive) { in headMap() argument 373 return delegate().headMap(toKey, inclusive); in headMap() 386 protected SortedMap<K, V> standardHeadMap(K toKey) { in standardHeadMap() argument 387 return headMap(toKey, false); in standardHeadMap()
|
D | ImmutableSortedMap.java | 483 public ImmutableSortedMap<K, V> headMap(K toKey) { in headMap() argument 484 return headMap(toKey, false); in headMap() 500 public abstract ImmutableSortedMap<K, V> headMap(K toKey, boolean inclusive); in headMap() argument 516 public ImmutableSortedMap<K, V> subMap(K fromKey, K toKey) { in subMap() argument 517 return subMap(fromKey, true, toKey, false); in subMap() 536 public ImmutableSortedMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, in subMap() argument 539 checkNotNull(toKey); in subMap() 540 checkArgument(comparator().compare(fromKey, toKey) <= 0, in subMap() 541 "expected fromKey <= toKey but %s > %s", fromKey, toKey); in subMap() local 542 return headMap(toKey, toInclusive).tailMap(fromKey, fromInclusive); in subMap()
|
D | Maps.java | 864 public SortedMap<K, V> subMap(K fromKey, K toKey) { 865 return asMap(backingSet().subSet(fromKey, toKey), function); 869 public SortedMap<K, V> headMap(K toKey) { 870 return asMap(backingSet().headSet(toKey), function); 907 K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { 908 return asMap(set.subSet(fromKey, fromInclusive, toKey, toInclusive), function); 912 public NavigableMap<K, V> headMap(K toKey, boolean inclusive) { 913 return asMap(set.headSet(toKey, inclusive), function); 1956 @Override public SortedMap<K, V2> headMap(K toKey) { 1957 return transformEntries(fromMap().headMap(toKey), transformer); [all …]
|
D | TreeBasedTable.java | 216 @Override public SortedMap<C, V> subMap(C fromKey, C toKey) { in subMap() argument 218 && rangeContains(checkNotNull(toKey))); in subMap() 219 return new TreeRow(rowKey, fromKey, toKey); in subMap() 222 @Override public SortedMap<C, V> headMap(C toKey) { in headMap() argument 223 checkArgument(rangeContains(checkNotNull(toKey))); in headMap() 224 return new TreeRow(rowKey, lowerBound, toKey); in headMap()
|
D | AbstractNavigableMap.java | 134 public SortedMap<K, V> subMap(K fromKey, K toKey) { in subMap() argument 135 return subMap(fromKey, true, toKey, false); in subMap() 139 public SortedMap<K, V> headMap(K toKey) { in headMap() argument 140 return headMap(toKey, false); in headMap()
|
D | TreeRangeSet.java | 272 Cut<C> fromKey, boolean fromInclusive, Cut<C> toKey, boolean toInclusive) { in subMap() argument 275 toKey, BoundType.forBoolean(toInclusive))); in subMap() 279 public NavigableMap<Cut<C>, Range<C>> headMap(Cut<C> toKey, boolean inclusive) { in headMap() argument 280 return subMap(Range.upTo(toKey, BoundType.forBoolean(inclusive))); in headMap() 433 Cut<C> fromKey, boolean fromInclusive, Cut<C> toKey, boolean toInclusive) { 436 toKey, BoundType.forBoolean(toInclusive))); 440 public NavigableMap<Cut<C>, Range<C>> headMap(Cut<C> toKey, boolean inclusive) { 441 return subMap(Range.upTo(toKey, BoundType.forBoolean(inclusive))); 656 Cut<C> fromKey, boolean fromInclusive, Cut<C> toKey, boolean toInclusive) { 658 fromKey, BoundType.forBoolean(fromInclusive), toKey, BoundType.forBoolean(toInclusive))); [all …]
|
D | EmptyImmutableSortedMap.java | 97 public ImmutableSortedMap<K, V> headMap(K toKey, boolean inclusive) { in headMap() argument 98 checkNotNull(toKey); in headMap()
|
D | AbstractMapBasedMultimap.java | 1389 public SortedMap<K, Collection<V>> headMap(K toKey) { 1390 return new SortedAsMap(sortedMap().headMap(toKey)); 1394 public SortedMap<K, Collection<V>> subMap(K fromKey, K toKey) { 1395 return new SortedAsMap(sortedMap().subMap(fromKey, toKey)); 1533 public NavigableMap<K, Collection<V>> subMap(K fromKey, K toKey) { 1534 return subMap(fromKey, true, toKey, false); 1539 K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { 1540 return new NavigableAsMap(sortedMap().subMap(fromKey, fromInclusive, toKey, toInclusive)); 1544 public NavigableMap<K, Collection<V>> headMap(K toKey) { 1545 return headMap(toKey, false); [all …]
|
D | RegularImmutableSortedMap.java | 113 public ImmutableSortedMap<K, V> headMap(K toKey, boolean inclusive) { in headMap() argument 114 return getSubMap(0, keySet.headIndex(checkNotNull(toKey), inclusive)); in headMap()
|
D | Synchronized.java | 1076 @Override public SortedMap<K, V> headMap(K toKey) { 1078 return sortedMap(delegate().headMap(toKey), mutex); 1088 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { 1090 return sortedMap(delegate().subMap(fromKey, toKey), mutex); 1417 @Override public NavigableMap<K, V> headMap(K toKey, boolean inclusive) { 1420 delegate().headMap(toKey, inclusive), mutex); 1483 K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { 1486 delegate().subMap(fromKey, fromInclusive, toKey, toInclusive), 1498 @Override public SortedMap<K, V> headMap(K toKey) { 1499 return headMap(toKey, false); [all …]
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
D | ImmutableSortedMap.java | 257 public ImmutableSortedMap<K, V> headMap(K toKey) { in headMap() argument 258 checkNotNull(toKey); in headMap() 259 return newView(sortedDelegate.headMap(toKey)); in headMap() 262 ImmutableSortedMap<K, V> headMap(K toKey, boolean inclusive) { in headMap() argument 263 checkNotNull(toKey); in headMap() 265 K tmp = higher(toKey); in headMap() 269 toKey = tmp; in headMap() 271 return headMap(toKey); in headMap() 274 public ImmutableSortedMap<K, V> subMap(K fromKey, K toKey) { in subMap() argument 276 checkNotNull(toKey); in subMap() [all …]
|
D | Maps.java | 826 public SortedMap<K, V> subMap(K fromKey, K toKey) { 827 return asMap(backingSet().subSet(fromKey, toKey), function); 831 public SortedMap<K, V> headMap(K toKey) { 832 return asMap(backingSet().headSet(toKey), function); 1647 @Override public SortedMap<K, V2> headMap(K toKey) { 1648 return transformEntries(fromMap().headMap(toKey), transformer); 1655 @Override public SortedMap<K, V2> subMap(K fromKey, K toKey) { 1657 fromMap().subMap(fromKey, toKey), transformer); 2322 @Override public SortedMap<K, V> headMap(K toKey) { 2323 return new FilteredEntrySortedMap<K, V>(sortedMap().headMap(toKey), predicate); [all …]
|
D | AbstractMapBasedMultimap.java | 1227 public SortedMap<K, Collection<V>> headMap(K toKey) { 1228 return new SortedAsMap(sortedMap().headMap(toKey)); 1232 public SortedMap<K, Collection<V>> subMap(K fromKey, K toKey) { 1233 return new SortedAsMap(sortedMap().subMap(fromKey, toKey));
|
D | Synchronized.java | 1060 @Override public SortedMap<K, V> headMap(K toKey) { 1062 return sortedMap(delegate().headMap(toKey), mutex); 1072 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { 1074 return sortedMap(delegate().subMap(fromKey, toKey), mutex);
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
D | SafeTreeMap.java | 176 @Override public SortedMap<K, V> headMap(K toKey) { 177 return headMap(toKey, false); 180 @Override public NavigableMap<K, V> headMap(K toKey, boolean inclusive) { 182 delegate.headMap(checkValid(toKey), inclusive)); 249 K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { 251 checkValid(fromKey), fromInclusive, checkValid(toKey), toInclusive)); 254 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { 255 return subMap(fromKey, true, toKey, false);
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | SynchronizedNavigableMapTest.java | 142 @Override public NavigableMap<K, V> headMap(K toKey, boolean inclusive) { in headMap() argument 144 return delegate().headMap(toKey, inclusive); in headMap() 147 @Override public SortedMap<K, V> headMap(K toKey) { in headMap() argument 148 return headMap(toKey, false); in headMap() 192 K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { in subMap() argument 194 return delegate().subMap(fromKey, fromInclusive, toKey, toInclusive); in subMap() 197 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { in subMap() argument 198 return delegate().subMap(fromKey, true, toKey, false); in subMap()
|
D | ForwardingNavigableMapTest.java | 116 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { in subMap() argument 117 return standardSubMap(fromKey, toKey); in subMap() 201 public SortedMap<K, V> headMap(K toKey) { in headMap() argument 202 return standardHeadMap(toKey); in headMap()
|
D | ForwardingSortedMapTest.java | 109 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { in subMap() argument 110 return standardSubMap(fromKey, toKey); in subMap()
|
/external/v8/src/builtins/ |
D | array-copywithin.tq | 64 // b. Let toKey be ! ToString(to). 73 // ii. Perform ? Set(O, toKey, fromVal, true). 76 // i. Perform ? DeletePropertyOrThrow(O, toKey).
|
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/ |
D | ArchiveStreamFactory.java | 170 map.put(toKey(name), provider); in putAll() 178 private static String toKey(final String name) { in toKey() method in ArchiveStreamFactory 386 …veStreamProvider archiveStreamProvider = getArchiveInputStreamProviders().get(toKey(archiverName)); 454 …eStreamProvider archiveStreamProvider = getArchiveOutputStreamProviders().get(toKey(archiverName));
|
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/ |
D | CompressorStreamFactory.java | 373 map.put(toKey(name), provider); 381 private static String toKey(final String name) { 651 …ssorStreamProvider compressorStreamProvider = getCompressorInputStreamProviders().get(toKey(name)); 727 …sorStreamProvider compressorStreamProvider = getCompressorOutputStreamProviders().get(toKey(name));
|
/external/dagger2/lib/ |
D | auto-value-1.4.1.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
/external/guice/extensions/persist/lib/ |
D | commons-collections.jar | META-INF/
META-INF/MANIFEST.MF
META-INF/LICENSE.txt
META ... |