Searched refs:Covers (Results 1 - 13 of 13) sorted by relevance

/external/google-breakpad/src/common/
H A Dmemory_range.h77 bool Covers(size_t sub_offset, size_t sub_length) const { function in class:google_breakpad::MemoryRange
91 return Covers(sub_offset, sub_length) ? (data_ + sub_offset) : NULL;
125 return Covers(sub_offset, sub_length) ?
H A Dmemory_range_unittest.cc44 // Test vectors for verifying Covers, GetData, and Subrange.
150 EXPECT_TRUE(range.Covers(sub_offset, sub_length));
156 EXPECT_FALSE(range.Covers(sub_offset, sub_length));
/external/google-breakpad/src/tools/linux/md2core/
H A Dminidump_memory_range.h60 if (Covers(sub_offset, sub_length))
H A Dminidump_memory_range_unittest.cc45 // Test vectors for verifying Covers, GetData, and Subrange.
151 EXPECT_TRUE(range.Covers(sub_offset, sub_length));
157 EXPECT_FALSE(range.Covers(sub_offset, sub_length));
179 EXPECT_TRUE(range.Covers(sub_offset, sub_length));
185 EXPECT_FALSE(range.Covers(sub_offset, sub_length));
/external/perf_data_converter/src/quipper/
H A Daddress_mapper.h106 inline bool Covers(const MappedRange& range) const { function in struct:quipper::AddressMapper::MappedRange
112 // This is different from Covers() in that the boundaries cannot overlap.
H A Daddress_mapper.cc69 if (old_range_iter == mappings_.end() && iter->Covers(range) &&
/external/v8/src/crankshaft/
H A Dlithium-allocator.h276 bool Covers(LifetimePosition position);
H A Dlithium-allocator.cc477 bool LiveRange::Covers(LifetimePosition position) { function in class:v8::internal::LiveRange
1437 while (cur != NULL && !cur->Covers(safe_point_pos)) {
1556 } else if (!cur_active->Covers(position)) {
1567 } else if (cur_inactive->Covers(position)) {
1947 if (range->Covers(loop_start)) {
H A Dhydrogen.cc12948 while (cur_interval != NULL && range->Covers(cur_interval->start())) {
/external/v8/src/compiler/
H A Dregister-allocator.cc770 bool LiveRange::Covers(LifetimePosition position) const { function in class:v8::internal::compiler::LiveRangeBoundArray::LiveRange
2514 if (!range->Covers(last_pos)) return false;
2697 if (range->Covers(loop_start)) {
2806 } else if (!cur_active->Covers(position)) {
2817 } else if (cur_inactive->Covers(position)) {
3695 if (cur->Covers(safe_point_pos)) {
H A Dregister-allocator.h415 bool Covers(LifetimePosition position) const;
/external/v8/tools/
H A Dgrokdump.py585 def Covers(self, addr): member in class:FuncSymbol
971 if (0 < i) and self.symbols[i - 1].Covers(addr):
973 elif (i < len(self.symbols)) and self.symbols[i].Covers(addr):
/external/abi-compliance-checker/
H A Dabi-compliance-checker.pl3153 if(my @Covers = sort {length($a)<=>length($b)}
3158 return $Covers[0];
3162 if(my @Covers = sort {length($a)<=>length($b)} sort keys(%{$StdCxxTypedef{$Version}{$TypeName}}))
3164 if(my $Cover = $Covers[0])

Completed in 788 milliseconds