Home
last modified time | relevance | path

Searched refs:Curve (Results 1 – 25 of 117) sorted by relevance

12345

/third_party/flutter/skia/tests/
DPathOpsThreeWayTest.cpp14 struct Curve { struct
19 static const Curve testSet0[] = { // extracted from skpClip2 argument
25 static const Curve testSet1[] = { // extracted from cubicOp85i
33 const Curve* tests;
48 const Curve& oTest = testSet.tests[outer]; in testSetTest()
50 const Curve& iTest = testSet.tests[inner]; in testSetTest()
/third_party/skia/tests/
DPathOpsThreeWayTest.cpp14 struct Curve { struct
19 static const Curve testSet0[] = { // extracted from skpClip2 argument
25 static const Curve testSet1[] = { // extracted from cubicOp85i
33 const Curve* tests;
48 const Curve& oTest = testSet.tests[outer]; in testSetTest()
50 const Curve& iTest = testSet.tests[inner]; in testSetTest()
/third_party/flutter/flutter/packages/flutter/test/animation/
Dcurves_test.dart19 test('Curve flipped control test', () {
20 const Curve ease = Curves.ease;
21 final Curve flippedEase = ease.flipped;
29 const Curve step = Threshold(0.25);
37 void assertMaximumSlope(Curve curve, double maximumSlope) {
45 test('Curve is continuous', () {
87 void expectStaysInBounds(Curve curve) {
107 List<double> estimateBounds(Curve curve) {
206 test('Curve transform method should return 0.0 for t=0.0 and 1.0 for t=1.0', () {
/third_party/flutter/flutter/packages/flutter/lib/src/animation/
Dcurves.dart20 /// * [CurveTween], which can be used to apply a [Curve] to an [Animation].
26 abstract class Curve {
29 const Curve();
67 /// * [ReverseAnimation], which reverses an [Animation] rather than a [Curve].
69 Curve get flipped => FlippedCurve(this);
80 class _Linear extends Curve {
93 class SawTooth extends Curve {
123 class Interval extends Curve {
143 final Curve curve;
169 class Threshold extends Curve {
[all …]
Danimations.dart252 /// * [Curve.flipped] and [FlippedCurve], which provide a similar effect but on
253 /// [Curve]s.
319 /// [CurvedAnimation] is useful when you want to apply a non-linear [Curve] to
328 /// If you want to apply a [Curve] to a [Tween], consider using [CurveTween].
366 /// * [Curve.flipped] and [FlippedCurve], which provide the reverse of a
367 /// [Curve].
387 Curve curve;
402 Curve reverseCurve;
432 final Curve activeCurve = _useForwardCurve ? curve : reverseCurve;
/third_party/flutter/skia/site/user/api/
DSkPath_Overview.md3 … contains <a href='undocumented#Line'>Lines</a> and <a href='undocumented#Curve'>Curves</a> which …
4 …connected <a href='undocumented#Line'>Lines</a> and <a href='undocumented#Curve'>Curves</a>. <a hr…
6 Each <a href='undocumented#Line'>Line</a> and <a href='undocumented#Curve'>Curve</a> are described …
8 Each pair of connected <a href='undocumented#Line'>Lines</a> and <a href='undocumented#Curve'>Curve…
15 <a href='undocumented#Line'>Lines</a> and <a href='undocumented#Curve'>Curves</a> with as many <a h…
29 <a href='undocumented#Line'>Lines</a> and <a href='undocumented#Curve'>Curves</a> is filled.
/third_party/skia/site/docs/user/api/
DSkPath_Overview.md10 <a href='undocumented#Curve'>Curves</a> which can be stroked or filled.
13 <a href='undocumented#Curve'>Curves</a>.
16 <a href='undocumented#Line'>Line</a> and <a href='undocumented#Curve'>Curve</a>
22 <a href='undocumented#Curve'>Curves</a> share common
41 <a href='undocumented#Curve'>Curves</a> with as many
65 <a href='undocumented#Curve'>Curves</a> is filled.
/third_party/flutter/flutter/examples/flutter_gallery/lib/demo/shrine/
Dbackdrop.dart209 Curve firstCurve; // Curve for first TweenSequenceItem
210 Curve secondCurve; // Curve for second TweenSequenceItem
/third_party/flutter/flutter/packages/flutter/lib/src/widgets/
Danimated_cross_fade.dart113 /// fade out, and size), and you can pass [Interval]s instead of [Curve]s in
166 final Curve firstCurve;
171 final Curve secondCurve;
176 final Curve sizeCurve;
271 Animation<double> _initAnimation(Curve curve, bool inverted) {
Dfade_in_image.dart224 final Curve fadeOutCurve;
230 final Curve fadeInCurve;
388 final Curve fadeInCurve;
389 final Curve fadeOutCurve;
Dimplicit_animations.dart282 final Curve curve;
623 Curve curve = Curves.linear,
779 Curve curve = Curves.linear,
858 Curve curve = Curves.linear,
966 Curve curve = Curves.linear,
979 Curve curve = Curves.linear,
1117 Curve curve = Curves.linear,
1271 Curve curve = Curves.linear,
1354 Curve curve = Curves.linear,
1469 Curve curve = Curves.linear,
Danimated_size.dart50 final Curve curve;
/third_party/ffmpeg/libavfilter/
Dvf_pseudocolor.c86 typedef struct Curve { struct
88 } Curve; argument
101 const Curve *curves;
116 static const Curve curves[] =
659 const Curve curve = presets[s->preset].curves[seg]; in config_input()
/third_party/flutter/flutter/packages/flutter/lib/src/rendering/
Danimated_size.dart80 Curve curve = Curves.linear,
134 Curve get curve => _animation.curve;
135 set curve(Curve value) {
Dviewport_offset.dart183 @required Curve curve,
196 Curve curve,
282 @required Curve curve,
/third_party/openssl/doc/man3/
DBN_security_bits.pod31 ECC (Elliptic Curve Cryptography) is not covered by the BN_security_bits()
DEC_GFp_simple_method.pod32 The Elliptic Curve library provides a number of different implementations through a single common i…
/third_party/flutter/flutter/packages/flutter/lib/src/material/
Dsnack_bar.dart27 const Curve _snackBarHeightCurve = Curves.fastOutSlowIn;
28 const Curve _snackBarFadeInCurve = Interval(0.45, 1.0, curve: Curves.fastOutSlowIn);
29 const Curve _snackBarFadeOutCurve = Interval(0.72, 1.0, curve: Curves.fastOutSlowIn);
Dprogress_indicator.dart137 static const Curve line1Head = Interval(
142 static const Curve line1Tail = Interval(
147 static const Curve line2Head = Interval(
152 static const Curve line2Tail = Interval(
Dflutter_logo.dart67 final Curve curve;
Ddrawer_header.dart64 final Curve curve;
/third_party/flutter/flutter/examples/flutter_gallery/lib/gallery/
Dhome.dart331 const Curve switchOutCurve = Interval(0.4, 1.0, curve: Curves.fastOutSlowIn);
332 const Curve switchInCurve = Interval(0.4, 1.0, curve: Curves.fastOutSlowIn);
/third_party/flutter/flutter/packages/flutter/lib/src/physics/
Dgravity_simulation.dart37 /// * [Curves.bounceOut], a [Curve] that has a similar aesthetics but includes
/third_party/openssl/doc/man7/
DEVP_KDF-X963.pod83 "SEC 1: Elliptic Curve Cryptography"
DEVP_PKEY-EC.pod64 operations. The encoding conforms with Sec. 2.3.3 of the SECG SEC 1 ("Elliptic Curve
125 Curve Cryptography") standard.

12345