Home
last modified time | relevance | path

Searched refs:AA (Results 1 – 25 of 581) sorted by relevance

12345678910>>...24

/third_party/typescript/tests/baselines/reference/
DprivateNameStaticMethodCallExpression.types2 class AA {
3 >AA : AA
9 >this : typeof AA
25 AA.#method();
26 >AA.#method() : void
27 >AA.#method : () => void
28 >AA : typeof AA
30 const func = AA.#method;
32 >AA.#method : () => void
33 >AA : typeof AA
[all …]
DprivateNameStaticMethodCallExpression.symbols2 class AA {
3 >AA : Symbol(AA, Decl(privateNameStaticMethodCallExpression.ts, 0, 0))
6 >#method : Symbol(AA.#method, Decl(privateNameStaticMethodCallExpression.ts, 0, 10))
7 >this.x : Symbol(AA.x, Decl(privateNameStaticMethodCallExpression.ts, 2, 32))
8 >this : Symbol(AA, Decl(privateNameStaticMethodCallExpression.ts, 0, 0))
9 >x : Symbol(AA.x, Decl(privateNameStaticMethodCallExpression.ts, 2, 32))
12 >#method2 : Symbol(AA.#method2, Decl(privateNameStaticMethodCallExpression.ts, 1, 38))
17 >x : Symbol(AA.x, Decl(privateNameStaticMethodCallExpression.ts, 2, 32))
20 >test : Symbol(AA.test, Decl(privateNameStaticMethodCallExpression.ts, 3, 17))
22 AA.#method();
[all …]
DprivateNameStaticMethodCallExpression.js2 class AA { class
7 AA.#method();
8 const func = AA.#method;
10 new AA.#method();
13 AA.#method2(0, ...arr, 3);
15 const b = new AA.#method2(0, ...arr, 3); //Error
16 const str = AA.#method2`head${1}middle${2}tail`;
17 AA.getClass().#method2`test${1}and${2}`;
19 AA.getClass().#method2(0, ...arr, 3);
20 const b2 = new (AA.getClass().#method2)(0, ...arr, 3); //Error
[all …]
DprivateNameMethodCallExpression.symbols2 class AA {
3 >AA : Symbol(AA, Decl(privateNameMethodCallExpression.ts, 0, 0))
6 >#method : Symbol(AA.#method, Decl(privateNameMethodCallExpression.ts, 0, 10))
7 >this.x : Symbol(AA.x, Decl(privateNameMethodCallExpression.ts, 2, 25))
8 >this : Symbol(AA, Decl(privateNameMethodCallExpression.ts, 0, 0))
9 >x : Symbol(AA.x, Decl(privateNameMethodCallExpression.ts, 2, 25))
12 >#method2 : Symbol(AA.#method2, Decl(privateNameMethodCallExpression.ts, 1, 31))
17 >x : Symbol(AA.x, Decl(privateNameMethodCallExpression.ts, 2, 25))
20 >test : Symbol(AA.test, Decl(privateNameMethodCallExpression.ts, 3, 10))
23 >this.#method : Symbol(AA.#method, Decl(privateNameMethodCallExpression.ts, 0, 10))
[all …]
DblockScopedNamespaceDifferentFile.types9 static funcData = A.AA.func();
11 >A.AA.func() : number
12 >A.AA.func : () => number
13 >A.AA : typeof A.AA
15 >AA : typeof A.AA
18 static someConst = A.AA.foo;
20 >A.AA.foo : ""
21 >A.AA : typeof A.AA
23 >AA : typeof A.AA
35 namespace AA {
[all …]
DblockScopedNamespaceDifferentFile.symbols9 static funcData = A.AA.func();
11 >A.AA.func : Symbol(A.AA.func, Decl(typings.d.ts, 1, 18))
12 >A.AA : Symbol(A.AA, Decl(typings.d.ts, 0, 21))
14 >AA : Symbol(A.AA, Decl(typings.d.ts, 0, 21))
15 >func : Symbol(A.AA.func, Decl(typings.d.ts, 1, 18))
17 static someConst = A.AA.foo;
19 >A.AA.foo : Symbol(A.AA.foo, Decl(typings.d.ts, 3, 13))
20 >A.AA : Symbol(A.AA, Decl(typings.d.ts, 0, 21))
22 >AA : Symbol(A.AA, Decl(typings.d.ts, 0, 21))
23 >foo : Symbol(A.AA.foo, Decl(typings.d.ts, 3, 13))
[all …]
DprivateNameMethodCallExpression.types2 class AA {
3 >AA : AA
81 >this.getInstance() : AA
82 >this.getInstance : () => AA
84 >getInstance : () => AA
92 >this.getInstance() : AA
93 >this.getInstance : () => AA
95 >getInstance : () => AA
106 >this.getInstance() : AA
107 >this.getInstance : () => AA
[all …]
DinfiniteExpansionThroughInstantiation2.symbols5 interface AA<T extends AA<T>> // now an error due to referencing type parameter in constraint
6 >AA : Symbol(AA, Decl(infiniteExpansionThroughInstantiation2.ts, 0, 0))
8 >AA : Symbol(AA, Decl(infiniteExpansionThroughInstantiation2.ts, 0, 0))
12 >x : Symbol(AA.x, Decl(infiniteExpansionThroughInstantiation2.ts, 4, 1))
16 interface BB extends AA<AA<BB>>
18 >AA : Symbol(AA, Decl(infiniteExpansionThroughInstantiation2.ts, 0, 0))
19 >AA : Symbol(AA, Decl(infiniteExpansionThroughInstantiation2.ts, 0, 0))
DclassAbstractUsingAbstractMethods2.types33 abstract class AA {
34 >AA : AA
40 class BB extends AA {}
42 >AA : AA
44 abstract class CC extends AA {}
46 >AA : AA
48 class DD extends AA {
50 >AA : AA
DinvalidModuleWithStatementsOfEveryKind.types23 public class AA<T> { s: T }
24 >AA : AA<T>
30 public class B extends AA<string> implements I { id: number }
32 >AA : AA<string>
76 private class AA<T> { s: T }
77 >AA : AA<T>
83 private class B extends AA<string> implements I { id: number }
85 >AA : AA<string>
130 static class AA<T> { s: T }
131 >AA : AA<T>
[all …]
DclassAbstractUsingAbstractMethods2.symbols33 abstract class AA {
34 >AA : Symbol(AA, Decl(classAbstractUsingAbstractMethods2.ts, 14, 1))
37 >foo : Symbol(AA.foo, Decl(classAbstractUsingAbstractMethods2.ts, 16, 19))
40 class BB extends AA {}
42 >AA : Symbol(AA, Decl(classAbstractUsingAbstractMethods2.ts, 14, 1))
44 abstract class CC extends AA {}
46 >AA : Symbol(AA, Decl(classAbstractUsingAbstractMethods2.ts, 14, 1))
48 class DD extends AA {
50 >AA : Symbol(AA, Decl(classAbstractUsingAbstractMethods2.ts, 14, 1))
DinvalidModuleWithStatementsOfEveryKind.js13 public class AA<T> { s: T }
16 public class B extends AA<string> implements I { id: number }
38 private class AA<T> { s: T }
41 private class B extends AA<string> implements I { id: number }
64 static class AA<T> { s: T }
67 static class B extends AA<string> implements I { id: number }
115 var AA = /** @class */ (function () { class
116 function AA() { class in anonymousFunctionf14cadf00a00.AA
118 return AA;
126 }(AA));
[all …]
DstringMappingOverPatternLiterals.types7 >B : "AA"
17 >BTemplate : `AA${Uppercase<string>}`
29 >b : "AA"
38 >b_template : `AA${Uppercase<string>}`
51 >b_template = b : "AA"
52 >b_template : `AA${Uppercase<string>}`
53 >b : "AA"
67 >b = b_template : `AA${Uppercase<string>}`
68 >b : "AA"
69 >b_template : `AA${Uppercase<string>}`
[all …]
DmoduleWithStatementsOfEveryKind.js4 class AA<T> { s: T } class
7 class B extends AA<string> implements I { id: number }
33 export class AA<T> { s: T }
36 export class B extends AA<string> implements I { id: number }
84 var AA = /** @class */ (function () { class
85 function AA() { class in anonymousFunction53e7ea290600.AA
87 return AA;
95 }(AA));
134 var AA = /** @class */ (function () { class
135 function AA() { class in anonymousFunction53e7ea291200.AA
[all …]
DdottedModuleName2.js10 module AA { export module B {
18 var tmpOK = AA.B.x;
54 var AA; variable
55 (function (AA) { argument
59 })(B = AA.B || (AA.B = {}));
60 })(AA || (AA = {}));
61 var tmpOK = AA.B.x;
DclassAbstractInheritance.types13 abstract class AA {
14 >AA : AA
20 abstract class BB extends AA {}
22 >AA : AA
24 class CC extends AA {}
26 >AA : AA
DdottedModuleName2.types14 module AA { export module B {
15 >AA : typeof AA
26 var tmpOK = AA.B.x;
28 >AA.B.x : number
29 >AA.B : typeof AA.B
30 >AA : typeof AA
31 >B : typeof AA.B
DclassAbstractDeclarations.d.types8 declare abstract class AA {
9 >AA : AA
15 declare abstract class BB extends AA {}
17 >AA : AA
19 declare class CC extends AA {}
21 >AA : AA
DclassAbstractInheritance.symbols13 abstract class AA {
14 >AA : Symbol(AA, Decl(classAbstractInheritance.ts, 4, 20))
17 >foo : Symbol(AA.foo, Decl(classAbstractInheritance.ts, 6, 19))
20 abstract class BB extends AA {}
22 >AA : Symbol(AA, Decl(classAbstractInheritance.ts, 4, 20))
24 class CC extends AA {}
26 >AA : Symbol(AA, Decl(classAbstractInheritance.ts, 4, 20))
DclassAbstractUsingAbstractMethods2.js18 abstract class AA {
22 class BB extends AA {}
24 abstract class CC extends AA {}
26 class DD extends AA {
81 var AA = /** @class */ (function () { class
82 function AA() { class in AA
84 return AA;
92 }(AA));
99 }(AA));
107 }(AA));
DinvalidModuleWithStatementsOfEveryKind.symbols24 public class AA<T> { s: T }
25 >AA : Symbol(AA, Decl(invalidModuleWithStatementsOfEveryKind.ts, 10, 11))
27 >s : Symbol(AA.s, Decl(invalidModuleWithStatementsOfEveryKind.ts, 11, 24))
34 public class B extends AA<string> implements I { id: number }
36 >AA : Symbol(AA, Decl(invalidModuleWithStatementsOfEveryKind.ts, 10, 11))
82 private class AA<T> { s: T }
83 >AA : Symbol(AA, Decl(invalidModuleWithStatementsOfEveryKind.ts, 35, 12))
85 >s : Symbol(AA.s, Decl(invalidModuleWithStatementsOfEveryKind.ts, 36, 25))
92 private class B extends AA<string> implements I { id: number }
94 >AA : Symbol(AA, Decl(invalidModuleWithStatementsOfEveryKind.ts, 35, 12))
[all …]
DdottedModuleName2.symbols13 module AA { export module B {
14 >AA : Symbol(AA, Decl(dottedModuleName2.ts, 4, 1))
24 var tmpOK = AA.B.x;
26 >AA.B.x : Symbol(AA.B.x, Decl(dottedModuleName2.ts, 10, 12))
27 >AA.B : Symbol(AA.B, Decl(dottedModuleName2.ts, 8, 11))
28 >AA : Symbol(AA, Decl(dottedModuleName2.ts, 4, 1))
29 >B : Symbol(AA.B, Decl(dottedModuleName2.ts, 8, 11))
30 >x : Symbol(AA.B.x, Decl(dottedModuleName2.ts, 10, 12))
/third_party/typescript/tests/cases/conformance/classes/members/privateNames/
DprivateNameStaticMethodCallExpression.ts3 class AA { class
8 AA.#method();
9 const func = AA.#method;
11 new AA.#method();
14 AA.#method2(0, ...arr, 3);
16 const b = new AA.#method2(0, ...arr, 3); //Error
17 const str = AA.#method2`head${1}middle${2}tail`;
18 AA.getClass().#method2`test${1}and${2}`;
20 AA.getClass().#method2(0, ...arr, 3);
21 const b2 = new (AA.getClass().#method2)(0, ...arr, 3); //Error
[all …]
/third_party/ffmpeg/tests/ref/fate/
Dpixelutils11 [OK] [AA] SAD [random] 2x2=276 ref=276
12 [OK] [AA] SAD [random] 4x4=1521 ref=1521
13 [OK] [AA] SAD [random] 8x8=5130 ref=5130
14 [OK] [AA] SAD [random] 16x16=20775 ref=20775
15 [OK] [AA] SAD [random] 32x32=83402 ref=83402
26 [OK] [AA] SAD [max] 2x2=1020 ref=1020
27 [OK] [AA] SAD [max] 4x4=4080 ref=4080
28 [OK] [AA] SAD [max] 8x8=16320 ref=16320
29 [OK] [AA] SAD [max] 16x16=65280 ref=65280
30 [OK] [AA] SAD [max] 32x32=261120 ref=261120
[all …]
/third_party/skia/third_party/externals/harfbuzz/src/ms-use/
DIndicShapingInvalidCluster.txt12 0905 093E ; # DEVANAGARI LETTER A, DEVANAGARI VOWEL SIGN AA
19 0906 0945 ; # DEVANAGARI LETTER AA, DEVANAGARI VOWEL SIGN CANDRA E
21 0906 0946 ; # DEVANAGARI LETTER AA, DEVANAGARI VOWEL SIGN SHORT E
23 0906 0947 ; # DEVANAGARI LETTER AA, DEVANAGARI VOWEL SIGN E
25 0906 0948 ; # DEVANAGARI LETTER AA, DEVANAGARI VOWEL SIGN AI
29 0906 093A ; # DEVANAGARI LETTER AA, DEVANAGARI VOWEL SIGN OE
33 0985 09BE ; # BENGALI LETTER A, BENGALI VOWEL SIGN AA
36 0A05 0A3E ; # GURMUKHI LETTER A, GURMUKHI VOWEL SIGN AA
45 0A85 0ABE ; # GUJARATI LETTER A, GUJARATI VOWEL SIGN AA
51 0A85 0ABE 0AC5 ; # GUJARATI LETTER A, GUJARATI VOWEL SIGN AA, GUJARATI VOWEL SIGN CANDRA E
[all …]

12345678910>>...24