Home
last modified time | relevance | path

Searched refs:tuple1 (Results 1 – 8 of 8) sorted by relevance

/third_party/typescript/tests/baselines/reference/
DgenericCallWithTupleType.symbols7 tuple1: [T, U];
8 >tuple1 : Symbol(I.tuple1, Decl(genericCallWithTupleType.ts, 0, 19))
22 i1.tuple1 = ["foo", 5];
23 >i1.tuple1 : Symbol(I.tuple1, Decl(genericCallWithTupleType.ts, 0, 19))
25 >tuple1 : Symbol(I.tuple1, Decl(genericCallWithTupleType.ts, 0, 19))
27 var e1 = i1.tuple1[0]; // string
29 >i1.tuple1 : Symbol(I.tuple1, Decl(genericCallWithTupleType.ts, 0, 19))
31 >tuple1 : Symbol(I.tuple1, Decl(genericCallWithTupleType.ts, 0, 19))
34 var e2 = i1.tuple1[1]; // number
36 >i1.tuple1 : Symbol(I.tuple1, Decl(genericCallWithTupleType.ts, 0, 19))
[all …]
DgenericCallWithTupleType.types3 tuple1: [T, U];
4 >tuple1 : [T, U]
14 i1.tuple1 = ["foo", 5];
15 >i1.tuple1 = ["foo", 5] : [string, number]
16 >i1.tuple1 : [string, number]
18 >tuple1 : [string, number]
23 var e1 = i1.tuple1[0]; // string
25 >i1.tuple1[0] : string
26 >i1.tuple1 : [string, number]
28 >tuple1 : [string, number]
[all …]
DgenericCallWithTupleType.js3 tuple1: [T, U];
10 i1.tuple1 = ["foo", 5];
11 var e1 = i1.tuple1[0]; // string
12 var e2 = i1.tuple1[1]; // number
13 i1.tuple1 = ["foo", 5, false, true];
14 var e3 = i1.tuple1[2]; // {}
15 i1.tuple1[3] = { a: "string" };
16 var e4 = i1.tuple1[3]; // {}
17 i2.tuple1 = ["foo", 5];
18 i2.tuple1 = ["foo", "bar"];
[all …]
DgenericCallWithTupleType.errors.txt17 tuple1: [T, U];
24 i1.tuple1 = ["foo", 5];
25 var e1 = i1.tuple1[0]; // string
26 var e2 = i1.tuple1[1]; // number
27 i1.tuple1 = ["foo", 5, false, true];
31 var e3 = i1.tuple1[2]; // {}
34 i1.tuple1[3] = { a: "string" };
39 var e4 = i1.tuple1[3]; // {}
42 i2.tuple1 = ["foo", 5];
43 i2.tuple1 = ["foo", "bar"];
[all …]
/third_party/typescript/tests/cases/conformance/types/typeRelationships/typeInference/
DgenericCallWithTupleType.ts2 tuple1: [T, U]; property
9 i1.tuple1 = ["foo", 5];
10 var e1 = i1.tuple1[0]; // string
11 var e2 = i1.tuple1[1]; // number
12 i1.tuple1 = ["foo", 5, false, true];
13 var e3 = i1.tuple1[2]; // {}
14 i1.tuple1[3] = { a: "string" };
15 var e4 = i1.tuple1[3]; // {}
16 i2.tuple1 = ["foo", 5];
17 i2.tuple1 = ["foo", "bar"];
[all …]
/third_party/flutter/engine/flutter/lib/web_ui/tool/
Dunicode_sync_script.dart142 (PropertyTuple tuple1, PropertyTuple tuple2) =>
143 tuple1.start.compareTo(tuple2.start),
/third_party/python/Lib/unittest/
Dcase.py1053 def assertTupleEqual(self, tuple1, tuple2, msg=None): argument
1062 self.assertSequenceEqual(tuple1, tuple2, msg, seq_type=tuple)
/third_party/python/Lib/test/
Dtest_itertools.py2142 def mutatingtuple(tuple1, f, tuple2): argument
2152 items[1:1] = list(tuple1)
2154 z = zip(*[gen]*len(tuple1))