| /third_party/typescript/tests/baselines/reference/ |
| H A D | enumMergingErrors.js | 4 export enum E1 { A = 0 } 9 export enum E1 { B = 'foo'.length } 14 export enum E1 { C } 21 export enum E1 { A = 0 } 24 export enum E1 { B } 27 export enum E1 { C } 33 export enum E1 { A } 36 export enum E1 { B = 0 } 39 export enum E1 { C } 49 var E1;
[all...] |
| H A D | forwardRefInEnum.js | 2 enum E1 { 6 X1 = E1["Y"], 8 Y = E1.Z, 9 Y1 = E1["Z"] 12 enum E1 { 18 var E1;
variable 19 (function (E1) {
22 E1[E1["X"] = 0] = "X";
23 E1[E [all...] |
| H A D | parserEnum5.js | 4 enum E1 { a, b: 1, c, d: 2 = 3 }
16 var E1;
variable 17 (function (E1) {
18 E1[E1["a"] = 0] = "a";
19 E1[E1["b"] = 1] = "b";
20 E1[E1[1] = 2] = 1;
21 E1[E [all...] |
| H A D | enumBasics.js | 3 enum E1 { 10 var x: number = E1.A; 13 var e = E1; 15 readonly A: E1.A; 16 readonly B: E1.B; 17 readonly C: E1.C; 20 var e: typeof E1; 23 var s = E1[e.A]; 85 var E1;
variable 86 (function (E1) {
[all...] |
| H A D | commonJSImportNotAsPrimaryExpression.js | 20 export enum E1 { 32 var e: number = <foo.E1>0;
37 exports.E1 = exports.C1 = void 0;
46 var E1;
variable 47 (function (E1) {
48 E1[E1["A"] = 0] = "A";
49 E1[E1["B"] = 1] = "B";
50 E1[E [all...] |
| H A D | enumBasics3.js | 4 export enum E1 { 14 b = M.N.E1.a, 15 c = M.N.E1.a.a, // should error 26 var E1;
27 (function (E1) {
28 E1[E1["a"] = 1] = "a";
29 E1[E1["b"] = E1 [all...] |
| H A D | amdImportNotAsPrimaryExpression.js | 20 export enum E1 { 32 var e: number = <foo.E1>0;
38 exports.E1 = exports.C1 = void 0;
47 var E1;
48 (function (E1) {
49 E1[E1["A"] = 0] = "A";
50 E1[E1["B"] = 1] = "B";
51 E1[E [all...] |
| H A D | numericEnumMappedType.js | 4 enum E1 { ONE, TWO, THREE } 7 type Bins1 = { [k in E1]?: string; } 13 const e1: E1 = E1.ONE; 43 var E1;
variable 44 (function (E1) {
45 E1[E1["ONE"] = 0] = "ONE";
46 E1[E1["TW [all...] |
| H A D | typeArgumentInferenceWithObjectLiteral.js | 21 enum E1 { X } 30 var v1 = f1({ w: x => x, r: () => 0 }, E1.X); 31 var v1 = f1({ w: x => x, r: () => E1.X }, 0); 33 var v2: E1; 34 var v2 = f1({ w: x => x, r: () => E1.X }, E1.X); 36 var v3 = f1({ w: x => x, r: () => E1.X }, E2.X); // Error 51 var E1;
variable 52 (function (E1) {
53 E1[E [all...] |
| H A D | constantEnumAssert.js | 2 enum E1 { 28 const foo1 = { a: E1.a } 32 const foo3 = { a: E1.a } as const 42 const foo8 = { a: E1.a as const } 54 var E1;
variable 55 (function (E1) {
56 E1[E1["a"] = 0] = "a";
57 E1[E1[" [all...] |
| H A D | bestCommonTypeOfTuple.js | 8 enum E1 { one } 14 var t2: [E1, E2]; 16 var t4: [E1, E2, number]; 20 t2 = [E1.one, E2.two]; 22 t4 = [E1.one, E2.two, 20]; 32 var E1;
variable 33 (function (E1) {
34 E1[E1["one"] = 0] = "one";
35 })(E1 || (E [all...] |
| H A D | moduleCodeGenTest5.js | 17 export enum E1 {A=0} 18 var u = E1.A; 27 exports.E1 = exports.C1 = exports.f1 = exports.x = void 0;
48 var E1;
variable 49 (function (E1) {
50 E1[E1["A"] = 0] = "A";
51 })(E1 = exports.E1 || (exports.E1 [all...] |
| H A D | equalityWithEnumTypes.js | 3 enum E1 { 14 function f1(v: E1) { 48 var E1;
variable 49 (function (E1) {
50 E1[E1["a"] = 1] = "a";
51 E1[E1["b"] = 2] = "b";
52 })(E1 || (E1 [all...] |
| H A D | computedPropertyNames47_ES6.js | 2 enum E1 { x } 5 [E1.x || E2.x]: 0 9 var E1;
variable 10 (function (E1) {
11 E1[E1["x"] = 0] = "x";
12 })(E1 || (E1 = {}));
18 [E1.x || E2.x]: 0
|
| H A D | computedPropertyNames47_ES5.js | 2 enum E1 { x } 5 [E1.x || E2.x]: 0 10 var E1;
variable 11 (function (E1) {
12 E1[E1["x"] = 0] = "x";
13 })(E1 || (E1 = {}));
19 _a[E1.x || E2.x] = 0,
|
| H A D | implicitIndexSignatures.js | 49 enum E1 { A, B } 52 const v1 = getStringIndexValue(E1); 55 const v4 = getNumberIndexValue(E1); 99 var E1;
100 (function (E1) {
101 E1[E1["A"] = 0] = "A";
102 E1[E1["B"] = 1] = "B";
103 })(E1 || (E [all...] |
| H A D | enumConstantMembers.js | 3 enum E1 { 45 var E1;
variable 46 (function (E1) {
47 E1[E1["a"] = 1] = "a";
48 E1[E1["b"] = 2] = "b";
49 })(E1 || (E1 = {}));
|
| H A D | castingTuple.js | 8 enum E1 { one } 22 var t10: [E1, E2] = [E1.one, E2.one]; 87 var E1;
variable 88 (function (E1) {
89 E1[E1["one"] = 0] = "one";
90 })(E1 || (E1 = {}));
106 var t10 = [E1 [all...] |
| H A D | exportsAndImports3-es6.js | 26 export { v as v1, f as f1, C as C1, I as I1, E as E1, D as D1, M as M1, N as N1, T as T1, a as a1 }; 29 export { v1 as v, f1 as f, C1 as C, I1 as I, E1 as E, D1 as D, M1 as M, N1 as N, T1 as T, a1 as a } from "./t1"; 32 import { v1 as v, f1 as f, C1 as C, I1 as I, E1 as E, D1 as D, M1 as M, N1 as N, T1 as T, a1 as a } from "./t1"; 39 exports.a1 = exports.M1 = exports.E1 = exports.C1 = exports.f1 = exports.v1 = exports.a = exports.M = exports.E = exports.C = exports.f = exports.v = void 0;
55 exports.E1 = E;
70 Object.defineProperty(exports, "E", { enumerable: true, get: function () { return t1_1.E1; } });
81 Object.defineProperty(exports, "E", { enumerable: true, get: function () { return t1_1.E1; } });
|
| H A D | exportsAndImports3.js | 26 export { v as v1, f as f1, C as C1, I as I1, E as E1, D as D1, M as M1, N as N1, T as T1, a as a1 }; 29 export { v1 as v, f1 as f, C1 as C, I1 as I, E1 as E, D1 as D, M1 as M, N1 as N, T1 as T, a1 as a } from "./t1"; 32 import { v1 as v, f1 as f, C1 as C, I1 as I, E1 as E, D1 as D, M1 as M, N1 as N, T1 as T, a1 as a } from "./t1"; 39 exports.a1 = exports.M1 = exports.E1 = exports.C1 = exports.f1 = exports.v1 = exports.a = exports.M = exports.E = exports.C = exports.f = exports.v = void 0;
58 exports.E1 = E;
84 __createBinding(exports, t1_1, "E1", "E");
95 exports.E = t1_1.E1;
|
| /third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/detail/ |
| H A D | _swizzle.hpp | 23 template <int N, typename T, precision P, template <typename, precision> class vecType, int E0, int E1, int E2, int E3, bool Aligned> 28 template <typename T, precision P, template <typename, precision> class vecType, int E0, int E1, bool Aligned> 29 struct _swizzle_base1<2, T, P, vecType, E0,E1,-1,-2, Aligned> : public _swizzle_base0<T, 2> 31 GLM_FUNC_QUALIFIER vecType<T, P> operator ()() const { return vecType<T, P>(this->elem(E0), this->elem(E1)); } in operator ()() 34 template <typename 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 GLM_FUNC_QUALIFIER vecType<T, P> operator ()() const { return vecType<T, P>(this->elem(E0), this->elem(E1), this->elem(E2)); } in operator ()() 40 template <typename T, precision P, template <typename, precision> class vecType, int E0, int E1, int E2, int E3, bool Aligned> 41 struct _swizzle_base1<4, T, P, vecType, E0,E1,E2,E3, Aligned> : public _swizzle_base0<T, 4> 43 GLM_FUNC_QUALIFIER vecType<T, P> operator ()() const { return vecType<T, P>(this->elem(E0), this->elem(E1), thi [all...] |
| /third_party/libabigail/tests/data/test-diff-filter/ |
| H A D | test2-v0.cc | 11 struct E1 struct 14 E1(); 17 E1::E1() in E1() function in E1 24 E1 m1;
|
| H A D | test2-v1.cc | 12 class E1 class 16 E1(); 19 E1::E1() in E1() function in E1 27 E1 m1;
|
| /third_party/ffmpeg/libavutil/ |
| H A D | mem_internal.h | 103 #define E1(x) x macro 116 # define LOCAL_ALIGNED_4(t, v, ...) E1(LOCAL_ALIGNED_D(4, t, v, __VA_ARGS__,,)) 118 # define LOCAL_ALIGNED_4(t, v, ...) E1(LOCAL_ALIGNED_A(4, t, v, __VA_ARGS__,,)) 122 # define LOCAL_ALIGNED_8(t, v, ...) E1(LOCAL_ALIGNED_D(8, t, v, __VA_ARGS__,,)) 124 # define LOCAL_ALIGNED_8(t, v, ...) E1(LOCAL_ALIGNED_A(8, t, v, __VA_ARGS__,,)) 128 # define LOCAL_ALIGNED_16(t, v, ...) E1(LOCAL_ALIGNED_D(16, t, v, __VA_ARGS__,,)) 130 # define LOCAL_ALIGNED_16(t, v, ...) E1(LOCAL_ALIGNED_A(16, t, v, __VA_ARGS__,,)) 134 # define LOCAL_ALIGNED_32(t, v, ...) E1(LOCAL_ALIGNED_D(32, t, v, __VA_ARGS__,,)) 136 # define LOCAL_ALIGNED_32(t, v, ...) E1(LOCAL_ALIGNED_A(32, t, v, __VA_ARGS__,,))
|
| /third_party/ffmpeg/libavfilter/ |
| H A D | vf_epx.c | 72 uint32_t E0, E1, E2, E3; in epx2_slice() local 83 E1 = B == F ? F : E; in epx2_slice() 88 E1 = E; in epx2_slice() 94 dst_line[0][x*2+1] = E1; in epx2_slice() 140 uint32_t E0, E1, E2, E3, E4, E5, E6, E7, E8; in epx3_slice() local 155 E1 = (D == B && E != C) || (B == F && E != A) ? B : E; in epx3_slice() 165 E1 = E; in epx3_slice() 176 dst_line[0][x*3+1] = E1; in epx3_slice()
|