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

1 2 3 4 5 6 7 8 9

  /external/skia/experimental/svg/model/
SkSVGStop.cpp 22 void SkSVGStop::setStopOpacity(const SkSVGNumberType& opacity) {
23 fStopOpacity = SkTPin<SkScalar>(opacity.value(), 0, 1);
39 if (const auto* opacity = v.as<SkSVGNumberValue>()) {
40 this->setStopOpacity(*opacity);
SkSVGNode.cpp 75 void SkSVGNode::setFillOpacity(const SkSVGNumberType& opacity) {
77 SkSVGNumberType(SkTPin<SkScalar>(opacity.value(), 0, 1)));
84 void SkSVGNode::setOpacity(const SkSVGNumberType& opacity) {
86 SkSVGNumberType(SkTPin<SkScalar>(opacity.value(), 0, 1)));
101 void SkSVGNode::setStrokeOpacity(const SkSVGNumberType& opacity) {
103 SkSVGNumberType(SkTPin<SkScalar>(opacity.value(), 0, 1)));
132 if (const SkSVGNumberValue* opacity = v.as<SkSVGNumberValue>()) {
133 this->setFillOpacity(*opacity);
142 if (const SkSVGNumberValue* opacity = v.as<SkSVGNumberValue>()) {
143 this->setOpacity(*opacity);
    [all...]
SkSVGRenderContext.h 94 void applyOpacity(SkScalar opacity, uint32_t flags);
  /external/skqp/experimental/svg/model/
SkSVGStop.cpp 22 void SkSVGStop::setStopOpacity(const SkSVGNumberType& opacity) {
23 fStopOpacity = SkTPin<SkScalar>(opacity.value(), 0, 1);
39 if (const auto* opacity = v.as<SkSVGNumberValue>()) {
40 this->setStopOpacity(*opacity);
SkSVGNode.cpp 75 void SkSVGNode::setFillOpacity(const SkSVGNumberType& opacity) {
77 SkSVGNumberType(SkTPin<SkScalar>(opacity.value(), 0, 1)));
84 void SkSVGNode::setOpacity(const SkSVGNumberType& opacity) {
86 SkSVGNumberType(SkTPin<SkScalar>(opacity.value(), 0, 1)));
101 void SkSVGNode::setStrokeOpacity(const SkSVGNumberType& opacity) {
103 SkSVGNumberType(SkTPin<SkScalar>(opacity.value(), 0, 1)));
132 if (const SkSVGNumberValue* opacity = v.as<SkSVGNumberValue>()) {
133 this->setFillOpacity(*opacity);
142 if (const SkSVGNumberValue* opacity = v.as<SkSVGNumberValue>()) {
143 this->setOpacity(*opacity);
    [all...]
  /external/skia/experimental/sksg/effects/
SkSGOpacityEffect.h 16 * Concrete Effect node, applying opacity to its descendants.
21 static sk_sp<OpacityEffect> Make(sk_sp<RenderNode> child, float opacity = 1) {
22 return child ? sk_sp<OpacityEffect>(new OpacityEffect(std::move(child), opacity)) : nullptr;
25 SG_ATTRIBUTE(Opacity, float, fOpacity)
SkSGOpacityEffect.cpp 16 OpacityEffect::OpacityEffect(sk_sp<RenderNode> child, float opacity)
18 , fOpacity(opacity) {}
21 // opacity <= 0 disables rendering
38 // opacity <= 0 disables rendering AND revalidation for the sub-DAG
  /external/skqp/experimental/sksg/effects/
SkSGOpacityEffect.h 16 * Concrete Effect node, applying opacity to its descendants.
21 static sk_sp<OpacityEffect> Make(sk_sp<RenderNode> child, float opacity = 1) {
22 return child ? sk_sp<OpacityEffect>(new OpacityEffect(std::move(child), opacity)) : nullptr;
25 SG_ATTRIBUTE(Opacity, float, fOpacity)
SkSGOpacityEffect.cpp 16 OpacityEffect::OpacityEffect(sk_sp<RenderNode> child, float opacity)
18 , fOpacity(opacity) {}
21 // opacity <= 0 disables rendering
38 // opacity <= 0 disables rendering AND revalidation for the sub-DAG
  /external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/tests/yui/
opacity-filter.css 1 /* example from https://developer.mozilla.org/en/CSS/opacity */
4 opacity: 0.8; /* Firefox, Safari(WebKit), Opera */
5 -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; /* IE 8 */
6 filter: PROGID:DXImageTransform.Microsoft.Alpha(Opacity=80); /* IE 4-7 */
12 -ms-filter: "PROGID:DXImageTransform.Microsoft.Alpha(Opacity=80)"; /* IE 8 */
13 filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80); /* IE 4-7 */
  /external/replicaisland/src/com/replica/replicaisland/
DrawableBitmap.java 60 public void setOpacity(float opacity) {
61 mOpacity = opacity;
110 final float opacity = mOpacity; local
122 || opacity == 0.0f
134 if (opacity < 1.0f) {
135 gl.glColor4f(opacity, opacity, opacity, opacity);
141 if (opacity < 1.0f)
    [all...]
FadeDrawableComponent.java 86 float opacity = mInitialOpacity; local
99 opacity = mTargetOpacity;
102 opacity = Lerp.lerp(mInitialOpacity, mTargetOpacity, mDuration, elapsed);
104 opacity = Lerp.ease(mInitialOpacity, mTargetOpacity, mDuration, elapsed);
119 bitmap.setOpacity(opacity);
127 ((DrawableBitmap)drawable).setOpacity(opacity);
MotionBlurComponent.java 101 final float opacity = (STEP_COUNT - x) * OPACITY_STEP;
102 stepImage.setOpacity(opacity);
  /external/trappy/trappy/plotter/css/
EventPlot.css 49 fill-opacity: 0.5;
52 stroke-opacity: 1;
80 fill-opacity: .125;
  /frameworks/base/graphics/java/android/graphics/drawable/
RippleForeground.java 233 final ObjectAnimator opacity = ObjectAnimator.ofFloat(this, OPACITY, 1); local
234 opacity.setDuration(OPACITY_ENTER_DURATION);
235 opacity.setInterpolator(LINEAR_INTERPOLATOR);
236 opacity.start();
237 mRunningSwAnimators.add(opacity);
241 final ObjectAnimator opacity = ObjectAnimator.ofFloat(this, OPACITY, 0); local
242 opacity.setDuration(OPACITY_EXIT_DURATION);
243 opacity.setInterpolator(LINEAR_INTERPOLATOR)
273 final RenderNodeAnimator opacity = new RenderNodeAnimator(mPropPaint, local
    [all...]
  /external/autotest/frontend/client/src/autotest/public/
standard.css 15 opacity: 0.3;
16 filter: alpha(opacity=30);
110 opacity: .5;
112 filter: alpha(opacity=40);
128 opacity: .5;
130 filter: alpha(opacity=40);
  /frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/engine/
Volume.java 58 public void addLook(String name, int[][] color, int[][] opacity) {
59 mLooks.put(name, new Look(name, color, opacity));
91 public Look(String name, int[][] color, int[][] opacity) {
93 mOpacity = opacity;
  /packages/apps/DocumentsUI/src/com/android/documentsui/
DragShadowBuilder.java 78 int opacity = (int) (255 * 0.1); local
79 paint.setShadowLayer(mShadowRadius, 0, 0, Color.argb(opacity, 0, 0, 0));
83 opacity = (int) (255 * 0.24);
84 paint.setShadowLayer(mShadowRadius, 0, mShadowRadius, Color.argb(opacity, 0, 0, 0));
  /external/autotest/client/site_tests/documentscan_AppTestWithFakeLorgnette/document_scan_test_app/
scan.css 14 opacity:0.6;
  /packages/apps/TV/tuner/src/com/android/tv/tuner/data/
Cea708Data.java 143 public final int opacity; field in class:Cea708Data.CaptionColor
148 public CaptionColor(int opacity, int red, int green, int blue) {
149 this.opacity = opacity;
157 OPACITY_MAP[opacity], COLOR_MAP[red], COLOR_MAP[green], COLOR_MAP[blue]);
  /external/skia/experimental/docs/
svgBackend.js 58 var opacity = svg_opacity(display.paint.color);
59 cache.element.setAttribute("fill-opacity", opacity);
60 cache.element.setAttribute("stroke-opacity", opacity);
119 var style = "stop-color:" + svg_rbg(stop.color) + "; stop-opacity:"
  /external/skqp/experimental/docs/
svgBackend.js 58 var opacity = svg_opacity(display.paint.color);
59 cache.element.setAttribute("fill-opacity", opacity);
60 cache.element.setAttribute("stroke-opacity", opacity);
119 var style = "stop-color:" + svg_rbg(stop.color) + "; stop-opacity:"
  /external/ImageMagick/www/source/core/
sigmoidal-contrast.c 32 pixels[x].opacity=RoundToQuantum(SigmoidalContrast(pixels[x].opacity));
  /external/ImageMagick/coders/
gif.c 163 % MagickBooleanType DecodeImage(Image *image,const ssize_t opacity)
169 % o opacity: The colormap index associated with the transparent color.
395 static MagickBooleanType DecodeImage(Image *image,const ssize_t opacity,
450 SetPixelAlpha(image,index == opacity ? TransparentAlpha : OpaqueAlpha,q);
986 opacity;
1044 opacity=(-1);
1078 opacity=(ssize_t) buffer[3];
977 opacity; local
1505 opacity; local
    [all...]
xpm.c 914 opacity,
933 opacity=(-1);
953 if (opacity < 0)
955 opacity=i;
961 image->colormap[opacity].alpha;
963 opacity=i;
965 if (opacity == -1)
971 if (opacity < 0)
973 opacity=i;
979 image->colormap[opacity].alpha
906 opacity, local
    [all...]

Completed in 1703 milliseconds

1 2 3 4 5 6 7 8 9