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

  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FilterOperations.cpp 39 IntSize outset; local
41 outset.setWidth(3 * kernelSize.width() * 0.5f);
42 outset.setHeight(3 * kernelSize.height() * 0.5f);
44 return outset;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
NinePieceImage.h 53 BorderImageLengthBox outset; member in class:blink::NinePieceImageData
64 const BorderImageLengthBox& outset, ENinePieceImageRule horizontalRule, ENinePieceImageRule verticalRule);
82 const BorderImageLengthBox& outset() const { return m_data->outset; } function in class:blink::NinePieceImage
83 void setOutset(const BorderImageLengthBox& outset) { m_data.access()->outset = outset; }
104 m_data.access()->outset = other.m_data->outset;
  /frameworks/base/libs/hwui/
Rect.h 179 outset(-delta);
182 void outset(float delta) { function in class:android::uirenderer::Rect
189 void outset(float xdelta, float ydelta) { function in class:android::uirenderer::Rect
219 /* For other geometry, we do the regular rounding in order to snap, but also outset the
TessellationCache.cpp 450 float outset = description.strokeWidth / 2; local
451 rect.outset(outset, outset);
452 rx += outset;
453 ry += outset;
OpenGLRenderer.cpp 1522 float outset = paint->getStrokeWidth() * 0.5f; local
    [all...]
  /external/chromium_org/third_party/skia/include/core/
SkRRect.h 231 * Call outset on the bounds, and adjust the radii to reflect what happens
238 void outset(SkScalar dx, SkScalar dy, SkRRect* dst) const { function in class:SkRRect
241 void outset(SkScalar dx, SkScalar dy) { function in class:SkRRect
SkRect.h 209 /** Outset the rectangle by (dx,dy). If dx is positive, then the sides are
214 void outset(int32_t dx, int32_t dy) { this->inset(-dx, -dy); } function in struct:SkIRect
642 /** Outset the rectangle by (dx,dy). If dx is positive, then the sides are
647 void outset(SkScalar dx, SkScalar dy) { this->inset(-dx, -dy); }
  /external/skia/include/core/
SkRRect.h 231 * Call outset on the bounds, and adjust the radii to reflect what happens
238 void outset(SkScalar dx, SkScalar dy, SkRRect* dst) const { function in class:SkRRect
241 void outset(SkScalar dx, SkScalar dy) { function in class:SkRRect
SkRect.h 209 /** Outset the rectangle by (dx,dy). If dx is positive, then the sides are
214 void outset(int32_t dx, int32_t dy) { this->inset(-dx, -dy); } function in struct:SkIRect
644 /** Outset the rectangle by (dx,dy). If dx is positive, then the sides are
649 void outset(SkScalar dx, SkScalar dy) { this->inset(-dx, -dy); }
  /packages/apps/Launcher3/src/com/android/launcher3/
PendingAppWidgetHostView.java 178 int outset = (mCenterDrawable instanceof PreloadIconDrawable) ? local
181 .getDeviceProfile().iconSizePx + 2 * outset;
187 mRect.inset(outset, outset);
  /external/chromium_org/third_party/skia/experimental/AndroidPathRenderer/
AndroidPathRenderer.cpp 43 float outset = paint->getStrokeWidth() * 0.5f; local
44 bounds.outset(outset, outset);
  /external/chromium_org/third_party/skia/tests/
BlurTest.cpp 29 static const int outset = 100; variable
128 iref.inset(-outset, -outset);
  /external/skia/experimental/AndroidPathRenderer/
AndroidPathRenderer.cpp 43 float outset = paint->getStrokeWidth() * 0.5f; local
44 bounds.outset(outset, outset);
  /external/skia/tests/
BlurTest.cpp 29 static const int outset = 100; variable
128 iref.inset(-outset, -outset);
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSComputedStyleDeclaration.cpp 531 // Create the border outset.
532 RefPtrWillBeRawPtr<CSSValue> outset = valueForNinePieceImageQuad(image.outset(), style); local
537 return createBorderImageValue(imageValue.release(), imageSlices.release(), borderSlices.release(), outset.release(), repeat.release());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
GraphicsContext.cpp 672 const int outset = focusRingOutset(offset); local
675 r.inset(-outset, -outset);
    [all...]

Completed in 652 milliseconds