HomeSort by relevance Sort by last modified time
    Searched full:fromkey (Results 1 - 13 of 13) sorted by null

  /external/guava/src/com/google/common/collect/
ForwardingSortedMap.java 56 public SortedMap<K, V> subMap(K fromKey, K toKey) {
57 return delegate().subMap(fromKey, toKey);
60 public SortedMap<K, V> tailMap(K fromKey) {
61 return delegate().tailMap(fromKey);
ImmutableSortedMap.java 619 * whose keys ranges from {@code fromKey}, inclusive, to {@code toKey},
624 * fromKey} less than an earlier {@code fromKey}. However, this method doesn't
626 * fromKey}. Similarly, this method keeps the original {@code toKey}, instead
630 public ImmutableSortedMap<K, V> subMap(K fromKey, K toKey) {
631 checkNotNull(fromKey);
633 checkArgument(comparator.compare(fromKey, toKey) <= 0);
634 int newFromIndex = findSubmapIndex(fromKey);
641 * whose keys are greater than or equals to {@code fromKey}.
645 * fromKey} less than an earlier {@code fromKey}. However, this method doesn'
    [all...]
AbstractMultimap.java     [all...]
  /libcore/luni/src/main/java/java/util/
NavigableMap.java 271 * {@code fromKey} to {@code toKey}. If {@code fromKey} and
282 * @param fromKey low endpoint of the keys in the returned map
289 * {@code fromKey} to {@code toKey}
290 * @throws ClassCastException if {@code fromKey} and {@code toKey}
294 * exception if {@code fromKey} or {@code toKey}
296 * @throws NullPointerException if {@code fromKey} or {@code toKey}
298 * @throws IllegalArgumentException if {@code fromKey} is greater than
300 * range, and {@code fromKey} or {@code toKey} lies
303 NavigableMap<K,V> subMap(K fromKey, boolean fromInclusive
    [all...]
TreeMap.java     [all...]
Collections.java     [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentNavigableMap.java 31 ConcurrentNavigableMap<K,V> subMap(K fromKey, boolean fromInclusive,
47 ConcurrentNavigableMap<K,V> tailMap(K fromKey, boolean inclusive);
54 ConcurrentNavigableMap<K,V> subMap(K fromKey, K toKey);
68 ConcurrentNavigableMap<K,V> tailMap(K fromKey);
ConcurrentSkipListMap.java     [all...]
  /external/guava/javadoc/com/google/common/collect/class-use/
ImmutableSortedMap.html 312 <TD><CODE><B>ImmutableSortedMap.</B><B><A HREF="../../../../../com/google/common/collect/ImmutableSortedMap.html#subMap(K, K)">subMap</A></B>(<A HREF="../../../../../com/google/common/collect/ImmutableSortedMap.html" title="type parameter in ImmutableSortedMap">K</A>&nbsp;fromKey,
317 whose keys ranges from <code>fromKey</code>, inclusive, to <code>toKey</code>,
323 <TD><CODE><B>ImmutableSortedMap.</B><B><A HREF="../../../../../com/google/common/collect/ImmutableSortedMap.html#tailMap(K)">tailMap</A></B>(<A HREF="../../../../../com/google/common/collect/ImmutableSortedMap.html" title="type parameter in ImmutableSortedMap">K</A>&nbsp;fromKey)</CODE>
327 whose keys are greater than or equals to <code>fromKey</code>.</TD>
  /external/guava/javadoc/com/google/common/collect/
ImmutableSortedMap.html 491 <TD><CODE><B><A HREF="../../../../com/google/common/collect/ImmutableSortedMap.html#subMap(K, K)">subMap</A></B>(<A HREF="../../../../com/google/common/collect/ImmutableSortedMap.html" title="type parameter in ImmutableSortedMap">K</A>&nbsp;fromKey,
496 whose keys ranges from <code>fromKey</code>, inclusive, to <code>toKey</code>,
502 <TD><CODE><B><A HREF="../../../../com/google/common/collect/ImmutableSortedMap.html#tailMap(K)">tailMap</A></B>(<A HREF="../../../../com/google/common/collect/ImmutableSortedMap.html" title="type parameter in ImmutableSortedMap">K</A>&nbsp;fromKey)</CODE>
506 whose keys are greater than or equals to <code>fromKey</code>.</TD>
    [all...]
ForwardingSortedMap.html 212 <TD><CODE><B><A HREF="../../../../com/google/common/collect/ForwardingSortedMap.html#subMap(K, K)">subMap</A></B>(<A HREF="../../../../com/google/common/collect/ForwardingSortedMap.html" title="type parameter in ForwardingSortedMap">K</A>&nbsp;fromKey,
221 <TD><CODE><B><A HREF="../../../../com/google/common/collect/ForwardingSortedMap.html#tailMap(K)">tailMap</A></B>(<A HREF="../../../../com/google/common/collect/ForwardingSortedMap.html" title="type parameter in ForwardingSortedMap">K</A>&nbsp;fromKey)</CODE>
381 public <A HREF="http://java.sun.com/javase/6/docs/api/java/util/SortedMap.html?is-external=true" title="class or interface in java.util">SortedMap</A>&lt;<A HREF="../../../../com/google/common/collect/ForwardingSortedMap.html" title="type parameter in ForwardingSortedMap">K</A>,<A HREF="../../../../com/google/common/collect/ForwardingSortedMap.html" title="type parameter in ForwardingSortedMap">V</A>&gt; <B>subMap</B>(<A HREF="../../../../com/google/common/collect/ForwardingSortedMap.html" title="type parameter in ForwardingSortedMap">K</A>&nbsp;fromKey,
396 public <A HREF="http://java.sun.com/javase/6/docs/api/java/util/SortedMap.html?is-external=true" title="class or interface in java.util">SortedMap</A>&lt;<A HREF="../../../../com/google/common/collect/ForwardingSortedMap.html" title="type parameter in ForwardingSortedMap">K</A>,<A HREF="../../../../com/google/common/collect/ForwardingSortedMap.html" title="type parameter in ForwardingSortedMap">V</A>&gt; <B>tailMap</B>(<A HREF="../../../../com/google/common/collect/ForwardingSortedMap.html" title="type parameter in ForwardingSortedMap">K</A>&nbsp;fromKey)</PRE>
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsDatabaseHelper.java     [all...]
  /prebuilt/sdk/13/
android.jar 

Completed in 366 milliseconds