Home
last modified time | relevance | path

Searched refs:applyTo (Results 1 – 25 of 63) sorted by relevance

123

/third_party/flutter/flutter/packages/flutter/test/widgets/
Dscroll_physics_test.dart13 TestScrollPhysics applyTo(ScrollPhysics ancestor) {
14 return TestScrollPhysics(name: name, parent: parent?.applyTo(ancestor) ?? ancestor);
30 test('ScrollPhysics applyTo()', () {
41 final TestScrollPhysics ab = a.applyTo(b);
44 final TestScrollPhysics abc = ab.applyTo(c);
47 final TestScrollPhysics de = d.applyTo(e);
50 final TestScrollPhysics abcde = abc.applyTo(de);
54 test('ScrollPhysics subclasses applyTo()', () {
63 expect(types(bounce.applyTo(clamp.applyTo(never.applyTo(always.applyTo(page))))),
66 expect(types(clamp.applyTo(never.applyTo(always.applyTo(page.applyTo(bounce))))),
[all …]
Dslivers_evil_test.dart50 TestScrollPhysics applyTo(ScrollPhysics ancestor) {
51 return TestScrollPhysics(parent: parent?.applyTo(ancestor) ?? ancestor);
/third_party/skia/src/gpu/
DGrSwizzle.h44 constexpr std::array<float, 4> applyTo(std::array<float, 4> color) const;
48 constexpr SkRGBA4f<AlphaType> applyTo(SkRGBA4f<AlphaType> color) const { in applyTo() function
49 std::array<float, 4> result = this->applyTo(color.array()); in applyTo()
81 constexpr std::array<float, 4> GrSwizzle::applyTo(std::array<float, 4> color) const { in applyTo() function
/third_party/flutter/flutter/packages/flutter/lib/src/widgets/
Dscroll_physics.dart63 /// This method is typically used to define [applyTo] methods like:
66 /// FooScrollPhysics applyTo(ScrollPhysics ancestor) {
71 ScrollPhysics buildParent(ScrollPhysics ancestor) => parent?.applyTo(ancestor) ?? ancestor;
85 /// In the following example, the [applyTo] method is used to combine the
90 /// final FooScrollPhysics x = FooScrollPhysics().applyTo(BarScrollPhysics());
97 /// * [buildParent], a utility method that's often used to define [applyTo]
99 ScrollPhysics applyTo(ScrollPhysics ancestor) {
295 BouncingScrollPhysics applyTo(ScrollPhysics ancestor) {
417 ClampingScrollPhysics applyTo(ScrollPhysics ancestor) {
501 AlwaysScrollableScrollPhysics applyTo(ScrollPhysics ancestor) {
[all …]
/third_party/skia/third_party/externals/icu/source/i18n/
Dnumber_multiplier.cpp131 void Scale::applyTo(impl::DecimalQuantity& quantity) const { in applyTo() function in Scale
157 fMultiplier.applyTo(quantity); in processQuantity()
/third_party/icu/icu4c/source/i18n/
Dnumber_multiplier.cpp131 void Scale::applyTo(impl::DecimalQuantity& quantity) const { in applyTo() function in Scale
157 fMultiplier.applyTo(quantity); in processQuantity()
/third_party/node/deps/icu-small/source/i18n/
Dnumber_multiplier.cpp131 void Scale::applyTo(impl::DecimalQuantity& quantity) const { in applyTo() function in Scale
157 fMultiplier.applyTo(quantity); in processQuantity()
/third_party/flutter/skia/third_party/externals/icu/source/i18n/
Dnumber_multiplier.cpp127 void Scale::applyTo(impl::DecimalQuantity& quantity) const { in applyTo() function in Scale
153 fMultiplier.applyTo(quantity); in processQuantity()
/third_party/flutter/skia/src/gpu/
DGrSwizzle.h46 constexpr SkRGBA4f<AlphaType> applyTo(const SkRGBA4f<AlphaType>& color) const;
86 constexpr SkRGBA4f<AlphaType> GrSwizzle::applyTo(const SkRGBA4f<AlphaType>& color) const { in applyTo() function
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
DMultiplierFormatHandler.java22 multiplier.applyTo(quantity); in processQuantity()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/
DMultiplierFormatHandler.java24 multiplier.applyTo(quantity); in processQuantity()
/third_party/skia/src/gpu/v1/
DSurfaceFillContext_v1.cpp207 color = this->writeSurfaceView().swizzle().applyTo(color); in internalClear()
229 color = this->writeSurfaceView().swizzle().applyTo(color); in internalClear()
/third_party/skia/src/core/
DSkImageFilter.cpp84 as_IFB(this)->getCropRect().applyTo( in filterBounds()
309 as_IFB(this)->getCropRect().applyTo( in getOutputBounds()
342 void SkImageFilter_Base::CropRect::applyTo(const SkIRect& imageBounds, const SkMatrix& ctm, in applyTo() function in SkImageFilter_Base::CropRect
381 fCropRect.applyTo(tmpDst, ctx.ctm(), this->onAffectsTransparentBlack(), dstBounds); in applyCropRect()
DSkImageFilter_Base.h158 void applyTo(const SkIRect& imageBounds, const SkMatrix& matrix, bool embiggen,
/third_party/flutter/skia/src/core/
DSkImageFilter.cpp71 as_IFB(this)->getCropRect().applyTo( in filterBounds()
254 void SkImageFilter::CropRect::applyTo(const SkIRect& imageBounds, const SkMatrix& ctm, in applyTo() function in SkImageFilter::CropRect
293 fCropRect.applyTo(tmpDst, ctx.ctm(), this->affectsTransparentBlack(), dstBounds); in applyCropRect()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DSTZInfo.java57 void applyTo(com.ibm.icu.util.SimpleTimeZone stz) { in applyTo() method in STZInfo
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
DSTZInfo.java58 void applyTo(ohos.global.icu.util.SimpleTimeZone stz) { in applyTo() method in STZInfo
/third_party/flutter/skia/include/core/
DSkImageFilter.h58 void applyTo(const SkIRect& imageBounds, const SkMatrix& matrix, bool embiggen,
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/number/
DScale.java174 public void applyTo(DecimalQuantity quantity) { in applyTo() method in Scale
/third_party/flutter/skia/src/effects/imagefilters/
DSkMergeImageFilter.cpp94 this->getCropRect().applyTo(bounds, ctx.ctm(), embiggen, &bounds); in onFilterImage()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/number/
DScale.java178 public void applyTo(DecimalQuantity quantity) { in applyTo() method in Scale
/third_party/skia/src/effects/imagefilters/
DSkMergeImageFilter.cpp92 this->getCropRect().applyTo(bounds, ctx.ctm(), embiggen, &bounds); in onFilterImage()
/third_party/skia/tests/
DMtlBackendAllocationTest.mm161 auto swizzledColor = swizzle.applyTo(color);
DBackendAllocationTest.cpp876 auto swizzledColor = swizzle.applyTo(color); in DEF_GPUTEST_FOR_ALL_GL_CONTEXTS()
1031 auto swizzledColor = swizzle.applyTo(color); in DEF_GPUTEST_FOR_VULKAN_CONTEXT()
/third_party/flutter/skia/src/gpu/mtl/
DGrMtlPipelineState.mm183 SkPMColor4f blendConst = swizzle.applyTo(blendInfo.fBlendConstant);

123