| /third_party/typescript/tests/cases/compiler/ |
| D | letAndVarRedeclaration.ts | 26 let x2; variable 27 var x2; variable 28 function x2() { } function 32 let x2; variable 34 var x2; variable 37 function x2() { } function
|
| D | duplicateClassElements.ts | 29 get x2() { method in a 32 set x2(_x: number) { method in a 34 public x2; property in a
|
| D | es6ModuleInternalImport.ts | 12 var x2 = a3 + a4; variable 18 var x2 = a3 + a4; variable
|
| /third_party/typescript/tests/baselines/reference/ |
| D | letAndVarRedeclaration.js | 23 let x2; variable 24 var x2; variable 25 function x2() { } function 29 let x2; variable 31 var x2; variable 76 function x2() { } function 85 function x2() { } function
|
| D | noCollisionThisExpressionAndLocalVarInAccessors.js | 4 var x2 = { field in class1 14 var x2 = { variable 27 var x2 = { field in class2 52 var x2 = { variable 61 var x2 = { variable 79 var x2 = { variable 88 var x2 = { variable
|
| D | collisionThisExpressionAndLocalVarInAccessors.js | 4 var x2 = { field in class1 14 var x2 = { variable 27 var x2 = { field in class2 53 var x2 = { variable 63 var x2 = { variable 82 var x2 = { variable 92 var x2 = { variable
|
| D | arrayLiteral.js | 11 var x2: number[] = []; variable 12 var x2: number[] = new Array(1); variable 25 var x2 = []; variable 26 var x2 = new Array(1); variable
|
| D | systemObjectShorthandRename.js | 8 const x2 = {x} constant 9 const a = {x2} field 38 x2 = { x: x_js_1.x }; variable 39 a = { x2 }; field
|
| D | mappedTypes6.js | 105 x2 = { a: 1 }; // Error variable 106 x2 = { a: 1, b: 1 }; // Error variable 107 x2 = { a: 1, b: 1, c: 1 }; // Error variable 108 x2 = { a: 1, b: 1, c: 1, d: 1 }; variable 188 x2 = { a: 1 }; // Error variable 189 x2 = { a: 1, b: 1 }; // Error variable 190 x2 = { a: 1, b: 1, c: 1 }; // Error variable 191 x2 = { a: 1, b: 1, c: 1, d: 1 }; variable
|
| D | indexIntoArraySubclass.js | 3 var x2: Foo2<string>; variable 8 var x2; variable
|
| D | instantiatedTypeAliasDisplay.js | 16 const x2 = f2({}, {}, {}, {}); // Z<{}, string[]> constant 21 var x2 = f2({}, {}, {}, {}); // Z<{}, string[]> variable
|
| D | destructuringParameterProperties5.js | 6 constructor(public [{ x1, x2, x3 }, y, z]: TupleType1) { property 12 var a = new C1([{ x1: 10, x2: "", x3: true }, "", false]); property 24 var a = new C1([{ x1: 10, x2: "", x3: true }, "", false]); property
|
| D | thisTypeErrors.js | 3 var x2: { a: this }; variable 61 var x2; variable 97 var x2 = { variable
|
| D | tsxGenericArrowFunctionParsing.js | 13 var x2 = <T extends {}>() => {}; variable 36 var x2 = function () { }; function
|
| D | compoundAdditionAssignmentLHSCannotBeAssigned.js | 8 var x2: number; variable 30 var x2; variable
|
| /third_party/flutter/skia/third_party/externals/sdl/src/render/software/ |
| D | SDL_drawline.c | 31 SDL_DrawLine1(SDL_Surface * dst, int x1, int y1, int x2, int y2, Uint32 color, in SDL_DrawLine1() 59 SDL_DrawLine2(SDL_Surface * dst, int x1, int y1, int x2, int y2, Uint32 color, in SDL_DrawLine2() 89 SDL_DrawLine4(SDL_Surface * dst, int x1, int y1, int x2, int y2, Uint32 color, in SDL_DrawLine4() 142 SDL_DrawLine(SDL_Surface * dst, int x1, int y1, int x2, int y2, Uint32 color) in SDL_DrawLine() 171 int x2, y2; in SDL_DrawLines() local
|
| D | SDL_blendline.c | 31 SDL_BlendLine_RGB2(SDL_Surface * dst, int x1, int y1, int x2, int y2, in SDL_BlendLine_RGB2() 123 SDL_BlendLine_RGB555(SDL_Surface * dst, int x1, int y1, int x2, int y2, in SDL_BlendLine_RGB555() 214 SDL_BlendLine_RGB565(SDL_Surface * dst, int x1, int y1, int x2, int y2, in SDL_BlendLine_RGB565() 305 SDL_BlendLine_RGB4(SDL_Surface * dst, int x1, int y1, int x2, int y2, in SDL_BlendLine_RGB4() 397 SDL_BlendLine_RGBA4(SDL_Surface * dst, int x1, int y1, int x2, int y2, in SDL_BlendLine_RGBA4() 489 SDL_BlendLine_RGB888(SDL_Surface * dst, int x1, int y1, int x2, int y2, in SDL_BlendLine_RGB888() 580 SDL_BlendLine_ARGB8888(SDL_Surface * dst, int x1, int y1, int x2, int y2, in SDL_BlendLine_ARGB8888() 708 SDL_BlendLine(SDL_Surface * dst, int x1, int y1, int x2, int y2, in SDL_BlendLine() 738 int x2, y2; in SDL_BlendLines() local
|
| /third_party/skia/platform_tools/android/apps/AndroidKit/src/main/java/org/skia/androidkit/ |
| D | PathBuilder.java | 26 public void quadTo(float x1, float y1, float x2, float y2) { in quadTo() 29 public void conicTo(float x1, float y1, float x2, float y2, float w) { in conicTo() 32 public void cubicTo(float x1, float y1, float x2, float y2, float x3, float y3) { in cubicTo() 71 … private static native void nQuadTo(long mNativeInstance, float x1, float y1, float x2, float y2); in nQuadTo() 72 …private static native void nConicTo(long mNativeInstance, float x1, float y1, float x2, float y2, … in nConicTo() 73 …private static native void nCubicTo(long mNativeInstance, float x1, float y1, float x2, float y2, … in nCubicTo()
|
| /third_party/skia/include/core/ |
| D | SkPathBuilder.h | 45 SkPathBuilder& quadTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2) { in quadTo() 51 SkPathBuilder& conicTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2, SkScalar w) { in conicTo() 59 …SkPathBuilder& cubicTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2, SkScalar x3, SkScalar y… in cubicTo() 79 SkPathBuilder& rQuadTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2) { in rQuadTo() 83 SkPathBuilder& rConicTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2, SkScalar w) { in rConicTo() 87 …SkPathBuilder& rCubicTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2, SkScalar x3, SkScalar … in rCubicTo()
|
| /third_party/flutter/skia/experimental/svg/model/ |
| D | SkSVGLinearGradient.cpp | 23 void SkSVGLinearGradient::setX2(const SkSVGLength& x2) { in setX2() 44 if (const auto* x2 = v.as<SkSVGLengthValue>()) { in onSetAttribute() local 65 const auto x2 = lctx.resolve(fX2, SkSVGLengthContext::LengthType::kHorizontal); in onMakeShader() local
|
| /third_party/typescript/tests/cases/conformance/types/specifyingTypes/typeLiterals/ |
| D | arrayLiteral.ts | 10 var x2: number[] = []; variable 11 var x2: number[] = new Array(1); variable
|
| /third_party/typescript/tests/cases/conformance/types/union/ |
| D | contextualTypeWithUnionTypeCallSignatures.ts | 29 var x2: IWithCallSignatures | IWithCallSignatures2 = a => a.toString(); // Like iWithCallSignatures variable 30 var x2: IWithCallSignatures | IWithCallSignatures2 = a => a; // Like iWithCallSignatures2 variable
|
| /third_party/gstreamer/gstplugins_bad/gst/videofilters/ |
| D | gstscenechangeorc.h | 56 typedef union { orc_int16 i; orc_int8 x2[2]; } orc_union16; member 57 typedef union { orc_int32 i; float f; orc_int16 x2[2]; orc_int8 x4[4]; } orc_union32; member 58 typedef union { orc_int64 i; double f; orc_int32 x2[2]; float x2f[2]; orc_int16 x4[4]; } orc_union6… member
|
| /third_party/gstreamer/gstplugins_base/gst-libs/gst/video/ |
| D | video-orc.h | 56 typedef union { orc_int16 i; orc_int8 x2[2]; } orc_union16; member 57 typedef union { orc_int32 i; float f; orc_int16 x2[2]; orc_int8 x4[4]; } orc_union32; member 58 typedef union { orc_int64 i; double f; orc_int32 x2[2]; float x2f[2]; orc_int16 x4[4]; } orc_union6… member
|
| D | video-orc-dist.h | 56 typedef union { orc_int16 i; orc_int8 x2[2]; } orc_union16; member 57 typedef union { orc_int32 i; float f; orc_int16 x2[2]; orc_int8 x4[4]; } orc_union32; member 58 typedef union { orc_int64 i; double f; orc_int32 x2[2]; float x2f[2]; orc_int16 x4[4]; } orc_union6… member
|