Searched defs:blur (Results 1 - 25 of 25) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSShadowValue.h37 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> blur,
42 return adoptRefWillBeNoop(new CSSShadowValue(x, y, blur, spread, style, color));
51 RefPtrWillBeMember<CSSPrimitiveValue> blur; member in class:blink::CSSShadowValue
61 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> blur,
35 create(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> x, PassRefPtrWillBeRawPtr<CSSPrimitiveValue> y, PassRefPtrWillBeRawPtr<CSSPrimitiveValue> blur, PassRefPtrWillBeRawPtr<CSSPrimitiveValue> spread, PassRefPtrWillBeRawPtr<CSSPrimitiveValue> style, PassRefPtrWillBeRawPtr<CSSPrimitiveValue> color) argument
H A DCSSShadowValue.cpp32 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> blur,
39 , blur(blur)
62 if (blur) {
65 text.append(blur->cssText());
86 && compareCSSValuePtr(blur, other.blur)
95 visitor->trace(blur);
30 CSSShadowValue(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> x, PassRefPtrWillBeRawPtr<CSSPrimitiveValue> y, PassRefPtrWillBeRawPtr<CSSPrimitiveValue> blur, PassRefPtrWillBeRawPtr<CSSPrimitiveValue> spread, PassRefPtrWillBeRawPtr<CSSPrimitiveValue> style, PassRefPtrWillBeRawPtr<CSSPrimitiveValue> color) argument
H A DCSSComputedStyleDeclaration.cpp1219 RefPtrWillBeRawPtr<CSSPrimitiveValue> blur = zoomAdjustedPixelValue(shadow.blur(), style); local
1223 return CSSShadowValue::create(x.release(), y.release(), blur.release(), spread.release(), shadowStyle.release(), color.release());
/external/chromium_org/ui/gfx/
H A Dshadow_value.h23 // shadow's offset, blur amount and color.
27 ShadowValue(const gfx::Point& offset, double blur, SkColor color);
33 double blur() const { return blur_; } function in class:gfx::ShadowValue
51 // perpendicular to and centered on the shadow edge. For example, a blur
H A Dshadow_value.cc21 double blur,
24 blur_(blur),
59 int blur = static_cast<int>(shadow.blur() / 2 + 0.5); local
61 left = std::max(left, blur - shadow.x());
62 top = std::max(top, blur - shadow.y());
63 right = std::max(right, blur + shadow.x());
64 bottom = std::max(bottom, blur + shadow.y());
20 ShadowValue(const gfx::Point& offset, double blur, SkColor color) argument
/external/proguard/src/proguard/gui/splash/
H A DShadowedSprite.java35 private final VariableInt blur; field in class:ShadowedSprite
47 * @param blur the variable blur of the shadow (0 for sharp shadows, 1 or
54 VariableInt blur,
60 this.blur = blur;
70 int b = blur.getInt(time) + 1;
51 ShadowedSprite(VariableInt xOffset, VariableInt yOffset, VariableDouble alpha, VariableInt blur, Sprite sprite) argument
/external/chromium_org/ui/views/
H A Dshadow_border.cc16 ShadowBorder::ShadowBorder(int blur, argument
21 blur_(blur),
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DFilterOperationResolver.cpp189 int blur = item->blur ? item->blur->computeLength<int>(conversionData) : 0; local
194 operations.operations().append(DropShadowFilterOperation::create(location, blur, shadowColor));
H A DStyleBuilderConverter.cpp549 float blur = item->blur ? item->blur->computeLength<float>(state.cssToLengthConversionData()) : 0; local
557 shadows.append(ShadowData(FloatPoint(x, y), blur, spread, shadowStyle, color));
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DShadowData.h39 ShadowData(const FloatPoint& location, float blur, float spread, ShadowStyle style, const Color& color) argument
41 , m_blur(blur)
56 float blur() const { return m_blur; } function in class:blink::ShadowData
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DDrawLooperBuilder.cpp66 // This replicates the old skia behavior when it used to take radius for blur. Now it takes sigma.
73 void DrawLooperBuilder::addShadow(const FloatSize& offset, float blur, const Color& color, argument
95 if (blur)
96 info.fPaintBits |= SkLayerDrawLooper::kMaskFilter_Bit; // our blur
103 if (blur) {
104 const SkScalar sigma = RadiusToSigma(blur / 2);
H A DGraphicsContext.cpp299 void GraphicsContext::setShadow(const FloatSize& offset, float blur, const Color& color, argument
306 if (!color.alpha() || (!offset.width() && !offset.height() && !blur)) {
312 drawLooperBuilder->addShadow(offset, blur, color, shadowTransformMode, shadowAlphaMode);
/external/chromium_org/cc/trees/
H A Dlayer_tree_host_pixeltest_filters.cc23 // The green box is entirely behind a layer with background blur, so it
27 scoped_refptr<SolidColorLayer> blur = CreateSolidColorLayer( local
30 background->AddChild(blur);
34 blur->SetBackgroundFilters(filters);
61 // The green border is outside the layer with background blur, but the
62 // background blur should use pixels from outside its layer borders, up to the
63 // radius of the blur effect. So the border should be blurred underneath the
68 scoped_refptr<SolidColorLayer> blur = CreateSolidColorLayer( local
71 background->AddChild(blur);
75 blur
108 scoped_refptr<SolidColorLayer> blur = CreateSolidColorLayerWithBorder( local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DInputTypeView.cpp110 void InputTypeView::blur() function in class:blink::InputTypeView
H A DBaseMultipleFieldsDateAndTimeInputType.cpp157 // We don't need to call blur(). This function is called when control
321 void BaseMultipleFieldsDateAndTimeInputType::blur() function in class:blink::BaseMultipleFieldsDateAndTimeInputType
385 // deleting the field. This prevents unnecessary focusout/blur events.
/external/chromium_org/ui/file_manager/gallery/js/image_editor/
H A Dfilter.js483 * Return a blur filter.
487 filter.blur = function(options) {
/external/chromium_org/third_party/skia/src/effects/
H A DSkBlurMask.cpp18 // IMHO, it actually should be 1: we blur "less" than we should do
22 // all the blur tests.
36 * This function performs a box blur in X, of the given radius. If the
229 * This variant of the box blur handles blurring of non-integer radii. It
421 const uint8_t blur[], int blurRB,
428 *dst = SkToU8(SkAlphaMul(*blur, SkAlpha255To256(*src)));
431 blur += 1;
435 blur += blurRB;
465 SkDEBUGFAIL("Unexpected blur style here");
497 // For the high quality path the 3 pass box blur kerne
419 merge_src_with_blur(uint8_t dst[], int dstRB, const uint8_t src[], int srcRB, const uint8_t blur[], int blurRB, int sw, int sh) argument
[all...]
/external/skia/src/effects/
H A DSkBlurMask.cpp18 // IMHO, it actually should be 1: we blur "less" than we should do
22 // all the blur tests.
36 * This function performs a box blur in X, of the given radius. If the
229 * This variant of the box blur handles blurring of non-integer radii. It
421 const uint8_t blur[], int blurRB,
428 *dst = SkToU8(SkAlphaMul(*blur, SkAlpha255To256(*src)));
431 blur += 1;
435 blur += blurRB;
465 SkDEBUGFAIL("Unexpected blur style here");
497 // For the high quality path the 3 pass box blur kerne
419 merge_src_with_blur(uint8_t dst[], int dstRB, const uint8_t src[], int srcRB, const uint8_t blur[], int blurRB, int sw, int sh) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DLocalDOMWindow.cpp943 void LocalDOMWindow::blur() function in class:blink::LocalDOMWindow
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLInputElement.cpp308 void HTMLInputElement::blur() function in class:blink::HTMLInputElement
310 m_inputTypeView->blur();
315 HTMLTextFormControlElement::blur();
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DCanvasRenderingContext2D.cpp591 void CanvasRenderingContext2D::setShadowBlur(float blur) argument
593 if (!(std::isfinite(blur) && blur >= 0))
595 if (state().m_shadowBlur == blur)
598 modifiableState().m_shadowBlur = blur;
1354 void CanvasRenderingContext2D::setShadow(float width, float height, float blur) argument
1356 setShadow(FloatSize(width, height), blur, Color::transparent); local
1359 void CanvasRenderingContext2D::setShadow(float width, float height, float blur, const String& color) argument
1364 setShadow(FloatSize(width, height), blur, rgba);
1367 void CanvasRenderingContext2D::setShadow(float width, float height, float blur, floa argument
1369 setShadow(FloatSize(width, height), blur, makeRGBA32FromFloats(grayLevel, grayLevel, grayLevel, 1)); local
1372 setShadow(float width, float height, float blur, const String& color, float alpha) argument
1380 setShadow(float width, float height, float blur, float grayLevel, float alpha) argument
1382 setShadow(FloatSize(width, height), blur, makeRGBA32FromFloats(grayLevel, grayLevel, grayLevel, alpha)); local
1385 setShadow(float width, float height, float blur, float r, float g, float b, float a) argument
1387 setShadow(FloatSize(width, height), blur, makeRGBA32FromFloats(r, g, b, a)); local
1390 setShadow(float width, float height, float blur, float c, float m, float y, float k, float a) argument
1392 setShadow(FloatSize(width, height), blur, makeRGBAFromCMYKA(c, m, y, k, a)); local
1400 setShadow(const FloatSize& offset, float blur, RGBA32 color) argument
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
H A Dmootools-1.2.2-core-nc.js2087 focus: 2, blur: 2, change: 2, reset: 2, select: 2, submit: 2, //form elements
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DCSSPropertyParser.cpp5339 if (x || y || blur || spread || color || style) {
5344 values->append(CSSShadowValue::create(x.release(), y.release(), blur.release(), spread.release(), style.release(), color.release()));
5350 blur = nullptr;
5383 blur = val.release();
5425 RefPtrWillBeMember<CSSPrimitiveValue> blur; member in class:blink::ShadowParseContext
7112 else if (equalIgnoringCase(name, "blur"))
7116 maximumArgumentCount = 4; // x-offset, y-offset, blur-radius, color -- spread and inset style not allowed.
/external/proguard/lib/
H A Dproguardgui.jarMETA-INF/ META-INF/MANIFEST.MF proguard/gui/OptimizationsDialog$3.class OptimizationsDialog.java ...
/external/jdiff/
H A Dxerces.jar ... public void setType (java.lang.String) public void blur () public void focus () public void " href="/5.1.0 ...

Completed in 1347 milliseconds