Home
last modified time | relevance | path

Searched defs:LinkedHashMap (Results 1 – 8 of 8) sorted by relevance

/external/antlr/runtime/ObjC/Framework/
DLinkedHashMap.m65 {
75 {
88 {
93 {
151 {
156 {
172 {
177 {
193 {
198 {
[all …]
/external/rust/crates/linked-hash-map/src/
Dlib.rs65 pub struct LinkedHashMap<K, V, S = hash_map::RandomState> { struct
66 map: HashMap<KeyRef<K>, *mut Node<K, V>, S>,
67 head: *mut Node<K, V>,
68 free: *mut Node<K, V>,
124 impl<K: Hash + Eq, V> LinkedHashMap<K, V> { impl
134 impl<K, V, S> LinkedHashMap<K, V, S> { impl
188 impl<K: Hash + Eq, V, S: BuildHasher> LinkedHashMap<K, V, S> { implementation
701 impl<'a, K, V, S, Q: ?Sized> Index<&'a Q> for LinkedHashMap<K, V, S> implementation
711 impl<'a, K, V, S, Q: ?Sized> IndexMut<&'a Q> for LinkedHashMap<K, V, S> implementation
719 impl<K: Hash + Eq + Clone, V: Clone, S: BuildHasher + Clone> Clone for LinkedHashMap<K, V, S> { implementation
[all …]
Dserde.rs15 impl<K, V, S> Serialize for LinkedHashMap<K, V, S> implementation
85 impl<'de, K, V> Deserialize<'de> for LinkedHashMap<K, V> implementation
Dheapsize.rs23 impl<K, V, S> HeapSizeOf for LinkedHashMap<K, V, S> implementation
/external/rust/crates/hashlink/src/
Dlinked_hash_map.rs32 pub struct LinkedHashMap<K, V, S = hash_map::DefaultHashBuilder> { struct
46 impl<K, V> LinkedHashMap<K, V> { argument
68 impl<K, V, S> LinkedHashMap<K, V, S> { implementation
305 impl<K, V, S> LinkedHashMap<K, V, S> impl
446 impl<K, V, S> LinkedHashMap<K, V, S> implementation
469 impl<K, V, S> Default for LinkedHashMap<K, V, S> implementation
479 impl<K: Hash + Eq, V, S: BuildHasher + Default> FromIterator<(K, V)> for LinkedHashMap<K, V, S> { implementation
489 impl<K, V, S> fmt::Debug for LinkedHashMap<K, V, S> implementation
500 impl<K: Hash + Eq, V: PartialEq, S: BuildHasher> PartialEq for LinkedHashMap<K, V, S> { implementation
507 impl<K: Hash + Eq, V: Eq, S: BuildHasher> Eq for LinkedHashMap<K, V, S> {} implementation
[all …]
Dserde.rs17 impl<K, V, S> Serialize for LinkedHashMap<K, V, S> implementation
76 impl<'de, K, V> Deserialize<'de> for LinkedHashMap<K, V> implementation
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/constructor/
DConstructorMappingTest.java45 assertTrue(map.getClass().toString(), map instanceof LinkedHashMap); in testGetArrayList() local
DConstructorTest.java34 assertTrue(map.getClass().toString(), map instanceof LinkedHashMap); in testMapOrder() local