Home
last modified time | relevance | path

Searched refs:submap (Results 1 – 5 of 5) sorted by relevance

/external/tremolo/Tremolo/
Dmapping0.c143 int submap=0; in mapping_inverse() local
147 submap=info->chmuxlist[i]; in mapping_inverse()
148 floorno=info->submaplist[submap].floor; in mapping_inverse()
232 int submap=0; in mapping_inverse() local
236 submap=info->chmuxlist[i]; in mapping_inverse()
237 floorno=info->submaplist[submap].floor; in mapping_inverse()
Dcodec_internal.h165 typedef struct submap{ struct
168 } submap; argument
174 submap *submaplist;
/external/guava/guava/src/com/google/common/collect/
DAbstractMultimap.java1171 final transient Map<K, Collection<V>> submap;
1173 AsMap(Map<K, Collection<V>> submap) {
1174 this.submap = submap;
1187 return Maps.safeContainsKey(submap, key);
1191 Collection<V> collection = Maps.safeGet(submap, key);
1206 return submap.size();
1210 Collection<V> collection = submap.remove(key);
1223 return this == object || submap.equals(object);
1227 return submap.hashCode();
1231 return submap.toString();
[all …]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
DTreeMapTest.java1985 Map<String, String> submap = test_map.subMap("a","z"); in test_entrySet_contains() local
1988 submap.entrySet().contains(entry[0])); in test_entrySet_contains()
DTreeMapExtendTest.java13478 Map submap = tree.subMap(tree.firstKey(), tree.lastKey());
13480 assertEquals(submap, tree);