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

  /external/google-breakpad/src/common/windows/
omap_internal.h 66 struct AddressRange {
70 AddressRange() : rva(0), length(0) { }
71 AddressRange(DWORD rva, DWORD length) : rva(rva), length(length) { }
78 int Compare(const AddressRange& rhs) const;
79 bool operator<(const AddressRange& rhs) const { return Compare(rhs) == -1; }
80 bool operator>(const AddressRange& rhs) const { return Compare(rhs) == 1; }
83 bool operator==(const AddressRange& rhs) const {
86 bool operator!=(const AddressRange& rhs) const { return !((*this) == rhs); }
89 typedef std::vector<AddressRange> AddressRangeVector;
omap.h 67 const AddressRange& original_range,
omap_unittest.cc 66 std::ostream& operator<<(std::ostream& os, const AddressRange& ar) {
67 os << "AddressRange(rva=" << ar.rva << ", length=" << ar.length << ")";
99 const AddressRange B(100, 15);
100 const AddressRange C(B.end(), 10);
101 const AddressRange D(C.end(), 25);
102 const AddressRange E(D.end(), 10);
103 const AddressRange F(E.end(), 40);
104 const AddressRange G(F.end(), 3);
105 const AddressRange H(G.end(), 7);
108 const AddressRange Bt(100, 15);
    [all...]