HomeSort by relevance Sort by last modified time
    Searched defs:Inset (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/ppapi/cpp/
rect.cc 26 void Rect::Inset(int32_t left, int32_t top, int32_t right, int32_t bottom) {
rect.h 259 /// Inset() shrinks the rectangle by a horizontal and vertical
266 void Inset(int32_t horizontal, int32_t vertical) {
267 Inset(horizontal, vertical, horizontal, vertical);
270 /// Inset() shrinks the rectangle by the specified amount on each
281 void Inset(int32_t left, int32_t top, int32_t right, int32_t bottom);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
ShadowData.h 36 enum ShadowStyle { Normal, Inset };
  /external/chromium_org/ui/gfx/
rect_base_impl.h 51 Inset(const InsetsClass& insets) {
52 Inset(insets.left(), insets.top(), insets.right(), insets.bottom());
62 Inset(Type left, Type top, Type right, Type bottom) {
rect_base.h 61 void Inset(Type horizontal, Type vertical) {
62 Inset(horizontal, vertical, horizontal, vertical);
66 void Inset(const InsetsClass& insets);
69 void Inset(Type left, Type top, Type right, Type bottom);

Completed in 266 milliseconds