/external/guava/guava-tests/test/com/google/common/collect/ |
D | TreeRangeMapTest.java | 60 RangeMap<Integer, String> rangeMap = TreeRangeMap.create(); in suite() 115 RangeMap<Integer, String> rangeMap = TreeRangeMap.create(); in suite() 192 RangeMap<Integer, Integer> rangeMap = TreeRangeMap.create(); in testSpanSingleRange() 207 RangeMap<Integer, Integer> rangeMap = TreeRangeMap.create(); in testSpanTwoRanges() 240 RangeMap<Integer, Integer> test = TreeRangeMap.create(); in testAllRangesAlone() 252 RangeMap<Integer, Integer> test = TreeRangeMap.create(); in testAllRangePairs() 268 RangeMap<Integer, Integer> test = TreeRangeMap.create(); in testAllRangeTriples() 286 RangeMap<Integer, Integer> test = TreeRangeMap.create(); in testPutAll() 287 RangeMap<Integer, Integer> test2 = TreeRangeMap.create(); in testPutAll() 305 RangeMap<Integer, Integer> test = TreeRangeMap.create(); in testPutAndRemove() [all …]
|
D | ImmutableRangeMapTest.java | 132 RangeMap<Integer, Integer> rangemap = in testSpanSingleRange() 142 RangeMap<Integer, Integer> rangemap = in testSpanTwoRanges()
|
/external/guava/guava/src/com/google/common/collect/ |
D | TreeRangeMap.java | 56 public final class TreeRangeMap<K extends Comparable, V> implements RangeMap<K, V> { 134 public void putAll(RangeMap<K, V> rangeMap) { in putAll() 249 public RangeMap<K, V> subRangeMap(Range<K> subRange) { 258 private RangeMap<K, V> emptySubRangeMap() { 262 private static final RangeMap EMPTY_SUB_RANGE_MAP = 263 new RangeMap() { 289 public void putAll(RangeMap rangeMap) { 310 public RangeMap subRangeMap(Range range) { 316 private class SubRangeMap implements RangeMap<K, V> { 380 public void putAll(RangeMap<K, V> rangeMap) { [all …]
|
D | ImmutableRangeMap.java | 42 public class ImmutableRangeMap<K extends Comparable<?>, V> implements RangeMap<K, V> { 66 RangeMap<K, ? extends V> rangeMap) { in copyOf() 92 private final RangeMap<K, V> rangeMap; 130 public Builder<K, V> putAll(RangeMap<K, ? extends V> rangeMap) { in putAll() 204 public void putAll(RangeMap<K, V> rangeMap) { in putAll() 288 if (o instanceof RangeMap) { 289 RangeMap<?, ?> rangeMap = (RangeMap<?, ?>) o;
|
D | RangeMap.java | 36 public interface RangeMap<K extends Comparable, V> { interface 76 void putAll(RangeMap<K, V> rangeMap); in putAll() 114 RangeMap<K, V> subRangeMap(Range<K> range); in subRangeMap()
|
/external/google-breakpad/src/processor/ |
D | range_map-inl.h | 50 bool RangeMap<AddressType, EntryType>::StoreRange(const AddressType &base, in StoreRange() 118 bool RangeMap<AddressType, EntryType>::RetrieveRange( in RetrieveRange() 147 bool RangeMap<AddressType, EntryType>::RetrieveNearestRange( in RetrieveNearestRange() 178 bool RangeMap<AddressType, EntryType>::RetrieveRangeAtIndex( in RetrieveRangeAtIndex() 206 int RangeMap<AddressType, EntryType>::GetCount() const { in GetCount() 212 void RangeMap<AddressType, EntryType>::Clear() { in Clear()
|
D | map_serializers.h | 113 size_t SizeOf(const RangeMap<Address, Entry> &m) const; 118 char* Write(const RangeMap<Address, Entry> &m, char* dest) const; 124 char* Serialize(const RangeMap<Address, Entry> &m, unsigned int *size) const; 128 typedef typename RangeMap<Address, Entry>::Range Range;
|
D | basic_source_line_resolver_types.h | 68 RangeMap< MemAddr, linked_ptr<Line> > lines; 145 RangeMap< MemAddr, linked_ptr<Function> > functions_; 165 RangeMap<MemAddr, string> cfi_initial_rules_;
|
D | basic_code_modules.h | 49 template<typename AddressType, typename EntryType> class RangeMap; variable 78 RangeMap<uint64_t, linked_ptr<const CodeModule> > *map_;
|
D | range_map.h | 53 class RangeMap { 55 RangeMap() : map_() {} in RangeMap() function
|
D | basic_code_modules.cc | 50 map_(new RangeMap<uint64_t, linked_ptr<const CodeModule> >()) { in BasicCodeModules() 78 map_(new RangeMap<uint64_t, linked_ptr<const CodeModule> >()) { in BasicCodeModules()
|
D | map_serializers-inl.h | 120 const RangeMap<Address, Entry> &m) const { in SizeOf() 139 const RangeMap<Address, Entry> &m, char *dest) const { in Write() 170 const RangeMap<Address, Entry> &m, unsigned int *size) const { in Serialize()
|
D | module_comparer.cc | 110 RangeMap<MemAddr, linked_ptr<BasicFunc> >::MapConstIterator iter1; in CompareModule() 153 RangeMap<MemAddr, string>::MapConstIterator iter1; in CompareModule() 200 RangeMap<MemAddr, linked_ptr<BasicLine> >::MapConstIterator iter1; in CompareFunction()
|
D | range_map_unittest.cc | 49 using google_breakpad::RangeMap; 71 typedef RangeMap< AddressType, linked_ptr<CountedObject> > TestMap;
|
D | map_serializers_unittest.cc | 210 google_breakpad::RangeMap<AddrType, EntryType> range_map_;
|
D | static_range_map_unittest.cc | 48 typedef google_breakpad::RangeMap< AddressType, EntryType > RMap;
|
D | minidump.cc | 2432 range_map_(new RangeMap<uint64_t, unsigned int>()), in MinidumpModuleList() 2688 range_map_(new RangeMap<uint64_t, unsigned int>()), in MinidumpMemoryList() 3797 range_map_(new RangeMap<uint64_t, unsigned int>()), in MinidumpMemoryInfoList()
|
/external/v8/src/profiler/ |
D | allocation-tracker.cc | 117 ranges_.insert(RangeMap::value_type(end, new_range)); in AddRange() 122 RangeMap::const_iterator it = ranges_.upper_bound(addr); in GetTraceNodeId() 146 for (RangeMap::iterator it = ranges_.begin(); it != ranges_.end(); ++it) { in Print() 155 RangeMap::iterator it = ranges_.upper_bound(start); in RemoveRange() 160 RangeMap::iterator to_remove_begin = it; in RemoveRange() 177 ranges_.insert(RangeMap::value_type(start, prev_range)); in RemoveRange()
|
D | allocation-tracker.h | 91 typedef std::map<Address, RangeStack> RangeMap; typedef 95 RangeMap ranges_;
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/ |
D | Opcodes.java | 35 import com.google.common.collect.RangeMap; 101 RangeMap<Integer, Short> versionToValueMap; in Opcodes()
|
D | Opcode.java | 37 import com.google.common.collect.RangeMap; 346 public final RangeMap<Integer, Short> apiToValueMap; 347 public final RangeMap<Integer, Short> artVersionToValueMap;
|
/external/google-breakpad/src/google_breakpad/processor/ |
D | minidump.h | 107 template<typename AddressType, typename EntryType> class RangeMap; variable 520 RangeMap<uint64_t, unsigned int> *range_map_; 575 RangeMap<uint64_t, unsigned int> *range_map_; 849 RangeMap<uint64_t, unsigned int> *range_map_;
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/ |
D | HexagonConstExtenders.cpp | 1302 std::map<OffsetRange, IndexList> RangeMap; in assignInits() local 1304 RangeMap[Ranges[I-Begin]].insert(I); in assignInits() 1311 for (auto &P : RangeMap) { in assignInits() 1394 for (unsigned I : RangeMap[N->Range]) in assignInits()
|
/external/google-breakpad/src/processor/testdata/symbols/microdump/breakpad_unittests/DA7778FB66018A4E9B4110ED06E730D00/ |
D | breakpad_unittests.sym | 13342 …RangeMap<long long unsigned int, google_breakpad::linked_ptr<const google_breakpad::CodeModule> >:… 13354 …RangeMap<long long unsigned int, unsigned int>::Range, std::less<long long unsigned int>, std::all… 32666 …RangeMap<long long unsigned int, unsigned int>::Range>, std::priv::_Select1st<std::pair<long long … 33165 FUNC 4a508 b4 0 google_breakpad::RangeMap<long long unsigned int, unsigned int>::RetrieveRange 33643 …RangeMap<long long unsigned int, unsigned int>::Range>, std::priv::_Select1st<std::pair<long long … 33650 …RangeMap<long long unsigned int, unsigned int>::Range>, std::priv::_Select1st<std::pair<long long … 35863 …RangeMap<long long unsigned int, unsigned int>::Range>, std::priv::_Select1st<std::pair<long long … 35895 FUNC 4ffec 1e8 0 google_breakpad::RangeMap<long long unsigned int, unsigned int>::StoreRange 37056 …RangeMap<long long unsigned int, google_breakpad::linked_ptr<const google_breakpad::CodeModule> >:… 37124 …RangeMap<long long unsigned int, google_breakpad::linked_ptr<const google_breakpad::CodeModule> >:… [all …]
|
/external/google-breakpad/src/processor/testdata/symbols/microdump/breakpad_unittests/D6D1FEC9A15DE7F38A236898871A2E770/ |
D | breakpad_unittests.sym | 34363 …RangeMap<long unsigned int, unsigned int>::Range>, std::priv::_Select1st<std::pair<long unsigned i… 34911 FUNC 6fbb4 104 0 google_breakpad::RangeMap<long unsigned int, unsigned int>::RetrieveRange 35359 …RangeMap<long unsigned int, unsigned int>::Range>, std::priv::_Select1st<std::pair<long unsigned i… 35366 …RangeMap<long unsigned int, unsigned int>::Range>, std::priv::_Select1st<std::pair<long unsigned i… 37474 …RangeMap<long unsigned int, unsigned int>::Range>, std::priv::_Select1st<std::pair<long unsigned i… 37504 FUNC 77198 254 0 google_breakpad::RangeMap<long unsigned int, unsigned int>::StoreRange 38575 …RangeMap<long unsigned int, google_breakpad::linked_ptr<const google_breakpad::CodeModule> >::Rang… 38702 …RangeMap<long unsigned int, google_breakpad::linked_ptr<const google_breakpad::CodeModule> >::Rang… 38720 …RangeMap<long unsigned int, google_breakpad::linked_ptr<const google_breakpad::CodeModule> >::Rang… 38750 FUNC 79ec4 2d8 0 google_breakpad::RangeMap<long unsigned int, google_breakpad::linked_ptr<const goo…
|