OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:startKey
(Results
1 - 8
of
8
) sorted by null
/libcore/luni/src/main/java/java/util/
SortedMap.java
77
* greater than or equal to the specified {@code
startKey
} and less than the
84
* @param
startKey
100
public SortedMap<K,V> subMap(K
startKey
, K endKey);
104
* are greater than or equal to the specified {@code
startKey
}. Changes to
110
* @param
startKey
113
* {@code
startKey
}.
124
public SortedMap<K,V> tailMap(K
startKey
);
Collections.java
838
@Override public SortedMap<K, V> subMap(K
startKey
, K endKey) {
840
return new SynchronizedSortedMap<K, V>(sm.subMap(
startKey
,
845
@Override public SortedMap<K, V> tailMap(K
startKey
) {
847
return new SynchronizedSortedMap<K, V>(sm.tailMap(
startKey
),
[
all
...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
TreeMapExtendTest.java
858
Object
startKey
= new Integer(100);
859
Object endKey =
startKey
;
860
SortedMap subMap = tm.subMap(
startKey
.toString(), endKey.toString());
862
subMap = subMap_default.subMap(
startKey
.toString(), endKey.toString());
864
subMap = subMap_startIncluded_endExcluded.subMap(
startKey
.toString(),
[
all
...]
RefSortedMap.java
211
public SortedMap<K, V> subMap(K
startKey
, K endKey) {
212
if (!isInRange(
startKey
)) {
218
return new SubMap(true,
startKey
, true, endKey);
290
public SortedMap<K, V> subMap(K
startKey
, K endKey) {
291
return new SubMap(true,
startKey
, true, endKey);
/external/webkit/Source/WebCore/storage/
IDBLevelDBBackingStore.cpp
[
all
...]
/prebuilt/sdk/5/
android.jar
/prebuilt/sdk/7/
android.jar
/prebuilt/sdk/8/
android.jar
Completed in 498 milliseconds