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 27 void Rect::Inset(int32_t left, int32_t top, int32_t right, int32_t bottom) {
131 void FloatRect::Inset(float left, float top, float right, float 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);
644 /// Inset() shrinks the rectangle by a horizontal and vertical
651 void Inset(float horizontal, float vertical) {
652 Inset(horizontal, vertical, horizontal, vertical);
655 /// Inset() shrinks the rectangle by the specified amount on each
666 void Inset(float left, float top, float right, float bottom)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
ShadowData.h 33 enum ShadowStyle { Normal, Inset };
  /external/chromium_org/ui/gfx/geometry/
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);
rect_base_impl.h 52 Inset(const InsetsClass& insets) {
53 Inset(insets.left(), insets.top(), insets.right(), insets.bottom());
63 Inset(Type left, Type top, Type right, Type bottom) {

Completed in 52 milliseconds