HomeSort by relevance Sort by last modified time
    Searched full:outset (Results 1 - 25 of 148) sorted by null

1 2 3 4 5 6

  /frameworks/base/core/java/com/android/internal/util/
ScreenShapeHelper.java 13 * Return the bottom pixel window outset of a window given its style attributes.
14 * @return An outset dimension in pixels or 0 if no outset should be applied.
  /external/proguard/docs/manual/
style.css 68 border: 1px outset #FFFFFF;
79 border: 1px outset #FFFFFF;
137 border: 1px outset #FFFFFF;
  /external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/test/blink/interpolation/
border-image-outset-interpolation.html 25 property: 'border-image-outset',
29 {at: -0.3, is: '0px'}, // CSS border-image-outset can't be negative.
45 property: 'border-image-outset',
49 {at: -0.3, is: '0'}, // CSS border-image-outset can't be negative.
  /cts/tools/tradefed-host/res/report/
cts_result.css 66 border: 1px outset gray;
71 border: 1px outset #A5C639;
92 border-style: outset;
100 border-style: outset;
139 border-style: outset;
149 border-style: outset;
160 border-style: outset;
171 border-style: outset;
  /prebuilts/tools/common/proguard/proguard4.7/docs/manual/
style.css 51 border: 1px outset #FFFFFF;
103 border: 1px outset #FFFFFF;
  /external/chromium-trace/catapult/third_party/Paste/docs/
default.css 70 border: medium outset;
125 border: medium outset;
332 border-top: 2px outset #666;
333 border-left: 2px outset #666;
334 border-right: 2px outset #666;
339 border: outset 5px #666;
388 border-top: 2px outset #999;
389 border-left: 2px outset #999;
390 border-right: 2px outset #999;
  /external/chromium-trace/catapult/third_party/Paste/docs/web/
default-site.css 57 border: medium outset;
112 border: medium outset;
320 border-top: 2px outset #666;
321 border-left: 2px outset #666;
322 border-right: 2px outset #666;
327 border: outset 5px #666;
376 border-top: 2px outset #999;
377 border-left: 2px outset #999;
378 border-right: 2px outset #999;
  /cts/common/host-side/tradefed/res/report/
compatibility_result.css 66 border: 1px outset gray;
71 border: 1px outset #A5C639;
92 border-style: outset;
100 border-style: outset;
139 border-style: outset;
149 border-style: outset;
  /external/skia/gm/
imagefilters.cpp 94 // we outset the clip by 1, to fall out of the fast-case in drawImage
96 for (SkScalar outset = 0; outset <= 1; ++outset) {
98 canvas->clipRect(r.makeOutset(outset, outset));
imagefilterscropexpand.cpp 75 for (int outset = -15; outset <= 20; outset += 5) {
78 rect.outset(SkIntToScalar(outset),
79 SkIntToScalar(outset));
colorfilterimagefilter.cpp 112 float outset = 0.0f) {
115 clip.outset(outset, outset);
blurquickreject.cpp 14 // four blurred rects around a central clip. The blurred rect geometry outset
  /external/skia/tests/
ClipBoundsTest.cpp 37 clipRect.outset(10, 10);
RecordDrawTest.cpp 127 SkRect inset(a), outset(a);
129 outset.outset(1, 1);
130 return outset.contains(b) && !inset.contains(b);
  /external/proguard/docs/
style.css 74 border: 1px outset #FFFFFF;
85 border: 1px outset #FFFFFF;
  /external/skia/bench/
RectoriBench.cpp 41 // outer is always outset either 2x or 4x the blur radius (we go with 2x)
42 outer.outset(2*blurSigma, 2*blurSigma);
  /external/skia/samplecode/
SampleManyRects.cpp 61 clipRect.outset(10, 10);
SampleMegaStroke.cpp 75 divSim.outset(30, 30);
  /packages/apps/Launcher3/src/com/android/launcher3/
PendingAppWidgetHostView.java 211 int outset = (mCenterDrawable instanceof PreloadIconDrawable) ? local
213 int maxSize = grid.iconSizePx + 2 * outset;
217 mRect.inset(outset, outset);
  /external/autotest/frontend/client/src/autotest/public/
standard.css 97 border: 1px outset #ccc;
102 border: 1px outset;
108 border: 1px outset #ccc;
  /external/skia/src/gpu/batches/
GrAAConvexTessellator.cpp 432 void GrAAConvexTessellator::createOuterRing(const Ring& previousRing, SkScalar outset,
442 const SkScalar outsetSq = SkScalarMul(outset, outset);
443 SkScalar miterLimitSq = SkScalarMul(outset, fMiterLimit);
448 // outset polygon - one extending perpendicular to each impinging edge. Connecting these
455 perp1.scale(outset);
461 perp2.scale(outset);
468 int perp1Idx = this->addPt(perp1, -outset, coverage, false, isCurve);
476 perp2Idx = this->addPt(perp2, -outset, coverage, false, isCurve);
489 miter.setLength(-outset);
    [all...]
  /external/v8/src/regexp/
jsregexp.h 232 class OutSet: public ZoneObject {
234 OutSet() : first_(0), remaining_(NULL), successors_(NULL) { }
235 OutSet* Extend(unsigned value, Zone* zone);
248 ZoneList<OutSet*>* successors(Zone* zone) { return successors_; }
250 OutSet(uint32_t first, ZoneList<unsigned>* remaining)
254 ZoneList<OutSet*>* successors_;
268 Entry(uc16 from, uc16 to, OutSet* out_set)
276 OutSet* out_set() { return out_set_; }
280 OutSet* out_set_;
300 OutSet* Get(uc16 value)
    [all...]
  /frameworks/base/libs/hwui/
TessellationCache.cpp 444 float outset = description.strokeWidth / 2; local
445 rect.outset(outset, outset);
446 rx += outset;
447 ry += outset;
Rect.h 192 outset(-delta);
195 void outset(float delta) { function in class:android::uirenderer::Rect
202 void outset(float xdelta, float ydelta) { function in class:android::uirenderer::Rect
232 /* For other geometry, we do the regular rounding in order to snap, but also outset the
  /external/shflags/doc/
rst2html.css 59 border: medium outset ;
113 border: medium outset ;
131 border: medium outset ;

Completed in 428 milliseconds

1 2 3 4 5 6