Home
last modified time | relevance | path

Searched refs:tt1 (Results 1 – 25 of 37) sorted by relevance

12

/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/functions/destructuring_parameter_declarations/
Ddestructuring_parameter_declarations_1.ts42 let tt1: Person = new Person("caihua1", 121); variable
44 let person_array: Person[] = [tt1, tt2];
46 let [tt1, tt2] = v_array;
47 Assert.equal(tt1.m_name, v_array[0].m_name);
48 Assert.equal(tt1.m_age, v_array[0].m_age);
/third_party/typescript/tests/cases/conformance/types/tuple/
DvariadicTuples2.ts41 declare let tt1: [...string[], number]; variable
42 tt1 = [5];
43 tt1 = ['abc', 5];
44 tt1 = ['abc', 'def', 5];
45 tt1 = ['abc', 'def', 5, 6]; // Error
/third_party/typescript/tests/baselines/reference/
DvariadicTuples2.js39 declare let tt1: [...string[], number];
40 tt1 = [5];
41 tt1 = ['abc', 5];
42 tt1 = ['abc', 'def', 5];
43 tt1 = ['abc', 'def', 5, 6]; // Error
146 tt1 = [5];
147 tt1 = ['abc', 5];
148 tt1 = ['abc', 'def', 5];
149 tt1 = ['abc', 'def', 5, 6]; // Error
256 declare let tt1: [...string[], number];
DfatarrowfunctionsOptionalArgsErrors2.symbols2 var tt1 = (a, (b, c)) => a+b+c;
3 >tt1 : Symbol(tt1, Decl(fatarrowfunctionsOptionalArgsErrors2.ts, 0, 3))
DvariadicTuples2.symbols121 declare let tt1: [...string[], number];
122 >tt1 : Symbol(tt1, Decl(variadicTuples2.ts, 37, 11))
124 tt1 = [5];
125 >tt1 : Symbol(tt1, Decl(variadicTuples2.ts, 37, 11))
127 tt1 = ['abc', 5];
128 >tt1 : Symbol(tt1, Decl(variadicTuples2.ts, 37, 11))
130 tt1 = ['abc', 'def', 5];
131 >tt1 : Symbol(tt1, Decl(variadicTuples2.ts, 37, 11))
133 tt1 = ['abc', 'def', 5, 6]; // Error
134 >tt1 : Symbol(tt1, Decl(variadicTuples2.ts, 37, 11))
DtupleTypes.js34 var tt1 = tt[1]; variable
35 var tt1: string; variable
95 var tt1 = tt[1];
96 var tt1; variable
DvariadicTuples2.types80 declare let tt1: [...string[], number];
81 >tt1 : [...string[], number]
83 tt1 = [5];
84 >tt1 = [5] : [number]
85 >tt1 : [...string[], number]
89 tt1 = ['abc', 5];
90 >tt1 = ['abc', 5] : [string, number]
91 >tt1 : [...string[], number]
96 tt1 = ['abc', 'def', 5];
97 >tt1 = ['abc', 'def', 5] : [string, string, number]
[all …]
DfatarrowfunctionsOptionalArgsErrors2.js2 var tt1 = (a, (b, c)) => a+b+c; function
8 var tt1 = (a, (b, c));
DtupleTypes.symbols115 var tt1 = tt[1];
116 >tt1 : Symbol(tt1, Decl(tupleTypes.ts, 32, 3), Decl(tupleTypes.ts, 33, 3))
120 var tt1: string;
121 >tt1 : Symbol(tt1, Decl(tupleTypes.ts, 32, 3), Decl(tupleTypes.ts, 33, 3))
DfatarrowfunctionsOptionalArgsErrors2.types2 var tt1 = (a, (b, c)) => a+b+c;
3 >tt1 : any
DtupleTypes.types137 var tt1 = tt[1];
138 >tt1 : string
143 var tt1: string;
144 >tt1 : string
/third_party/skia/tests/
DPathOpsQuadIntersectionTest.cpp43 double tt1 = intersections[0][pt]; in standardTestCases() local
44 SkDPoint xy1 = quad1.ptAtT(tt1); in standardTestCases()
49 __FUNCTION__, static_cast<int>(index), pt, tt1, xy1.fX, xy1.fY, in standardTestCases()
347 double tt1 = intersections[0][pt]; in oneOffTest1() local
348 SkDPoint xy1 = quad1.ptAtT(tt1); in oneOffTest1()
354 tt1, xy1.fX, xy1.fY, tt2, xy2.fX, xy2.fY); in oneOffTest1()
359 outer, inner, tt1, xy1.fX, xy1.fY, tt2); in oneOffTest1()
401 double tt1 = intersections2[0][pt]; in coincidentTestOne() local
403 SkDPoint pt1 = quad1.ptAtT(tt1); in coincidentTestOne()
DPathOpsQuadLineIntersectionTest.cpp139 double tt1 = intersections[0][pt]; in DEF_TEST() local
140 REPORTER_ASSERT(reporter, tt1 >= 0 && tt1 <= 1); in DEF_TEST()
141 SkDPoint t1 = quad.ptAtT(tt1); in DEF_TEST()
147 __FUNCTION__, iIndex, pt, tt1, t1.fX, t1.fY, tt2, t2.fX, t2.fY); in DEF_TEST()
DPathOpsConicLineIntersectionTest.cpp134 double tt1 = intersections[0][pt]; in DEF_TEST() local
135 REPORTER_ASSERT(reporter, tt1 >= 0 && tt1 <= 1); in DEF_TEST()
136 SkDPoint t1 = conic.ptAtT(tt1); in DEF_TEST()
142 __FUNCTION__, iIndex, pt, tt1, t1.fX, t1.fY, tt2, t2.fX, t2.fY); in DEF_TEST()
DPathOpsCubicIntersectionTest.cpp60 double tt1 = tIntersections[0][pt]; in standardTestCases() local
61 SkDPoint xy1 = c1.ptAtT(tt1); in standardTestCases()
66 __FUNCTION__, (int)index, pt, tt1, xy1.fX, xy1.fY, tt2, xy2.fX, xy2.fY); in standardTestCases()
417 double tt1, tt2; in oneOff() local
420 tt1 = intersections[0][pt3]; in oneOff()
421 xy1 = c1.ptAtT(tt1); in oneOff()
427 __FUNCTION__, tt1, xy1.fX, xy1.fY, iPt.fX, in oneOff()
516 double tt1 = intersections2[0][pt]; in CubicIntersection_RandTest() local
517 SkDPoint xy1 = c1.ptAtT(tt1); in CubicIntersection_RandTest()
DPathOpsCubicConicIntersectionTest.cpp69 double tt1 = i[0][pt]; in cubicConicIntersection() local
70 SkDPoint xy1 = cubic.ptAtT(tt1); in cubicConicIntersection()
75 __FUNCTION__, index, pt, tt1, xy1.fX, xy1.fY, tt2, xy2.fX, xy2.fY); in cubicConicIntersection()
DPathOpsConicQuadIntersectionTest.cpp58 double tt1 = i[0][pt]; in conicQuadIntersection() local
59 SkDPoint xy1 = conic.ptAtT(tt1); in conicQuadIntersection()
64 __FUNCTION__, index, pt, tt1, xy1.fX, xy1.fY, tt2, xy2.fX, xy2.fY); in conicQuadIntersection()
DPathOpsCubicQuadIntersectionTest.cpp79 double tt1 = i[0][pt]; in cubicQuadIntersection() local
80 SkDPoint xy1 = cubic.ptAtT(tt1); in cubicQuadIntersection()
85 __FUNCTION__, iIndex, pt, tt1, xy1.fX, xy1.fY, tt2, xy2.fX, xy2.fY); in cubicQuadIntersection()
DPathOpsCubicLineIntersectionTest.cpp154 double tt1 = i[0][pt]; in testOne() local
155 SkDPoint xy1 = cubic.ptAtT(tt1); in testOne()
160 __FUNCTION__, iIndex, pt, tt1, xy1.fX, xy1.fY, tt2, xy2.fX, xy2.fY); in testOne()
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/functions/function_implementations/
Dfunction_implementations_1.ts29 let tt1: void = undefined; variable
31 Assert.equal(tt1, tt2);
32 Assert.equal(tt1 === tt2, true);
Dfunction_implementations_2.ts39 let tt1: ttStr = "hello"; variable
40 Assert.isString(tt1);
/third_party/ffmpeg/libavcodec/ppc/
Dlossless_audiodsp_altivec.c31 #define GET_T(tt0,tt1,src,a,b){ \ argument
35 tt1 = vec_perm(a, b, align); \
38 #define GET_T(tt0,tt1,src,a,b){ \ argument
40 tt1 = vec_vsx_ld(16, src); \
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/classes/constructor_declarations/constructor_parameters/
Dconstructor_parameters_1.ts47 let tt1 = new Animal1("caihua1",NaN); variable
48 Assert.equal(tt1.name,"caihua1");
49 Assert.equal(tt1.age, undefined);
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/types/specifying_members/construct_signatures/
Dconstruct_signatures.ts49 let tt1 = new AnimalConstructor(); variable
50 Assert.equal(tt1.age, undefined);
51 Assert.equal(tt1.name, undefined);
/third_party/typescript/tests/cases/compiler/
DtupleTypes.ts33 var tt1 = tt[1]; variable
34 var tt1: string; variable

12