Home
last modified time | relevance | path

Searched refs:Inset (Results 1 – 5 of 5) sorted by relevance

/external/libchrome/ui/gfx/geometry/
Drect_f.h81 void Inset(float horizontal, float vertical) { in Inset() function
82 Inset(horizontal, vertical, horizontal, vertical); in Inset()
86 void Inset(const InsetsF& insets);
89 void Inset(float left, float top, float right, float bottom);
Drect.h121 void Inset(int horizontal, int vertical) { in Inset() function
122 Inset(horizontal, vertical, horizontal, vertical); in Inset()
126 void Inset(const Insets& insets);
129 void Inset(int left, int top, int right, int bottom);
Drect_f.cc45 void RectF::Inset(const InsetsF& insets) { in Inset() function in gfx::RectF
46 Inset(insets.left(), insets.top(), insets.right(), insets.bottom()); in Inset()
49 void RectF::Inset(float left, float top, float right, float bottom) { in Inset() function in gfx::RectF
Drect.cc111 void Rect::Inset(const Insets& insets) { in Inset() function in gfx::Rect
112 Inset(insets.left(), insets.top(), insets.right(), insets.bottom()); in Inset()
115 void Rect::Inset(int left, int top, int right, int bottom) { in Inset() function in gfx::Rect
/external/libchrome/base/numerics/
DREADME.md134 void Rect::Inset(int left, int top, int right, int bottom) {