HomeSort by relevance Sort by last modified time
    Searched refs:StaticMap (Results 1 - 11 of 11) sorted by null

  /external/google-breakpad/src/processor/
static_map_iterator.h 32 // through a StaticMap map. It does not provide *, -> operators, user should
47 template<typename Key, typename Value, typename Compare> class StaticMap;
87 friend class StaticMap<Key, Value, Compare>;
89 // Only StaticMap can call this constructor.
static_address_map.h 32 // StaticAddressMap is a wrapper class of StaticMap, just as AddressMap wraps
36 // Store() due to the static nature of the underlying StaticMap.
69 typedef StaticMap<AddressType, EntryType> AddressToEntryMap;
static_contained_range_map.h 33 // StaticContainedRangeMap wraps a StaticMap instead of std::map, and does not
68 StaticMap<AddressType, StaticContainedRangeMap> AddressToRangeMap;
static_map.h 29 // static_map.h: StaticMap.
31 // StaticMap provides lookup interfaces and iterators similar as stl::map's.
59 // StaticMap only supports up to 4GB size of memory data.
83 class StaticMap {
88 StaticMap() : raw_data_(0),
93 explicit StaticMap(const char* raw_data);
static_map-inl.h 29 // static_map-inl.h: StaticMap implementation.
46 StaticMap<Key, Value, Compare>::StaticMap(const char* raw_data)
62 StaticMap<Key, Value, Compare>::find(const Key &key) const {
83 StaticMap<Key, Value, Compare>::lower_bound(const Key &key) const {
104 StaticMap<Key, Value, Compare>::upper_bound(const Key &key) const {
124 bool StaticMap<Key, Value, Compare>::ValidateInMemoryStructure() const {
129 BPLOG(INFO) << "StaticMap check failed: negative number of nodes";
139 BPLOG(INFO) << "StaticMap check failed: size exceeds limit";
143 BPLOG(INFO) << "StaticMap check failed: first node offset is incorrect"
    [all...]
fast_source_line_resolver_types.h 149 typedef StaticMap<int, char> FileMap;
152 StaticMap<int, char> files_;
180 StaticMap<MemAddr, char> cfi_delta_rules_;
static_range_map.h 33 // StaticMap instead of std::map, and does not support dynamic operations like
98 typedef StaticMap<AddressType, Range> AddressToRangeMap;
fast_source_line_resolver.cc 162 // "Static***Map": static version of std::map or map wrapper, i.e., StaticMap,
172 files_ = StaticMap<int, char>(mem_buffer + offsets[map_id++]);
183 cfi_delta_rules_ = StaticMap<MemAddr, char>(mem_buffer + offsets[map_id++]);
263 StaticMap<MemAddr, char>::iterator delta =
module_comparer.cc 173 StaticMap<MemAddr, char>::iterator iter2;
static_map_unittest.cc 30 // static_map_unittest.cc: Unit tests for StaticMap.
43 typedef google_breakpad::StaticMap< KeyType, ValueType > TestMap;
91 // 40 Bytes memory can hold a StaticMap with up to 3 nodes.
  /external/llvm/lib/DebugInfo/PDB/Raw/
PDBFileBuilder.cpp 53 static std::vector<std::vector<support::ulittle32_t>> StaticMap;
55 StaticMap.clear();
74 StaticMap.resize(File->StreamSizes.size());
78 auto &ThisStream = StaticMap[S];

Completed in 1110 milliseconds