/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSShadowValue.h | 37 PassRefPtr<CSSPrimitiveValue> blur, 42 return adoptRef(new CSSShadowValue(x, y, blur, spread, style, color)); 51 RefPtr<CSSPrimitiveValue> blur; member in class:WebCore::CSSShadowValue 59 PassRefPtr<CSSPrimitiveValue> blur,
|
CSSComputedStyleDeclaration.cpp | 1311 RefPtr<CSSPrimitiveValue> blur = zoomAdjustedPixelValue(shadow.blur(), style); local [all...] |
/cts/tests/tests/rscpp/src/android/cts/rscpp/ |
RSBlurTest.java | 52 ScriptIntrinsicBlur blur = ScriptIntrinsicBlur.create(mRS, Element.A_8(mRS)); local 53 blur.setInput(rsInput); 54 blur.setRadius(15); 55 blur.forEach(rsOutput); 83 ScriptIntrinsicBlur blur = ScriptIntrinsicBlur.create(mRS, Element.RGBA_8888(mRS)); local 84 blur.setInput(rsInput); 85 blur.setRadius(15); 86 blur.forEach(rsOutput);
|
/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
|
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/ |
Artistic1.java | 33 ScriptIntrinsicBlur blur = ScriptIntrinsicBlur.create(mRS, Element.U8_4(mRS)); local 34 blur.setRadius(20); 35 blur.setInput(mInPixelsAllocation); 36 blur.forEach(mBlured);
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
ShadowData.h | 39 ShadowData(const IntPoint& location, int blur, int spread, ShadowStyle style, const Color& color) 41 , m_blur(blur) 56 int blur() const { return m_blur; } function in class:WebCore::ShadowData
|
/cts/tests/tests/rscpp/librscpptest/ |
rs_jni.cpp | 67 sp<ScriptIntrinsicBlur> blur = ScriptIntrinsicBlur::create(rs, e); local 71 blur->setRadius(15); 72 blur->setInput(inputAlloc); 73 blur->forEach(outputAlloc);
|
/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/proguard/src/proguard/gui/splash/ |
ShadowedSprite.java | 35 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;
|
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/ |
ScriptIntrinsicBlurThunker.java | 39 ScriptIntrinsicBlurThunker blur = new ScriptIntrinsicBlurThunker(0, rs); local 41 blur.mN = android.renderscript.ScriptIntrinsicBlur.create(rst.mN, et.getNObj()); 45 return blur;
|
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
StyleBuilderConverter.cpp | 143 int blur = item->blur ? item->blur->computeLength<int>(state.cssToLengthConversionData()) : 0; local 154 shadows.append(ShadowData(IntPoint(x, y), blur, spread, shadowStyle, color));
|
FilterOperationResolver.cpp | 75 return FilterOperation::BLUR; 482 int blur = item->blur ? item->blur->computeLength<int>(conversionData) : 0; local 487 operations.operations().append(DropShadowFilterOperation::create(location, blur, shadowColor.isValid() ? shadowColor : Color::transparent));
|
/external/chromium_org/chrome/browser/resources/file_manager/foreground/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/html/forms/ |
InputTypeView.cpp | 105 void InputTypeView::blur() function in class:WebCore::InputTypeView
|
BaseMultipleFieldsDateAndTimeInputType.cpp | 156 // We don't need to call blur(). This function is called when control 303 void BaseMultipleFieldsDateAndTimeInputType::blur() function in class:WebCore::BaseMultipleFieldsDateAndTimeInputType 374 // deleting the field. This prevents unnecessary focusout/blur events.
|
/external/chromium_org/chrome_frame/ |
html_window_impl.h | 301 STDMETHOD(blur)() { function in class:HTMLWindowImpl
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGElementInstance.h | 101 DECLARE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(correspondingElement(), blur); member in class:WebCore::SVGElementInstance
|
/external/chromium_org/third_party/WebKit/Source/core/frame/ |
DOMWindow.cpp | 959 void DOMWindow::blur() function in class:WebCore::DOMWindow [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLInputElement.cpp | 314 void HTMLInputElement::blur() function in class:WebCore::HTMLInputElement 316 m_inputTypeView->blur(); 321 HTMLTextFormControlElement::blur(); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/ |
CanvasRenderingContext2D.cpp | 443 void CanvasRenderingContext2D::setShadowBlur(float blur) 445 if (!(std::isfinite(blur) && blur >= 0)) 447 if (state().m_shadowBlur == blur) 450 modifiableState().m_shadowBlur = blur; 1127 setShadow(FloatSize(width, height), blur, Color::transparent); local 1140 setShadow(FloatSize(width, height), blur, makeRGBA32FromFloats(grayLevel, grayLevel, grayLevel, 1)); local 1153 setShadow(FloatSize(width, height), blur, makeRGBA32FromFloats(grayLevel, grayLevel, grayLevel, alpha)); local 1158 setShadow(FloatSize(width, height), blur, makeRGBA32FromFloats(r, g, b, a)); local 1163 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...] |
/prebuilts/tools/common/m2/internal/xerces/xmlParserAPIs/2.6.2/ |
xmlParserAPIs-2.6.2.jar | |
/prebuilts/tools/common/m2/internal/xml-apis/xml-apis/1.0.b2/ |
xml-apis-1.0.b2.jar | |
/external/proguard/lib/ |
proguardgui.jar | |