HomeSort by relevance Sort by last modified time
    Searched refs:inset (Results 51 - 75 of 320) sorted by null

1 23 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/gesture/
Gesture.java 216 * @param inset
220 public Bitmap toBitmap(int width, int height, int inset, int color) {
238 final float sx = (width - 2 * inset) / bounds.width();
239 final float sy = (height - 2 * inset) / bounds.height();
246 canvas.translate(inset, inset);
  /frameworks/support/swiperefreshlayout/src/main/java/androidx/swiperefreshlayout/widget/
CircularProgressDrawable.java 708 float inset = mStrokeWidth / 2f; // Calculate inset to draw inside the arc local
709 arcBounds.inset(inset, inset); // Apply inset
712 arcBounds.inset(-inset, -inset); // Revert the inset
728 float inset = mArrowWidth * mArrowScale \/ 2f; local
    [all...]
  /external/autotest/frontend/client/src/autotest/public/
standard.css 115 border: 1px inset #ccc;
120 border: 1px inset;
126 border: 1px inset #ccc;
  /external/skia/gm/
addarc.cpp 34 const SkScalar inset = paint.getStrokeWidth() + 4; variable
50 r.inset(inset, inset);
150 r.inset(delta, delta);
203 r.inset(delta, delta);
resizeimagefilter.cpp 51 ovalRect.inset(SkIntToScalar(4), SkIntToScalar(4));
101 ovalRect.inset(SkIntToScalar(2)/3, SkIntToScalar(2)/3);
simple_magnification.cpp 61 * SkMagnifierImageFilter is then used to blow it up with different inset border widths.
65 * BottomLeft origin + 1-wide inset | TopLeft origin + 1-wide inset
67 * BottomLeft origin + 7-wide inset | TopLeft origin + 7-wide inset
86 void draw(SkCanvas* canvas, sk_sp<SkImage> image, const SkIPoint& offset, int inset) {
90 sk_sp<SkImageFilter> magFilter(SkMagnifierImageFilter::Make(srcRect, inset, imgSrc));
spritebitmap.cpp 36 clipR.inset(5, 5);
blurrect.cpp 30 rect.inset(STROKE_WIDTH/2, STROKE_WIDTH/2);
46 rect.inset(STROKE_WIDTH/2, STROKE_WIDTH/2);
157 clipRect.inset(STROKE_WIDTH/2, STROKE_WIDTH/2);
  /external/skqp/gm/
addarc.cpp 34 const SkScalar inset = paint.getStrokeWidth() + 4; variable
50 r.inset(inset, inset);
150 r.inset(delta, delta);
203 r.inset(delta, delta);
resizeimagefilter.cpp 51 ovalRect.inset(SkIntToScalar(4), SkIntToScalar(4));
101 ovalRect.inset(SkIntToScalar(2)/3, SkIntToScalar(2)/3);
simple_magnification.cpp 60 * SkMagnifierImageFilter is then used to blow it up with different inset border widths.
64 * BottomLeft origin + 1-wide inset | TopLeft origin + 1-wide inset
66 * BottomLeft origin + 7-wide inset | TopLeft origin + 7-wide inset
85 void draw(SkCanvas* canvas, sk_sp<SkImage> image, const SkIPoint& offset, int inset) {
89 sk_sp<SkImageFilter> magFilter(SkMagnifierImageFilter::Make(srcRect, inset, imgSrc));
strokes.cpp 326 static SkRect inset(const SkRect& r) { function
328 rr.inset(r.width()/10, r.height()/10);
335 path->addRect(inset(bounds), SkPath::kCW_Direction);
341 path->addRect(inset(bounds), SkPath::kCCW_Direction);
347 path->addOval(inset(bounds), SkPath::kCW_Direction);
353 path->addOval(inset(bounds), SkPath::kCCW_Direction);
360 r.inset(bounds.width() / 10, -bounds.height() / 10);
368 r.inset(bounds.width() / 10, -bounds.height() / 10);
spritebitmap.cpp 36 clipR.inset(5, 5);
blurrect.cpp 30 rect.inset(STROKE_WIDTH/2, STROKE_WIDTH/2);
46 rect.inset(STROKE_WIDTH/2, STROKE_WIDTH/2);
157 clipRect.inset(STROKE_WIDTH/2, STROKE_WIDTH/2);
  /external/skia/samplecode/
SampleColorFilter.cpp 94 r.inset(SK_Scalar1, SK_Scalar1);
102 r.inset(SK_Scalar1*n/4, SK_Scalar1*n/4);
  /external/skqp/samplecode/
SampleColorFilter.cpp 94 r.inset(SK_Scalar1, SK_Scalar1);
102 r.inset(SK_Scalar1*n/4, SK_Scalar1*n/4);
  /frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/template/
ListMixin.java 152 public void setDividerInset(int inset) {
153 setDividerInsets(inset, 0);
157 * Sets the start inset of the divider. This will use the default divider drawable set in the
160 * @param start The number of pixels to inset on the "start" side of the list divider. Typically
163 * @param end The number of pixels to inset on the "end" side of the list divider.
172 * @return The number of pixels inset on the start side of the divider.
181 * @return The number of pixels inset on the start side of the divider.
188 * @return The number of pixels inset on the end side of the divider.
  /frameworks/opt/setupwizard/library/recyclerview/src/com/android/setupwizardlib/
GlifRecyclerLayout.java 155 public void setDividerInset(int inset) {
156 mRecyclerMixin.setDividerInset(inset);
SetupWizardRecyclerLayout.java 147 public void setDividerInset(int inset) {
148 mRecyclerMixin.setDividerInset(inset);
152 * Sets the start inset of the divider. This will use the default divider drawable set in the
155 * @param start The number of pixels to inset on the "start" side of the list divider. Typically
158 * @param end The number of pixels to inset on the "end" side of the list divider.
  /frameworks/opt/setupwizard/library/recyclerview/src/com/android/setupwizardlib/template/
RecyclerMixin.java 191 public void setDividerInset(int inset) {
192 setDividerInsets(inset, 0);
196 * Sets the start inset of the divider. This will use the default divider drawable set in the
199 * @param start The number of pixels to inset on the "start" side of the list divider. Typically
202 * @param end The number of pixels to inset on the "end" side of the list divider.
211 * @return The number of pixels inset on the start side of the divider.
220 * @return The number of pixels inset on the start side of the divider.
227 * @return The number of pixels inset on the end side of the divider.
  /frameworks/base/core/java/android/view/
WindowInsets.java 30 * <p>WindowInsets are immutable and may be expanded to include more inset types in the future.
141 * Returns the left system window inset in pixels.
143 * <p>The system window inset represents the area of a full-screen window that is
147 * @return The left system window inset
154 * Returns the top system window inset in pixels.
156 * <p>The system window inset represents the area of a full-screen window that is
160 * @return The top system window inset
167 * Returns the right system window inset in pixels.
169 * <p>The system window inset represents the area of a full-screen window that is
173 * @return The right system window inset
556 public WindowInsets inset(Rect r) { method in class:WindowInsets
581 public WindowInsets inset(int left, int top, int right, int bottom) { method in class:WindowInsets
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/util/
TransformingTouchDelegate.java 63 mTouchCheckBounds.inset(-mTouchExtension, -mTouchExtension);
  /external/skia/src/gpu/effects/
GrMagnifierEffect.cpp 180 SkScalar inset = d->fRandom->nextRangeScalar(1.0f, kMaxInset); local
190 bounds.width() / inset,
191 bounds.height() / inset);
  /external/skqp/src/gpu/effects/
GrMagnifierEffect.cpp 180 SkScalar inset = d->fRandom->nextRangeScalar(1.0f, kMaxInset); local
190 bounds.width() / inset,
191 bounds.height() / inset);
  /test/vti/test_serving/gae/webapp/static/bootstrap/css/
bootstrap.css 1134 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1135 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1136 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1164 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
1165 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
1166 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
1224 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
1225 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
1226 box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
1475 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
    [all...]

Completed in 1523 milliseconds

1 23 4 5 6 7 8 91011>>