HomeSort by relevance Sort by last modified time
    Searched defs:blur (Results 1 - 19 of 19) sorted by null

  /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,
CSSComputedStyleDeclaration.cpp 1219 RefPtrWillBeRawPtr<CSSPrimitiveValue> blur = zoomAdjustedPixelValue(shadow.blur(), style); local
    [all...]
  /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/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
  /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/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));
StyleBuilderConverter.cpp 549 float blur = item->blur ? item->blur->computeLength<float>(state.cssToLengthConversionData()) : 0; local
557 shadows.append(ShadowData(FloatPoint(x, y), blur, spread, shadowStyle, color));
  /cts/tests/tests/rscpp/librscpptest/
rs_jni.cpp 94 sp<ScriptIntrinsicBlur> blur = ScriptIntrinsicBlur::create(rs, e); local
98 blur->setRadius(15);
99 blur->setInput(inputAlloc);
100 blur->forEach(outputAlloc);
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
InputTypeView.cpp 110 void InputTypeView::blur() function in class:blink::InputTypeView
BaseMultipleFieldsDateAndTimeInputType.cpp 157 // 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/
filter.js 483 * Return a blur filter.
484 * @param {Object} options Blur options.
485 * @return {function(ImageData,ImageData,number,number)} Blur filter.
487 filter.blur = function(options) {
  /external/chromium_org/third_party/WebKit/Source/core/frame/
LocalDOMWindow.cpp 943 void LocalDOMWindow::blur() function in class:blink::LocalDOMWindow
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLInputElement.cpp 308 void HTMLInputElement::blur() function in class:blink::HTMLInputElement
310 m_inputTypeView->blur();
315 HTMLTextFormControlElement::blur();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasRenderingContext2D.cpp 591 void CanvasRenderingContext2D::setShadowBlur(float blur)
593 if (!(std::isfinite(blur) && blur >= 0))
595 if (state().m_shadowBlur == blur)
598 modifiableState().m_shadowBlur = blur;
1356 setShadow(FloatSize(width, height), blur, Color::transparent); local
1369 setShadow(FloatSize(width, height), blur, makeRGBA32FromFloats(grayLevel, grayLevel, grayLevel, 1)); local
1382 setShadow(FloatSize(width, height), blur, makeRGBA32FromFloats(grayLevel, grayLevel, grayLevel, alpha)); local
1387 setShadow(FloatSize(width, height), blur, makeRGBA32FromFloats(r, g, b, a)); local
1392 setShadow(FloatSize(width, height), blur, makeRGBAFromCMYKA(c, m, y, k, a)); local
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
mootools-1.2.2-core-nc.js     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
CSSPropertyParser.cpp 5425 RefPtrWillBeMember<CSSPrimitiveValue> blur; member in class:blink::ShadowParseContext
    [all...]
  /external/jdiff/
xerces.jar 

Completed in 625 milliseconds