HomeSort by relevance Sort by last modified time
    Searched refs:blur (Results 1 - 25 of 127) sorted by null

1 2 3 4 5 6

  /external/chromium_org/ui/gfx/
shadow_value.cc 21 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());
shadow_value.h 23 // 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
47 // Blur amount of the shadow in pixels. If underlying implementation supports
51 // perpendicular to and centered on the shadow edge. For example, a blur
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSShadowValue.h 37 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,
CSSShadowValue.cpp 32 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> blur,
39 , blur(blur)
62 if (blur) {
65 text.append(blur->cssText());
86 && compareCSSValuePtr(blur, other.blur)
95 visitor->trace(blur);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
ShadowData.h 39 ShadowData(const FloatPoint& location, float blur, float spread, ShadowStyle style, const Color& color)
41 , m_blur(blur)
56 float blur() const { return m_blur; } function in class:blink::ShadowData
ShadowData.cpp 44 clampTo(blink::blend(from.blur(), blur(), progress), 0.0f),
ShadowList.cpp 47 float blurAndSpread = shadow.blur() + shadow.spread();
108 drawLooperBuilder->addShadow(FloatSize(shadowX, shadowY), shadow.blur(), shadow.color(),
  /cts/tests/tests/rscpp/src/android/cts/rscpp/
RSBlurTest.java 49 ScriptIntrinsicBlur blur = ScriptIntrinsicBlur.create(mRS, Element.A_8(mRS)); local
50 blur.setInput(rsInput);
51 blur.setRadius(15);
52 blur.forEach(rsOutput);
78 ScriptIntrinsicBlur blur = ScriptIntrinsicBlur.create(mRS, Element.RGBA_8888(mRS)); local
79 blur.setInput(rsInput);
80 blur.setRadius(15);
81 blur.forEach(rsOutput);
  /external/chromium_org/cc/trees/
layer_tree_host_pixeltest_filters.cc 23 // 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->SetBackgroundFilters(filters)
108 scoped_refptr<SolidColorLayer> blur = CreateSolidColorLayerWithBorder( local
    [all...]
  /external/chromium_org/third_party/skia/bench/
ImageFilterDAGBench.cpp 15 // Exercise a blur filter connected to 5 inputs of the same merge filter.
30 SkAutoTUnref<SkImageFilter> blur(SkBlurImageFilter::Create(20.0f, 20.0f));
33 inputs[i] = blur.get();
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
DrawLooperBuilder.cpp 66 // 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,
95 if (blur)
96 info.fPaintBits |= SkLayerDrawLooper::kMaskFilter_Bit; // our blur
103 if (blur) {
104 const SkScalar sigma = RadiusToSigma(blur / 2);
DrawLooperBuilder.h 72 void addShadow(const FloatSize& offset, float blur, const Color&,
  /external/chromium_org/ui/views/
shadow_border.h 17 ShadowBorder(int blur,
30 // Blur amount of the shadow in pixels. For details on how blur is defined see
shadow_border.cc 16 ShadowBorder::ShadowBorder(int blur,
21 blur_(blur),
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLBodyElement.h 40 DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(blur);
HTMLFrameSetElement.h 52 DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(blur);
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasRenderingContext2D.h 174 void setShadow(float width, float height, float blur);
175 void setShadow(float width, float height, float blur, const String& color);
176 void setShadow(float width, float height, float blur, float grayLevel);
177 void setShadow(float width, float height, float blur, const String& color, float alpha);
178 void setShadow(float width, float height, float blur, float grayLevel, float alpha);
179 void setShadow(float width, float height, float blur, float r, float g, float b, float a);
180 void setShadow(float width, float height, float blur, float c, float m, float y, float k, float a);
307 void setShadow(const FloatSize& offset, float blur, RGBA32 color);
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
FilterOperationResolver.cpp 63 return FilterOperation::BLUR;
189 int blur = item->blur ? item->blur->computeLength<int>(conversionData) : 0; local
194 operations.operations().append(DropShadowFilterOperation::create(location, blur, shadowColor));
  /external/chromium_org/third_party/WebKit/Source/core/dom/
GlobalEventHandlers.h 41 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(blur);
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
InputTypeView.h 100 virtual void blur();
  /external/chromium_org/third_party/skia/gm/
imagefiltersgraph.cpp 150 SkAutoTUnref<SkImageFilter> blur(SkBlurImageFilter::Create(4.0f, 4.0f, bitmapSource));
151 SkAutoTUnref<SkImageFilter> erode(SkErodeImageFilter::Create(4, 4, blur));
153 SkAutoTUnref<SkImageFilter> merge(SkMergeImageFilter::Create(blur, color));
198 SkAutoTUnref<SkImageFilter> blur(SkBlurImageFilter::Create(
204 SkXfermodeImageFilter::Create(mode, blur, NULL, &cropRect));
colorfilterimagefilter.cpp 117 SkAutoTUnref<SkImageFilter> blur(make_blur(3.0f));
118 SkAutoTUnref<SkImageFilter> brightness(make_brightness(0.5f, blur));
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
focuser.js 26 // Save the selection because Chrome will lose it if there's a focus or blur.
32 // Blur the currently-focused element if the target node is not a descendant.
35 document.activeElement.blur();
57 // If we found something focusable, focus it - otherwise, blur it.
85 document.activeElement.blur();
media_widget.js 35 this.mediaElem_.addEventListener('blur', this.blurListener_, false);
42 this.mediaElem_.removeEventListener('blur', this.blurListener_, false);
  /external/chromium_org/third_party/WebKit/Source/core/animation/
DeferredLegacyStyleInterpolation.cpp 118 || (shadowValue.blur && interpolationRequiresStyleResolve(*shadowValue.blur))

Completed in 409 milliseconds

1 2 3 4 5 6