/third_party/flutter/flutter/packages/flutter/test/painting/ |
D | circle_border_test.dart | 13 const CircleBorder c10 = CircleBorder(side: BorderSide(width: 10.0)); 16 expect(c10.dimensions, const EdgeInsets.all(10.0)); 17 expect(c10.scale(2.0), c20); 18 expect(c20.scale(0.5), c10); 19 expect(ShapeBorder.lerp(c10, c20, 0.0), c10); 20 expect(ShapeBorder.lerp(c10, c20, 0.5), c15); 21 expect(ShapeBorder.lerp(c10, c20, 1.0), c20); 22 …expect(c10.getInnerPath(Rect.fromCircle(center: Offset.zero, radius: 1.0).inflate(10.0)), isUnitCi… 23 expect(c10.getOuterPath(Rect.fromCircle(center: Offset.zero, radius: 1.0)), isUnitCircle); 25 (Canvas canvas) => c10.paint(canvas, const Rect.fromLTWH(10.0, 20.0, 30.0, 40.0)),
|
D | beveled_rectangle_border_test.dart | 12 …final BeveledRectangleBorder c10 = BeveledRectangleBorder(side: const BorderSide(width: 10.0), bor… 15 expect(c10.dimensions, const EdgeInsets.all(10.0)); 16 expect(c10.scale(2.0), c20); 17 expect(c20.scale(0.5), c10); 18 expect(ShapeBorder.lerp(c10, c20, 0.0), c10); 19 expect(ShapeBorder.lerp(c10, c20, 0.5), c15); 20 expect(ShapeBorder.lerp(c10, c20, 1.0), c20);
|
D | rounded_rectangle_border_test.dart | 13 …final RoundedRectangleBorder c10 = RoundedRectangleBorder(side: const BorderSide(width: 10.0), bor… 16 expect(c10.dimensions, const EdgeInsets.all(10.0)); 17 expect(c10.scale(2.0), c20); 18 expect(c20.scale(0.5), c10); 19 expect(ShapeBorder.lerp(c10, c20, 0.0), c10); 20 expect(ShapeBorder.lerp(c10, c20, 0.5), c15); 21 expect(ShapeBorder.lerp(c10, c20, 1.0), c20); 29 (Canvas canvas) => c10.paint(canvas, rect), 41 expect(ShapeBorder.lerp(directional, c10, 1.0), 42 ShapeBorder.lerp(c10, directional, 0.0));
|
D | continous_rectangle_border_test.dart | 13 …final ContinuousRectangleBorder c10 = ContinuousRectangleBorder(side: const BorderSide(width: 10.0… 16 expect(c10.dimensions, const EdgeInsets.all(10.0)); 17 expect(c10.scale(2.0), c20); 18 expect(c20.scale(0.5), c10); 19 expect(ShapeBorder.lerp(c10, c20, 0.0), c10); 20 expect(ShapeBorder.lerp(c10, c20, 0.5), c15); 21 expect(ShapeBorder.lerp(c10, c20, 1.0), c20);
|
D | stadium_border_test.dart | 13 const StadiumBorder c10 = StadiumBorder(side: BorderSide(width: 10.0)); 16 expect(c10.dimensions, const EdgeInsets.all(10.0)); 17 expect(c10.scale(2.0), c20); 18 expect(c20.scale(0.5), c10); 19 expect(ShapeBorder.lerp(c10, c20, 0.0), c10); 20 expect(ShapeBorder.lerp(c10, c20, 0.5), c15); 21 expect(ShapeBorder.lerp(c10, c20, 1.0), c20); 29 (Canvas canvas) => c10.paint(canvas, rect),
|
/third_party/typescript/tests/baselines/reference/ |
D | constDeclarations-errors.symbols | 30 for(const c10 = 0, c11; c10 < 1;) { } 31 >c10 : Symbol(c10, Decl(constDeclarations-errors.ts, 14, 9)) 33 >c10 : Symbol(c10, Decl(constDeclarations-errors.ts, 14, 9))
|
D | constDeclarations-errors.types | 37 for(const c10 = 0, c11; c10 < 1;) { } 38 >c10 : 0 41 >c10 < 1 : boolean 42 >c10 : 0
|
D | constDeclarations-errors.js | 16 for(const c10 = 0, c11; c10 < 1;) { } 29 for (const c10 = 0, c11; c10 < 1;) { }
|
D | ambientConstLiterals.js | 18 const c10 = [123]; variable 45 var c10 = [123]; variable 72 declare const c10: number[];
|
D | destructuringArrayBindingPatternAndAssignment1ES6.js | 50 var [,,,...c10] = [1, 2, 3, 4, "hello"]; 96 var [, , , ...c10] = [1, 2, 3, 4, "hello"];
|
D | tsxStatelessFunctionComponentOverload2.js | 32 const c10 = <OneThing {...obj2} yy1="boo" />; constant 61 var c10 = <OneThing {...obj2} yy1="boo"/>;
|
D | constDeclarations-validContexts.js | 41 const c10 = 0; constant 156 const c10 = 0; constant
|
D | ambientConstLiterals.symbols | 60 const c10 = [123]; 61 >c10 : Symbol(c10, Decl(ambientConstLiterals.ts, 16, 5))
|
D | genericsManyTypeParameters.js | 31 x10: a91, y12: a210, z10: a310, a10: a410, b10: a510, c10: a610, 51 x10 , y12 , z10 , a10 , b10 , c10, 63 …, x8, y8, z8, a8, b8, c8, x9, y9, z9, a9, b9, c9, x10, y12, z10, a10, b10, c10, x11, y13, z11, a11… 73 x10, y12, z10, a10, b10, c10,
|
D | staticFieldWithInterfaceContext.symbols | 99 let [ c10 = class { static x = { a: "a" } } ]: [I?] = [class { static x = { a: "a" } }]; 100 >c10 : Symbol(c10, Decl(staticFieldWithInterfaceContext.ts, 23, 5)) 101 >x : Symbol(c10.x, Decl(staticFieldWithInterfaceContext.ts, 23, 19))
|
D | destructuringArrayBindingPatternAndAssignment1ES5.js | 50 var [,,,...c10] = [1, 2, 3, 4, "hello"]; 103 var _m = [1, 2, 3, 4, "hello"], c10 = _m.slice(3); variable
|
/third_party/flutter/skia/third_party/externals/sdl/src/render/software/ |
D | SDL_rotate.c | 236 tColorRGBA c00, c01, c10, c11, cswap; in _transformSurfaceRGBA() local 273 c10 = *sp; in _transformSurfaceRGBA() 276 cswap = c10; c10=c11; c11=cswap; in _transformSurfaceRGBA() 279 cswap = c00; c00=c10; c10=cswap; in _transformSurfaceRGBA() 288 t2 = ((((c11.r - c10.r) * ex) >> 16) + c10.r) & 0xff; in _transformSurfaceRGBA() 291 t2 = ((((c11.g - c10.g) * ex) >> 16) + c10.g) & 0xff; in _transformSurfaceRGBA() 294 t2 = ((((c11.b - c10.b) * ex) >> 16) + c10.b) & 0xff; in _transformSurfaceRGBA() 297 t2 = ((((c11.a - c10.a) * ex) >> 16) + c10.a) & 0xff; in _transformSurfaceRGBA()
|
/third_party/libffi/testsuite/libffi.complex/ |
D | many_complex.inc | 16 _Complex T_C_TYPE c10, 43 T_CONV creal (c10), T_CONV cimag (c10), 48 return (c1+c2-c3-c4+c5+c6+c7-c8-c9-c10-c11+c12+c13);
|
/third_party/typescript/tests/cases/compiler/ |
D | constDeclarations-errors.ts | 17 for(const c10 = 0, c11; c10 < 1;) { } constant
|
/third_party/flutter/skia/src/core/ |
D | SkMipMap.cpp | 122 auto c10 = F::Expand(p1[0]); in downsample_1_2() local 124 auto c = c00 + c10; in downsample_1_2() 140 auto c10 = F::Expand(p1[0]); in downsample_1_3() local 143 auto c = add_121(c00, c10, c20); in downsample_1_3() 175 auto c10 = F::Expand(p1[0]); in downsample_2_2() local 178 auto c = c00 + c10 + c01 + c11; in downsample_2_2() 195 auto c10 = F::Expand(p1[0]); in downsample_2_3() local 200 auto c = add_121(c00, c10, c20) + add_121(c01, c11, c21); in downsample_2_3()
|
/third_party/musl/src/thread/arm/ |
D | atomics.s | 28 mcr p15,0,r0,c7,c10,5 55 mcr p15,0,r0,c7,c10,5 61 mcr p15,0,r0,c7,c10,5
|
/third_party/skia/third_party/externals/spirv-cross/shaders/legacy/vert/ |
D | transpose.legacy.vert | 27 vec4 c10 = Position * (MVPRowMajor * 2.0); 30 gl_Position = c0 + c1 + c2 + c3 + c4 + c5 + c6 + c7 + c8 + c9 + c10 + c11;
|
/third_party/skia/third_party/externals/spirv-cross/reference/shaders/legacy/vert/ |
D | transpose.legacy.vert | 33 vec4 c10 = Position * (spvTranspose(_13.MVPRowMajor) * 2.0); 35 gl_Position = ((((((((((c0 + c1) + c2) + c3) + c4) + c5) + c6) + c7) + c8) + c9) + c10) + c11;
|
/third_party/skia/third_party/externals/spirv-cross/shaders-msl/asm/frag/ |
D | unord-relational-op.asm.frag | 28 OpName %c10 "c10" 98 %c10 = OpVariable %_ptr_Function_v2bool Function 142 OpStore %c10 %47
|
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/ |
D | SamplerCore.cpp | 477 …Vector4s c10 = sampleTexel(uuuu1, vvvv0, wwww, layerIndex, offset, sample, mipmap, buffer, functio… in sampleQuad2D() local 514 … c00.x = As<UShort4>(c00.x) - MulHigh(As<UShort4>(c00.x), f0u) + MulHigh(As<UShort4>(c10.x), f0u); in sampleQuad2D() 523 c10.x = MulHigh(As<UShort4>(c10.x), f0u1v); in sampleQuad2D() 530 c10.x = MulHigh(c10.x, f0u1vs); in sampleQuad2D() 535 c.x = (c00.x + c10.x) + (c01.x + c11.x); in sampleQuad2D() 544 … c00.y = As<UShort4>(c00.y) - MulHigh(As<UShort4>(c00.y), f0u) + MulHigh(As<UShort4>(c10.y), f0u); in sampleQuad2D() 553 c10.y = MulHigh(As<UShort4>(c10.y), f0u1v); in sampleQuad2D() 560 c10.y = MulHigh(c10.y, f0u1vs); in sampleQuad2D() 565 c.y = (c00.y + c10.y) + (c01.y + c11.y); in sampleQuad2D() 574 … c00.z = As<UShort4>(c00.z) - MulHigh(As<UShort4>(c00.z), f0u) + MulHigh(As<UShort4>(c10.z), f0u); in sampleQuad2D() [all …]
|