Home
last modified time | relevance | path

Searched refs:RangeMap (Results 1 – 25 of 25) sorted by relevance

/external/guava/guava-tests/test/com/google/common/collect/
DTreeRangeMapTest.java60 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 …]
DImmutableRangeMapTest.java132 RangeMap<Integer, Integer> rangemap = in testSpanSingleRange()
142 RangeMap<Integer, Integer> rangemap = in testSpanTwoRanges()
/external/guava/guava/src/com/google/common/collect/
DTreeRangeMap.java56 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 …]
DImmutableRangeMap.java42 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;
DRangeMap.java36 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/
Drange_map-inl.h50 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()
Dmap_serializers.h113 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;
Dbasic_source_line_resolver_types.h68 RangeMap< MemAddr, linked_ptr<Line> > lines;
145 RangeMap< MemAddr, linked_ptr<Function> > functions_;
165 RangeMap<MemAddr, string> cfi_initial_rules_;
Dbasic_code_modules.h49 template<typename AddressType, typename EntryType> class RangeMap; variable
78 RangeMap<uint64_t, linked_ptr<const CodeModule> > *map_;
Drange_map.h53 class RangeMap {
55 RangeMap() : map_() {} in RangeMap() function
Dbasic_code_modules.cc50 map_(new RangeMap<uint64_t, linked_ptr<const CodeModule> >()) { in BasicCodeModules()
78 map_(new RangeMap<uint64_t, linked_ptr<const CodeModule> >()) { in BasicCodeModules()
Dmap_serializers-inl.h120 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()
Dmodule_comparer.cc110 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()
Drange_map_unittest.cc49 using google_breakpad::RangeMap;
71 typedef RangeMap< AddressType, linked_ptr<CountedObject> > TestMap;
Dmap_serializers_unittest.cc210 google_breakpad::RangeMap<AddrType, EntryType> range_map_;
Dstatic_range_map_unittest.cc48 typedef google_breakpad::RangeMap< AddressType, EntryType > RMap;
Dminidump.cc2432 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/
Dallocation-tracker.cc117 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()
Dallocation-tracker.h91 typedef std::map<Address, RangeStack> RangeMap; typedef
95 RangeMap ranges_;
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/
DOpcodes.java35 import com.google.common.collect.RangeMap;
101 RangeMap<Integer, Short> versionToValueMap; in Opcodes()
DOpcode.java37 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/
Dminidump.h107 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/
DHexagonConstExtenders.cpp1302 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/
Dbreakpad_unittests.sym13342RangeMap<long long unsigned int, google_breakpad::linked_ptr<const google_breakpad::CodeModule> >:…
13354RangeMap<long long unsigned int, unsigned int>::Range, std::less<long long unsigned int>, std::all…
32666RangeMap<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
33643RangeMap<long long unsigned int, unsigned int>::Range>, std::priv::_Select1st<std::pair<long long …
33650RangeMap<long long unsigned int, unsigned int>::Range>, std::priv::_Select1st<std::pair<long long …
35863RangeMap<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
37056RangeMap<long long unsigned int, google_breakpad::linked_ptr<const google_breakpad::CodeModule> >:…
37124RangeMap<long long unsigned int, google_breakpad::linked_ptr<const google_breakpad::CodeModule> >:…
[all …]
/external/google-breakpad/src/processor/testdata/symbols/microdump/breakpad_unittests/D6D1FEC9A15DE7F38A236898871A2E770/
Dbreakpad_unittests.sym34363RangeMap<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
35359RangeMap<long unsigned int, unsigned int>::Range>, std::priv::_Select1st<std::pair<long unsigned i…
35366RangeMap<long unsigned int, unsigned int>::Range>, std::priv::_Select1st<std::pair<long unsigned i…
37474RangeMap<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
38575RangeMap<long unsigned int, google_breakpad::linked_ptr<const google_breakpad::CodeModule> >::Rang…
38702RangeMap<long unsigned int, google_breakpad::linked_ptr<const google_breakpad::CodeModule> >::Rang…
38720RangeMap<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…