Home
last modified time | relevance | path

Searched refs:other_rect (Results 1 – 2 of 2) sorted by relevance

/external/pdfium/core/src/fxcrt/
Dfx_basic_coords.cpp36 void FX_RECT::Union(const FX_RECT& other_rect) { in Union() argument
38 FX_RECT other = other_rect; in Union()
87 void CFX_FloatRect::Intersect(const CFX_FloatRect& other_rect) { in Intersect() argument
89 CFX_FloatRect other = other_rect; in Intersect()
99 void CFX_FloatRect::Union(const CFX_FloatRect& other_rect) { in Union() argument
101 CFX_FloatRect other = other_rect; in Union()
190 FX_BOOL CFX_FloatRect::Contains(const CFX_FloatRect& other_rect) const { in Contains()
193 CFX_FloatRect n2 = other_rect; in Contains()
/external/pdfium/core/include/fxcrt/
Dfx_coordinates.h455 void Union(const FX_RECT& other_rect);
469 FX_BOOL Contains(const FX_RECT& other_rect) const { in Contains()
470 return other_rect.left >= left && other_rect.right <= right && in Contains()
471 other_rect.top >= top && other_rect.bottom <= bottom; in Contains()
516 FX_BOOL Contains(const CFX_FloatRect& other_rect) const;
522 void Intersect(const CFX_FloatRect& other_rect);
524 void Union(const CFX_FloatRect& other_rect);