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

  /external/google-breakpad/src/processor/
contained_range_map_unittest.cc 59 // First, do the StoreRange tests. This validates the containment
61 ASSERT_TRUE (crm.StoreRange(10, 10, 1));
62 ASSERT_FALSE(crm.StoreRange(10, 10, 2)); // exactly equal to 1
63 ASSERT_FALSE(crm.StoreRange(11, 10, 3)); // begins inside 1 and extends up
64 ASSERT_FALSE(crm.StoreRange( 9, 10, 4)); // begins below 1 and ends inside
65 ASSERT_TRUE (crm.StoreRange(11, 9, 5)); // contained by existing
66 ASSERT_TRUE (crm.StoreRange(12, 7, 6));
67 ASSERT_TRUE (crm.StoreRange( 9, 12, 7)); // contains existing
68 ASSERT_TRUE (crm.StoreRange( 9, 13, 8));
69 ASSERT_TRUE (crm.StoreRange( 8, 14, 9))
    [all...]
static_contained_range_map_unittest.cc 175 // First, do the StoreRange tests. This validates the containment
178 ASSERT_TRUE (crm_map_.StoreRange(10, 10, 1));
179 ASSERT_FALSE(crm_map_.StoreRange(10, 10, 2)); // exactly equal to 1
180 ASSERT_FALSE(crm_map_.StoreRange(11, 10, 3)); // begins inside 1 and extends up
181 ASSERT_FALSE(crm_map_.StoreRange( 9, 10, 4)); // begins below 1 and ends inside
182 ASSERT_TRUE (crm_map_.StoreRange(11, 9, 5)); // contained by existing
183 ASSERT_TRUE (crm_map_.StoreRange(12, 7, 6));
184 ASSERT_TRUE (crm_map_.StoreRange( 9, 12, 7)); // contains existing
185 ASSERT_TRUE (crm_map_.StoreRange( 9, 13, 8));
186 ASSERT_TRUE (crm_map_.StoreRange( 8, 14, 9))
    [all...]
map_serializers_unittest.cc 240 range_map_.StoreRange(1, 10, 6);
261 ASSERT_TRUE(range_map_.StoreRange(2, 4, 1));
262 ASSERT_TRUE(range_map_.StoreRange(6, 4, 2));
263 ASSERT_TRUE(range_map_.StoreRange(10, 11, 3));
322 crm_map_.StoreRange(3, 7, -1);
365 ASSERT_TRUE(crm_map_.StoreRange(2, 7, -1));
367 ASSERT_TRUE(crm_map_.StoreRange(10, 11, -1));
369 ASSERT_TRUE(crm_map_.StoreRange(3, 2, -1));
371 ASSERT_TRUE(crm_map_.StoreRange(6, 2, -1));
373 ASSERT_TRUE(crm_map_.StoreRange(16, 5, -1))
    [all...]
contained_range_map.h 42 // to introduce objects (via StoreRange) that violate these rules will fail.
84 // StoreRange method. If the new range encompasses any existing child
89 bool StoreRange(const AddressType &base,
112 // StoreRange, because it doesn't need to copy entire objects.
contained_range_map-inl.h 57 bool ContainedRangeMap<AddressType, EntryType>::StoreRange(
67 // BPLOG(INFO) << "StoreRange failed, " << HexString(base) << "+"
89 // BPLOG(INFO) << "StoreRange failed, identical range is already "
95 return iterator_base->second->StoreRange(base, size, entry);
112 // BPLOG(INFO) << "StoreRange failed, new range partially contains "
basic_code_modules.cc 69 if (!map_->StoreRange(module->base_address(), module->size(), module)) {
range_map.h 60 bool StoreRange(const AddressType &base,
basic_source_line_resolver.cc 144 // StoreRange will fail if the function has an invalid address or size.
147 functions_.StoreRange(cur_func->address, cur_func->size, cur_func);
176 cur_func->lines.StoreRange(line->address, line->size,
397 // TODO(mmentovai): I wanted to use StoreRange's return value as this
417 windows_frame_info_[type].StoreRange(rva, code_size, stack_frame_info);
450 cfi_initial_rules_.StoreRange(address, size, initial_rules);
range_map_unittest.cc 102 // StoreTest uses the data in a RangeTest and calls StoreRange on the
107 bool stored = range_map->StoreRange(range_test->address,
113 "StoreRange id %d, expected %s, observed %s\n",
339 range_map->StoreRange(base_address, range_size, object);
470 // Run the StoreRange test, which validates StoreRange and initializes
range_map-inl.h 50 bool RangeMap<AddressType, EntryType>::StoreRange(const AddressType &base,
60 BPLOG_IF(INFO, size != 0) << "StoreRange failed, " << HexString(base) <<
81 // BPLOG(INFO) << "StoreRange failed, an existing range is contained by or "
101 // BPLOG(INFO) << "StoreRange failed, an existing range contains or "
microdump.cc 89 if (!map_->StoreRange(module->base_address(), module->size(), module_ptr)) {
static_range_map_unittest.cc 173 // StoreTest uses the data in a RangeTest and calls StoreRange on the
201 bool stored = range_map->StoreRange(range_test->address,
205 << "StoreRange id " << range_test->id << "FAILED";
360 // Run the StoreRange test, which validates StoreRange and initializes
minidump.cc     [all...]

Completed in 192 milliseconds