Searched refs:ListMap (Results 1 – 4 of 4) sorted by relevance
134 std::map<uint32_t, DWARFListType> ListMap; variable147 ListMap.clear(); in clear()200 ListMap[Off] = CurrentList; in extract()242 for (const auto &List : ListMap) in dump()250 for (const auto &List : ListMap) in dump()260 auto Entry = ListMap.find(Offset); in findList()261 if (Entry != ListMap.end()) in findList()272 ListMap[StartingOffset] = List; in findList()
41 class ListMap { class
647 if (ListMap.hasList(header) && !SIPHeaderList.class.isAssignableFrom(header.getClass())) { in attachHeader()648 SIPHeaderList<SIPHeader> hdrList = ListMap.getList(header); in attachHeader()
1066 private interface ListMap<K, V> extends Map<K, List<V>> {} interface in TypeTokenTest1070 ListMap.class.getTypeParameters()[0], in testGetSupertype_fullyGenericType()1071 Types.newParameterizedType(List.class, ListMap.class.getTypeParameters()[1])); in testGetSupertype_fullyGenericType()1073 TypeToken.of(ListMap.class).getSupertype(Map.class).getType()); in testGetSupertype_fullyGenericType()1079 new TypeToken<ListMap<String, Object>>() {}.getSupertype(Map.class).getType()); in testGetSupertype_fullySpecializedType()1082 private interface StringListMap<V> extends ListMap<String, V> {}