HomeSort by relevance Sort by last modified time
    Searched refs:blur (Results 26 - 50 of 149) sorted by null

12 3 4 5 6

  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
InputTypeView.h 98 virtual void blur();
InputTypeView.cpp 110 void InputTypeView::blur() function in class:WebCore::InputTypeView
BaseMultipleFieldsDateAndTimeInputType.h 95 virtual void blur() OVERRIDE FINAL;
TextFieldInputType.cpp 229 if (element().renderer() && (event->isMouseEvent() || event->isDragEvent() || event->hasInterface(EventNames::WheelEvent) || event->type() == EventTypeNames::blur || event->type() == EventTypeNames::focus)) {
231 if (event->type() == EventTypeNames::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);
time_widget.js 69 this.timeElem_.addEventListener('blur', this.blurListener_, false);
78 this.timeElem_.removeEventListener('blur', this.blurListener_, false);
date_widget.js 104 this.dateElem_.addEventListener('blur', this.blurListener_, false);
113 this.dateElem_.removeEventListener('blur', this.blurListener_, false);
  /external/chromium_org/third_party/WebKit/Source/core/animation/interpolation/
DeferredLegacyStyleInterpolation.cpp 118 || (shadowValue.blur && interpolationRequiresStyleResolve(*shadowValue.blur))
  /external/chromium_org/third_party/skia/gm/
colorfilterimagefilter.cpp 117 SkAutoTUnref<SkImageFilter> blur(make_blur(3.0f));
118 SkAutoTUnref<SkImageFilter> brightness(make_brightness(0.5f, blur));
  /external/skia/gm/
colorfilterimagefilter.cpp 117 SkAutoTUnref<SkImageFilter> blur(make_blur(3.0f));
118 SkAutoTUnref<SkImageFilter> brightness(make_brightness(0.5f, blur));
  /external/chromium_org/chrome/test/chromedriver/js/
focus.js 8 // the target element. We do not want to blur an element unnecessarily,
29 prevActiveElement.blur();
  /frameworks/base/libs/hwui/
OpenGLRenderer.h 31 #include <utils/Blur.h>
310 SkDrawLooper::BlurShadowRec blur; local
311 if (paint && paint->getLooper() && paint->getLooper()->asABlurShadow(&blur)) {
313 textShadow->radius = Blur::convertSigmaToRadius(blur.fSigma);
314 textShadow->dx = blur.fOffset.fX;
315 textShadow->dy = blur.fOffset.fY;
316 textShadow->color = blur.fColor;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
ShadowList.cpp 46 float blurAndSpread = shadow.blur() + shadow.spread() + additionalOutlineSize;
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasRenderingContext2D.cpp 572 void CanvasRenderingContext2D::setShadowBlur(float blur)
574 if (!(std::isfinite(blur) && blur >= 0))
576 if (state().m_shadowBlur == blur)
579 modifiableState().m_shadowBlur = blur;
1337 setShadow(FloatSize(width, height), blur, Color::transparent); local
1350 setShadow(FloatSize(width, height), blur, makeRGBA32FromFloats(grayLevel, grayLevel, grayLevel, 1)); local
1363 setShadow(FloatSize(width, height), blur, makeRGBA32FromFloats(grayLevel, grayLevel, grayLevel, alpha)); local
1368 setShadow(FloatSize(width, height), blur, makeRGBA32FromFloats(r, g, b, a)); local
1373 setShadow(FloatSize(width, height), blur, makeRGBAFromCMYKA(c, m, y, k, a)); local
    [all...]
CanvasRenderingContext2D.idl 176 [MeasureAs=CanvasRenderingContext2DSetShadow] void setShadow(unrestricted float width, unrestricted float height, unrestricted float blur, optional DOMString color, optional unrestricted float alpha);
177 [MeasureAs=CanvasRenderingContext2DSetShadow] void setShadow(unrestricted float width, unrestricted float height, unrestricted float blur, unrestricted float grayLevel, optional unrestricted float alpha);
178 [MeasureAs=CanvasRenderingContext2DSetShadow] void setShadow(unrestricted float width, unrestricted float height, unrestricted float blur, unrestricted float r, unrestricted float g, unrestricted float b, unrestricted float a);
179 [MeasureAs=CanvasRenderingContext2DSetShadow] void setShadow(unrestricted float width, unrestricted float height, unrestricted float blur, unrestricted float c, unrestricted float m, unrestricted float y, unrestricted float k, unrestricted float a);
  /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/css/resolver/
StyleBuilderConverter.cpp 389 float blur = item->blur ? item->blur->computeLength<float>(state.cssToLengthConversionData()) : 0; local
397 shadows.append(ShadowData(FloatPoint(x, y), blur, spread, shadowStyle, color));
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
InplaceEditor.js 121 element.removeEventListener("blur", blurEventListener, isMultiline);
187 element.addEventListener("blur", blurEventListener, isMultiline);
  /external/chromium_org/third_party/mesa/src/include/VG/
vgext.h 144 VG_API_CALL void VG_API_ENTRY vgParametricFilterKHR(VGImage dst,VGImage src,VGImage blur,VGfloat strength,VGfloat offsetX,VGfloat offsetY,VGbitfield filterFlags,VGPaint highlightPaint,VGPaint shadowPaint);
151 typedef void (VG_API_ENTRYP PFNVGPARAMETRICFILTERKHRPROC) (VGImage dst,VGImage src,VGImage blur,VGfloat strength,VGfloat offsetX,VGfloat offsetY,VGbitfield filterFlags,VGPaint highlightPaint,VGPaint shadowPaint);
  /external/mesa3d/include/VG/
vgext.h 144 VG_API_CALL void VG_API_ENTRY vgParametricFilterKHR(VGImage dst,VGImage src,VGImage blur,VGfloat strength,VGfloat offsetX,VGfloat offsetY,VGbitfield filterFlags,VGPaint highlightPaint,VGPaint shadowPaint);
151 typedef void (VG_API_ENTRYP PFNVGPARAMETRICFILTERKHRPROC) (VGImage dst,VGImage src,VGImage blur,VGfloat strength,VGfloat offsetX,VGfloat offsetY,VGbitfield filterFlags,VGPaint highlightPaint,VGPaint shadowPaint);
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/ui/
search_box.js 51 this.inputElement.addEventListener('blur', this.onBlur_.bind(this));
160 * Handles a blur event of the search box.
177 this.inputElement.blur();
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/speak_selection/
options.js 94 hotKeyElement.blur();
  /external/chromium_org/remoting/webapp/
host_table_entry.js 222 editBox.addEventListener('blur', this.onBlurReference_, false);
306 editBox.removeEventListener('blur', this.onBlurReference_, false);
378 * Register focus and blur handlers to cause the parent node to be highlighted
390 e.addEventListener('blur', this.onFocusChange_.bind(this), false);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Element.idl 84 void blur();

Completed in 531 milliseconds

12 3 4 5 6