Searched defs:inset (Results 1 - 25 of 44) sorted by path

12

/external/chromium_org/ash/shelf/
H A Dshelf_layout_manager.cc743 void ShelfLayoutManager::AdjustBoundsBasedOnAlignment(int inset, argument
746 gfx::Insets(0, 0, inset, 0),
747 gfx::Insets(0, inset, 0, 0),
748 gfx::Insets(0, 0, 0, inset),
749 gfx::Insets(inset, 0, 0, 0)));
827 // Also push in the work area inset for the keyboard if it is visible.
832 // Also push in the work area inset for the dock if it is visible.
/external/chromium_org/cc/blink/
H A Dweb_filter_operations_impl.cc75 void WebFilterOperationsImpl::appendZoomFilter(float amount, int inset) { argument
77 cc::FilterOperation::CreateZoomFilter(amount, inset));
/external/chromium_org/cc/output/
H A Dfilter_operation.cc73 FilterOperation::FilterOperation(FilterType type, float amount, int inset) argument
79 zoom_inset_(inset) {
289 value->SetDouble("inset", zoom_inset_);
H A Dfilter_operation.h141 static FilterOperation CreateZoomFilter(float amount, int inset) { argument
142 return FilterOperation(ZOOM, amount, inset);
206 void set_zoom_inset(int inset) { argument
208 zoom_inset_ = inset;
238 FilterOperation(FilterType type, float amount, int inset);
H A Drenderer_pixeltest.cc2037 float inset = -1.f / contents_scale; local
2038 blue_layer_rect1.Inset(inset, inset, inset, inset);
2039 blue_layer_rect2.Inset(inset, inset, inset, inset);
/external/chromium_org/chrome/browser/chromeos/ui/
H A Daccessibility_focus_ring_layer.cc99 int inset = kGradientWidth; local
100 bounds.Inset(-inset, -inset, -inset, -inset);
H A Dfocus_ring_layer.cc37 int inset = -(kShadowRadius + 2); local
38 layer_bounds.Inset(inset, inset, inset, inset);
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DBasicShapeFunctions.cpp108 const BasicShapeInset* inset = toBasicShapeInset(basicShape); local
111 insetValue->setTop(pool.createValue(inset->top(), style));
112 insetValue->setRight(pool.createValue(inset->right(), style));
113 insetValue->setBottom(pool.createValue(inset->bottom(), style));
114 insetValue->setLeft(pool.createValue(inset->left(), style));
116 insetValue->setTopLeftRadius(CSSPrimitiveValue::create(inset->topLeftRadius(), style));
117 insetValue->setTopRightRadius(CSSPrimitiveValue::create(inset->topRightRadius(), style));
118 insetValue->setBottomRightRadius(CSSPrimitiveValue::create(inset->bottomRightRadius(), style));
119 insetValue->setBottomLeftRadius(CSSPrimitiveValue::create(inset->bottomLeftRadius(), style));
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderRubyBase.cpp143 float inset = (logicalWidth - maxPreferredLogicalWidth) / (expansionOpportunityCount + 1); local
145 logicalLeft += inset / 2;
146 logicalWidth -= inset;
H A DRenderRubyText.cpp76 float inset = (logicalWidth - maxPreferredLogicalWidth) / (expansionOpportunityCount + 1); local
78 inset = std::min<float>(2 * style()->fontSize(), inset);
80 logicalLeft += inset / 2;
81 logicalWidth -= inset;
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
H A DShape.cpp147 const BasicShapeInset& inset = *toBasicShapeInset(basicShape); local
148 float left = floatValueForLength(inset.left(), boxWidth);
149 float top = floatValueForLength(inset.top(), boxHeight);
150 float right = floatValueForLength(inset.right(), boxWidth);
151 float bottom = floatValueForLength(inset.bottom(), boxHeight);
156 FloatSize topLeftRadius = physicalSizeToLogical(floatSizeForLengthSize(inset.topLeftRadius(), boxSize), writingMode);
157 FloatSize topRightRadius = physicalSizeToLogical(floatSizeForLengthSize(inset.topRightRadius(), boxSize), writingMode);
158 FloatSize bottomLeftRadius = physicalSizeToLogical(floatSizeForLengthSize(inset.bottomLeftRadius(), boxSize), writingMode);
159 FloatSize bottomRightRadius = physicalSizeToLogical(floatSizeForLengthSize(inset.bottomRightRadius(), boxSize), writingMode);
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/chromium_org/third_party/skia/gm/
H A Dpathinterior.cpp15 static SkRect inset(const SkRect& r) { function
17 rect.inset(r.width() / 8, r.height() / 8);
78 SkRect r = insetFirst ? inset(rect) : rect;
84 r = insetFirst ? rect : inset(rect);
H A Dstrokes.cpp148 static SkRect inset(const SkRect& r) { function
150 rr.inset(r.width()/10, r.height()/10);
157 path->addRect(inset(bounds), SkPath::kCW_Direction);
163 path->addRect(inset(bounds), SkPath::kCCW_Direction);
169 path->addOval(inset(bounds), SkPath::kCW_Direction);
175 path->addOval(inset(bounds), SkPath::kCCW_Direction);
182 r.inset(bounds.width() / 10, -bounds.height() / 10);
190 r.inset(bounds.width() / 10, -bounds.height() / 10);
/external/chromium_org/third_party/skia/include/core/
H A DSkRRect.h217 * Call inset on the bounds, and adjust the radii to reflect what happens
219 * otherwise we grow/shrink the radii by the amount of the inset. If a
224 void inset(SkScalar dx, SkScalar dy, SkRRect* dst) const;
226 void inset(SkScalar dx, SkScalar dy) { function in class:SkRRect
227 this->inset(dx, dy, this);
233 * otherwise we grow/shrink the radii by the amount of the inset. If a
239 this->inset(-dx, -dy, dst);
242 this->inset(-dx, -dy, this);
H A DSkRect.h168 * Return a new IRect, built as an inset of this rect.
202 void inset(int32_t dx, int32_t dy) { function in struct:SkIRect
214 void outset(int32_t dx, int32_t dy) { this->inset(-dx, -dy); }
600 * Return a new Rect, built as an inset of this rect.
635 void inset(SkScalar dx, SkScalar dy) {
647 void outset(SkScalar dx, SkScalar dy) { this->inset(-dx, -dy); }
/external/chromium_org/third_party/skia/samplecode/
H A DSampleApp.cpp1032 SkScalar inset = SkIntToScalar(-2); local
1033 bounds.inset(inset, inset);
H A DSampleHairline.cpp213 const SkIRect& inset) {
212 show_bitmaps(SkCanvas* canvas, const SkBitmap& b0, const SkBitmap& b1, const SkIRect& inset) argument
/external/chromium_org/third_party/skia/src/core/
H A DSkCanvas.cpp1629 const int inset = 1; local
1631 r.iset(ibounds.fLeft - inset, ibounds.fTop - inset,
1632 ibounds.fRight + inset, ibounds.fBottom + inset);
/external/chromium_org/third_party/skia/src/effects/
H A DSkMagnifierImageFilter.cpp199 uint32_t inset = random->nextULessThan(kMaxInset); local
207 (float) inset / texture->width(),
208 (float) inset / texture->height());
238 SkImageFilter* SkMagnifierImageFilter::Create(const SkRect& srcRect, SkScalar inset, argument
241 if (!SkScalarIsFinite(inset) || !SkIsValidRect(srcRect)) {
248 return SkNEW_ARGS(SkMagnifierImageFilter, (srcRect, inset, input));
268 SkMagnifierImageFilter::SkMagnifierImageFilter(const SkRect& srcRect, SkScalar inset, argument
270 : INHERITED(1, &input), fSrcRect(srcRect), fInset(inset) {
271 SkASSERT(srcRect.x() >= 0 && srcRect.y() >= 0 && inset >= 0);
346 // a square twice the size of the inset
[all...]
/external/chromium_org/third_party/skia/src/gpu/
H A DGrAARectRenderer.cpp507 SkScalar inset = SkMinScalar(devRect.width(), SK_Scalar1); local
508 inset = SK_ScalarHalf * SkMinScalar(inset, devRect.height());
520 set_inset_fan(fan1Pos, vstride, devRect, inset, inset);
538 // Now create the inset points and then outset the original
571 if (inset < SK_ScalarHalf) {
572 scale = SkScalarFloorToInt(512.0f * inset / (inset + SK_ScalarHalf));
805 devInside.inset(r
864 SkScalar inset = SkMinScalar(SK_Scalar1, devOutside.fRight - devInside.fRight); local
874 SkScalar inset = SK_ScalarHalf; local
[all...]
/external/chromium_org/third_party/skia/tests/
H A DPaintTest.cpp223 SkScalar inset = paint.getStrokeJoin() == SkPaint::kMiter_Join ? local
226 maxR.inset(-inset, -inset);
/external/chromium_org/third_party/skia/tools/lua/
H A Dskia.lua82 function Sk.Rect:inset(dx, dy)
/external/chromium_org/ui/compositor/
H A Dlayer.cc347 void Layer::SetBackgroundZoom(float zoom, int inset) { argument
349 zoom_inset_ = inset;

Completed in 5780 milliseconds

12