Lines Matching refs:ascope

25                                               AnimatorScope* ascope,  in AttachTintLayerEffect()  argument
50 abuilder->attachColor(*color0_prop, ascope, "v"), in AttachTintLayerEffect()
51 abuilder->attachColor(*color1_prop, ascope, "v")); in AttachTintLayerEffect()
56 abuilder->bindProperty<ScalarValue>((*amount_prop)["v"], ascope, in AttachTintLayerEffect()
66 AnimatorScope* ascope, in AttachTritoneLayerEffect() argument
92 abuilder->attachColor(*locolor_prop, ascope, "v"), in AttachTritoneLayerEffect()
93 abuilder->attachColor(*micolor_prop, ascope, "v"), in AttachTritoneLayerEffect()
94 abuilder->attachColor(*hicolor_prop, ascope, "v") }); in AttachTritoneLayerEffect()
99 abuilder->bindProperty<ScalarValue>((*blend_prop)["v"], ascope, in AttachTritoneLayerEffect()
109 AnimatorScope* ascope, in AttachFillLayerEffect() argument
133 sk_sp<sksg::Color> color_node = abuilder->attachColor(*color_prop, ascope, "v"); in AttachFillLayerEffect()
138 abuilder->bindProperty<ScalarValue>((*opacity_prop)["v"], ascope, in AttachFillLayerEffect()
152 AnimatorScope* ascope, in AttachDropShadowLayerEffect() argument
188 abuilder->bindProperty<VectorValue>((*color_prop)["v"], ascope, in AttachDropShadowLayerEffect()
192 abuilder->bindProperty<ScalarValue>((*opacity_prop)["v"], ascope, in AttachDropShadowLayerEffect()
196 abuilder->bindProperty<ScalarValue>((*direction_prop)["v"], ascope, in AttachDropShadowLayerEffect()
200 abuilder->bindProperty<ScalarValue>((*distance_prop)["v"], ascope, in AttachDropShadowLayerEffect()
204 abuilder->bindProperty<ScalarValue>((*softness_prop)["v"], ascope, in AttachDropShadowLayerEffect()
208 abuilder->bindProperty<ScalarValue>((*shadow_only_prop)["v"], ascope, in AttachDropShadowLayerEffect()
218 AnimatorScope* ascope, in AttachGaussianBlurLayerEffect() argument
243 abuilder->bindProperty<ScalarValue>((*blurriness_prop)["v"], ascope, in AttachGaussianBlurLayerEffect()
247 abuilder->bindProperty<ScalarValue>((*dimensions_prop)["v"], ascope, in AttachGaussianBlurLayerEffect()
251 abuilder->bindProperty<ScalarValue>((*repeatedge_prop)["v"], ascope, in AttachGaussianBlurLayerEffect()
262 AnimatorScope* ascope, in attachLayerEffects() argument
288 layer = AttachTintLayerEffect(*jprops, this, ascope, std::move(layer)); in attachLayerEffects()
291 layer = AttachFillLayerEffect(*jprops, this, ascope, std::move(layer)); in attachLayerEffects()
294 layer = AttachTritoneLayerEffect(*jprops, this, ascope, std::move(layer)); in attachLayerEffects()
297 layer = AttachDropShadowLayerEffect(*jprops, this, ascope, std::move(layer)); in attachLayerEffects()
300 layer = AttachGaussianBlurLayerEffect(*jprops, this, ascope, std::move(layer)); in attachLayerEffects()