Home
last modified time | relevance | path

Searched refs:Float64List (Results 1 – 25 of 61) sorted by relevance

123

/third_party/flutter/engine/flutter/lib/ui/painting/
Dgradient.h39 const tonic::Float64List& matrix4);
47 const tonic::Float64List& matrix4);
56 const tonic::Float64List& matrix4);
67 const tonic::Float64List& matrix4);
Dgradient.cc39 const tonic::Float64List& matrix4) { in initLinear()
67 const tonic::Float64List& matrix4) { in initRadial()
93 const tonic::Float64List& matrix4) { in initSweep()
122 const tonic::Float64List& matrix4) { in initTwoPointConical()
Dpath.h88 tonic::Float64List& matrix4);
93 tonic::Float64List& matrix4);
98 fml::RefPtr<CanvasPath> transform(tonic::Float64List& matrix4);
Dpath.cc213 tonic::Float64List& matrix4) { in addPathWithMatrix()
235 tonic::Float64List& matrix4) { in extendWithPathAndMatrix()
265 fml::RefPtr<CanvasPath> CanvasPath::transform(tonic::Float64List& matrix4) { in transform()
Dmatrix.h13 SkMatrix ToSkMatrix(const tonic::Float64List& matrix4);
Dmatrix.cc20 SkMatrix ToSkMatrix(const tonic::Float64List& matrix4) { in ToSkMatrix()
Dimage_shader.h33 const tonic::Float64List& matrix4);
Dimage_shader.cc36 const tonic::Float64List& matrix4) { in initWithImage()
/third_party/flutter/engine/flutter/lib/web_ui/lib/src/engine/
Dvector_math.dart8 final Float64List _m4storage;
11 Float64List get storage => _m4storage;
86 Matrix4.zero() : _m4storage = Float64List(16);
138 /// Constructs Matrix4 with given [Float64List] as [storage].
142 /// [offset]. [offset] has to be multiple of [Float64List.bytesPerElement].
144 : _m4storage = Float64List.view(buffer, offset, 16);
184 final Float64List argStorage = arg._m4storage;
219 final Float64List argStorage = arg._m4storage;
427 final Float64List argStorage = arg._v3storage;
483 final Float64List axisStorage = axis._v3storage;
[all …]
Dutil.dart58 bool isIdentityFloat64ListTransform(Float64List matrix) {
60 final Float64List m = matrix;
80 String float64ListToCssTransform(Float64List matrix) {
82 final Float64List m = matrix;
153 // cost of one `Matrix4` instance and one `Float64List` instance.
157 // `Vector3` instances, four `Float64List` instances, and four
160 // `Float64List` initializes the array with zeros, so we do not have to
162 final Float64List pointData = Float64List(16);
Dengine_canvas.dart33 void transform(Float64List matrix4);
197 final Float64List storage = skewMatrix.storage;
207 void transform(Float64List matrix4) {
/third_party/flutter/engine/flutter/testing/dart/
Dcompositing_test.dart5 import 'dart:typed_data' show Float64List;
13 final Float64List matrix4 = Float64List.fromList(<double>[
21 final Float64List matrix4WrongLength = Float64List.fromList(<double>[
35 final Float64List matrix4NaN = Float64List.fromList(<double>[
49 final Float64List matrix4Infinity = Float64List.fromList(<double>[
298 return builder.pushTransform(Float64List(16), oldLayer: oldLayer);
/third_party/flutter/flutter/packages/flutter/test/foundation/
Dserialization_test.dart69 final Float64List doubles = Float64List.fromList(<double>[3.14, double.nan]);
77 final Float64List readDoubles = read.getFloat64List(2);
/third_party/flutter/engine/flutter/lib/web_ui/lib/src/engine/compositor/
Dmatrix.dart14 /// Converts a 4x4 Flutter matrix (represented as a [Float64List]) to an
16 js.JsArray<double> toSkMatrix(Float64List matrix4) {
Dpath.dart36 void addPath(ui.Path path, ui.Offset offset, {Float64List matrix4}) {
108 void extendWithPath(ui.Path path, ui.Offset offset, {Float64List matrix4}) {
181 ui.Path transform(Float64List matrix4) {
/third_party/flutter/flutter/examples/layers/raw/
Dcanvas.dart72 final Float64List scaleMatrix = Float64List.fromList(<double>[
105 final Float64List deviceTransform = Float64List(16)
Dspinning_square.dart39 final Float64List deviceTransform = Float64List(16)
Dtext.dart34 final Float64List deviceTransform = Float64List(16)
/third_party/flutter/engine/flutter/lib/web_ui/lib/src/engine/services/
Dserialization.dart80 /// Write all the values from a [Float64List] into the buffer.
81 void putFloat64List(Float64List list) {
188 Float64List getFloat64List(int length) {
190 final Float64List list =
/third_party/flutter/flutter/packages/flutter/lib/src/foundation/
Dserialization.dart80 /// Write all the values from a [Float64List] into the buffer.
81 void putFloat64List(Float64List list) {
184 Float64List getFloat64List(int length) {
186 final Float64List list = data.buffer.asFloat64List(data.offsetInBytes + _position, length);
/third_party/flutter/flutter/packages/flutter/test/services/
Dmessage_codecs_testing.dart58 if (valueA is Float64List)
59 return valueB is Float64List && deepEqualsList(valueA, valueB);
/third_party/flutter/engine/flutter/shell/platform/embedder/fixtures/
Dmain.dart35 Float64List kTestTransform = () {
36 final Float64List values = Float64List(16);
/third_party/flutter/flutter/dev/integration_tests/channels/lib/
Dmain.dart62 static final Float64List someFloat64s =
63 Float64List.fromList(<double>[
/third_party/flutter/flutter/packages/flutter/lib/src/gestures/
Dlsq_solver.dart15 _elements = Float64List(size);
47 _elements = Float64List(rows * cols);
69 PolynomialFit(int degree) : coefficients = Float64List(degree + 1);
/third_party/flutter/flutter/packages/flutter/lib/src/painting/
Dmatrix_utils.dart22 final Float64List values = transform.storage;
49 final Float64List values = transform.storage;
126 final Float64List storage = transform.storage;
151 final Float64List storage = transform.storage;
156 _minMax ??= Float64List(4);
166 static Float64List _minMax;
167 static void _accumulate(Float64List m, double x, double y,
199 final Float64List storage = transform.storage;

123