Home
last modified time | relevance | path

Searched refs:E2 (Results 1 – 25 of 419) sorted by relevance

12345678910>>...17

/third_party/ffmpeg/libavcodec/
Dindeo3data.h34 PD( 0, 0), E2( 2, 2), E4( -1, 3), E2( 4, 4), E4( 1, 5),\
35 E2( -4, 4), E4( -2, 6), E4( 4, 9), E2( 9, 9), E4( 1, 10),\
36 E4( -5, 8), E4( 9, 15), E4( -3, 12), E4( 4, 16), E2( 16, 16),\
37 E4( 0, 18), E2( -12, 12), E4( -9, 16), E4( 11, 27), E4( 19, 28),\
38 E4( -6, 22), E4( 4, 29), E2( 30, 30), E4( -2, 33), E4( -18, 23),\
40 E4( 4, 51), E2( 54, 54), E2( -34, 34), E4( -29, 42), E4( -6, 60),\
42 E4( -20, 74), E4( 2, 88), E2( 93, 93), E4( -52, 61), E4( 52, 120),\
44 E4( -34, 127), E2( -89, 89), E4( -78, 105), E2( 12, 12), E2( 23, 23),\
45 E2( 42, 42), E2( 73, 73)
48 PD( 0, 0), E2( 3, 3), E4( -1, 4), E2( 7, 7), E4( 2, 8),\
[all …]
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/detail/
D_swizzle.hpp23 …ision P, template <typename, precision> class vecType, int E0, int E1, int E2, int E3, bool Aligne…
34 …T, precision P, template <typename, precision> class vecType, int E0, int E1, int E2, bool Aligned>
35 struct _swizzle_base1<3, T, P, vecType, E0,E1,E2,-1, Aligned> : public _swizzle_base0<T, 3>
37 …, P> operator ()() const { return vecType<T, P>(this->elem(E0), this->elem(E1), this->elem(E2)); } in operator ()()
40 …ision P, template <typename, precision> class vecType, int E0, int E1, int E2, int E3, bool Aligne…
41 struct _swizzle_base1<4, T, P, vecType, E0,E1,E2,E3, Aligned> : public _swizzle_base0<T, 4>
43 …() const { return vecType<T, P>(this->elem(E0), this->elem(E1), this->elem(E2), this->elem(E3)); } in operator ()()
58 …ision P, template <typename, precision> class vecType, int E0, int E1, int E2, int E3, int DUPLICA…
59 …struct _swizzle_base2 : public _swizzle_base1<N, T, P, vecType, E0,E1,E2,E3, detail::is_aligned<P>…
111 const int offset_dst[4] = { E0, E1, E2, E3 }; in operator []()
[all …]
/third_party/typescript/tests/baselines/reference/
DbestCommonTypeOfTuple.types21 enum E2 { two }
22 >E2 : E2
23 >two : E2.two
31 var t2: [E1, E2];
32 >t2 : [E1, E2]
37 var t4: [E1, E2, number];
38 >t4 : [E1, E2, number]
48 t2 = [E1.one, E2.two];
49 >t2 = [E1.one, E2.two] : [E1.one, E2.two]
50 >t2 : [E1, E2]
[all …]
DconstEnumErrors.types40 const enum E2 {
41 >E2 : E2
44 >A : E2.A
47 var y0 = E2[1]
49 >E2[1] : any
50 >E2 : typeof E2
57 var y1 = E2[name];
59 >E2[name] : any
60 >E2 : typeof E2
63 var y2 = E2[`${name}`];
[all …]
DenumBasics1.js30 enum E2 {
35 enum E2 { // should error for continued autonumbering
67 var E2; variable
68 (function (E2) { argument
69 E2[E2["A"] = 0] = "A";
70 E2[E2["B"] = 1] = "B";
71 })(E2 || (E2 = {}));
72 (function (E2) { argument
73 E2[E2["C"] = 0] = "C";
74 E2[E2["D"] = 1] = "D";
[all …]
DconstantEnumAssert.types12 enum E2 {
13 >E2 : E2
16 >a : E2.a
20 >b : E2.b
75 const foo2 = { a: E2.a }
76 >foo2 : { a: E2; }
77 >{ a: E2.a } : { a: E2; }
78 >a : E2
79 >E2.a : E2.a
80 >E2 : typeof E2
[all …]
DenumMergingErrors.js5 export enum E2 { C }
10 export enum E2 { B = 'foo'.length }
15 export enum E2 { A = 0 }
53 var E2;
54 (function (E2) { argument
55 E2[E2["C"] = 0] = "C";
56 })(E2 = M.E2 || (M.E2 = {}));
67 var E2;
68 (function (E2) { argument
69 E2[E2["B"] = 'foo'.length] = "B";
[all …]
DcomputedPropertyNames47_ES6.types6 enum E2 { x }
7 >E2 : E2
8 >x : E2.x
12 >{ [E1.x || E2.x]: 0} : { 0: number; }
14 [E1.x || E2.x]: 0
15 >[E1.x || E2.x] : number
16 >E1.x || E2.x : E2
20 >E2.x : E2
21 >E2 : typeof E2
22 >x : E2
DcomputedPropertyNames47_ES5.types6 enum E2 { x }
7 >E2 : E2
8 >x : E2.x
12 >{ [E1.x || E2.x]: 0} : { 0: number; }
14 [E1.x || E2.x]: 0
15 >[E1.x || E2.x] : number
16 >E1.x || E2.x : E2
20 >E2.x : E2
21 >E2 : typeof E2
22 >x : E2
DinvalidEnumAssignments.types12 enum E2 {
13 >E2 : E2
16 >A : E2.A
19 >B : E2.B
25 var e2: E2;
26 >e2 : E2
28 e = E2.A;
29 >e = E2.A : E2.A
31 >E2.A : E2.A
32 >E2 : typeof E2
[all …]
DconstEnumErrors.js19 const enum E2 {
23 var y0 = E2[1]
25 var y1 = E2[name];
26 var y2 = E2[`${name}`];
28 var x = E2;
29 var y = [E2];
34 foo(E2);
52 var y0 = E2[1];
54 var y1 = E2[name];
55 var y2 = E2["" + name];
[all …]
DinvalidEnumAssignments.js7 enum E2 {
13 var e2: E2;
15 e = E2.A;
31 var E2; variable
32 (function (E2) { argument
33 E2[E2["A"] = 0] = "A";
34 E2[E2["B"] = 1] = "B";
35 })(E2 || (E2 = {}));
38 e = E2.A;
DbestCommonTypeOfTuple.js10 enum E2 { two }
14 var t2: [E1, E2];
16 var t4: [E1, E2, number];
20 t2 = [E1.one, E2.two];
22 t4 = [E1.one, E2.two, 20];
36 var E2; variable
37 (function (E2) { argument
38 E2[E2["two"] = 0] = "two";
39 })(E2 || (E2 = {}));
46 t2 = [E1.one, E2.two];
[all …]
DbestCommonTypeOfTuple.symbols18 enum E2 { two }
19 >E2 : Symbol(E2, Decl(bestCommonTypeOfTuple.ts, 6, 15))
20 >two : Symbol(E2.two, Decl(bestCommonTypeOfTuple.ts, 8, 9))
28 var t2: [E1, E2];
31 >E2 : Symbol(E2, Decl(bestCommonTypeOfTuple.ts, 6, 15))
36 var t4: [E1, E2, number];
39 >E2 : Symbol(E2, Decl(bestCommonTypeOfTuple.ts, 6, 15))
47 t2 = [E1.one, E2.two];
52 >E2.two : Symbol(E2.two, Decl(bestCommonTypeOfTuple.ts, 8, 9))
53 >E2 : Symbol(E2, Decl(bestCommonTypeOfTuple.ts, 6, 15))
[all …]
DconstEnumErrors.symbols35 const enum E2 {
36 >E2 : Symbol(E2, Decl(constEnumErrors.ts, 15, 1))
39 >A : Symbol(E2.A, Decl(constEnumErrors.ts, 17, 15))
42 var y0 = E2[1]
44 >E2 : Symbol(E2, Decl(constEnumErrors.ts, 15, 1))
49 var y1 = E2[name];
51 >E2 : Symbol(E2, Decl(constEnumErrors.ts, 15, 1))
54 var y2 = E2[`${name}`];
56 >E2 : Symbol(E2, Decl(constEnumErrors.ts, 15, 1))
59 var x = E2;
[all …]
DcomputedPropertyNames47_ES5.symbols6 enum E2 { x }
7 >E2 : Symbol(E2, Decl(computedPropertyNames47_ES5.ts, 0, 13))
8 >x : Symbol(E2.x, Decl(computedPropertyNames47_ES5.ts, 1, 9))
13 [E1.x || E2.x]: 0
14 >[E1.x || E2.x] : Symbol([E1.x || E2.x], Decl(computedPropertyNames47_ES5.ts, 2, 9))
18 >E2.x : Symbol(E2.x, Decl(computedPropertyNames47_ES5.ts, 1, 9))
19 >E2 : Symbol(E2, Decl(computedPropertyNames47_ES5.ts, 0, 13))
20 >x : Symbol(E2.x, Decl(computedPropertyNames47_ES5.ts, 1, 9))
DcomputedPropertyNames47_ES6.symbols6 enum E2 { x }
7 >E2 : Symbol(E2, Decl(computedPropertyNames47_ES6.ts, 0, 13))
8 >x : Symbol(E2.x, Decl(computedPropertyNames47_ES6.ts, 1, 9))
13 [E1.x || E2.x]: 0
14 >[E1.x || E2.x] : Symbol([E1.x || E2.x], Decl(computedPropertyNames47_ES6.ts, 2, 9))
18 >E2.x : Symbol(E2.x, Decl(computedPropertyNames47_ES6.ts, 1, 9))
19 >E2 : Symbol(E2, Decl(computedPropertyNames47_ES6.ts, 0, 13))
20 >x : Symbol(E2.x, Decl(computedPropertyNames47_ES6.ts, 1, 9))
DconstantEnumAssert.js7 enum E2 {
30 const foo2 = { a: E2.a }
34 const foo4 = { a: E2.a } as const
44 const foo9 = { a: E2.a as const }
59 var E2; variable
60 (function (E2) { argument
61 E2["a"] = "a";
62 E2["b"] = "b";
63 })(E2 || (E2 = {}));
75 var foo2 = { a: E2.a };
[all …]
DmoduleCodeGenTest5.types48 enum E2 {B=0}
49 >E2 : E2
50 >B : E2.B
53 var v = E2.B;
54 >v : E2
55 >E2.B : E2
56 >E2 : typeof E2
57 >B : E2
DcomputedPropertyNames47_ES6.js3 enum E2 { x }
5 [E1.x || E2.x]: 0
13 var E2; variable
14 (function (E2) { argument
15 E2[E2["x"] = 0] = "x";
16 })(E2 || (E2 = {}));
18 [E1.x || E2.x]: 0
DcomputedPropertyNames47_ES5.js3 enum E2 { x }
5 [E1.x || E2.x]: 0
14 var E2; variable
15 (function (E2) { argument
16 E2[E2["x"] = 0] = "x";
17 })(E2 || (E2 = {}));
19 _a[E1.x || E2.x] = 0,
DinvalidEnumAssignments.symbols12 enum E2 {
13 >E2 : Symbol(E2, Decl(invalidEnumAssignments.ts, 3, 1))
16 >A : Symbol(E2.A, Decl(invalidEnumAssignments.ts, 5, 9))
19 >B : Symbol(E2.B, Decl(invalidEnumAssignments.ts, 6, 6))
26 var e2: E2;
28 >E2 : Symbol(E2, Decl(invalidEnumAssignments.ts, 3, 1))
30 e = E2.A;
32 >E2.A : Symbol(E2.A, Decl(invalidEnumAssignments.ts, 5, 9))
33 >E2 : Symbol(E2, Decl(invalidEnumAssignments.ts, 3, 1))
34 >A : Symbol(E2.A, Decl(invalidEnumAssignments.ts, 5, 9))
DnumericEnumMappedType.types10 declare enum E2 { ONE, TWO, THREE }
11 >E2 : E2
12 >ONE : E2
13 >TWO : E2
14 >THREE : E2
19 type Bins2 = { [k in E2]?: string; }
36 const e2: E2 = E2.ONE;
37 >e2 : E2
38 >E2.ONE : E2
39 >E2 : typeof E2
[all …]
DenumBasics1.types43 enum E2 {
44 >E2 : E2
47 >A : E2.A
50 >B : E2.B
53 enum E2 { // should error for continued autonumbering
54 >E2 : E2
57 >C : E2.A
60 >D : E2.B
DconstantEnumAssert.symbols12 enum E2 {
13 >E2 : Symbol(E2, Decl(constantEnumAssert.ts, 3, 1))
16 >a : Symbol(E2.a, Decl(constantEnumAssert.ts, 5, 9))
19 >b : Symbol(E2.b, Decl(constantEnumAssert.ts, 6, 12))
64 const foo2 = { a: E2.a }
67 >E2.a : Symbol(E2.a, Decl(constantEnumAssert.ts, 5, 9))
68 >E2 : Symbol(E2, Decl(constantEnumAssert.ts, 3, 1))
69 >a : Symbol(E2.a, Decl(constantEnumAssert.ts, 5, 9))
78 const foo4 = { a: E2.a } as const
81 >E2.a : Symbol(E2.a, Decl(constantEnumAssert.ts, 5, 9))
[all …]

12345678910>>...17