/third_party/typescript/tests/baselines/reference/ |
D | unionTypePropertyAccessibility.types | 16 class Protected { 17 >Protected : Protected 36 var v3: Protected; 37 >v3 : Protected 45 var v6: Default | Protected; 46 >v6 : Default | Protected 51 var v8: Public | Protected; 52 >v8 : Public | Protected 57 var v10: Protected | Private; 58 >v10 : Protected | Private [all …]
|
D | unionTypePropertyAccessibility.symbols | 16 class Protected { 17 >Protected : Symbol(Protected, Decl(unionTypePropertyAccessibility.ts, 6, 1)) 20 >member : Symbol(Protected.member, Decl(unionTypePropertyAccessibility.ts, 8, 17)) 38 var v3: Protected; 40 >Protected : Symbol(Protected, Decl(unionTypePropertyAccessibility.ts, 6, 1)) 51 var v6: Default | Protected; 54 >Protected : Symbol(Protected, Decl(unionTypePropertyAccessibility.ts, 6, 1)) 61 var v8: Public | Protected; 64 >Protected : Symbol(Protected, Decl(unionTypePropertyAccessibility.ts, 6, 1)) 71 var v10: Protected | Private; [all …]
|
D | unionTypePropertyAccessibility.errors.txt | 1 …S2445: Property 'member' is protected and only accessible within class 'Protected' and its subclas… 3 …cessibility.ts(38,4): error TS2339: Property 'member' does not exist on type 'Default | Protected'. 5 …ccessibility.ts(40,4): error TS2339: Property 'member' does not exist on type 'Public | Protected'. 7 …cessibility.ts(42,5): error TS2339: Property 'member' does not exist on type 'Protected | Private'. 8 …ty.ts(43,5): error TS2339: Property 'member' does not exist on type 'Default | Public | Protected'. 10 …y.ts(45,5): error TS2339: Property 'member' does not exist on type 'Default | Protected | Private'. 11 …ty.ts(46,5): error TS2339: Property 'member' does not exist on type 'Public | Protected | Private'. 12 …): error TS2339: Property 'member' does not exist on type 'Default | Public | Protected | Private'. 24 class Protected { 34 var v3: Protected; [all …]
|
D | unionTypePropertyAccessibility.js | 10 class Protected { class 20 var v3: Protected; 23 var v6: Default | Protected; 25 var v8: Public | Protected; 27 var v10: Protected | Private; 28 var v11: Default | Public | Protected; 30 var v13: Default | Protected | Private; 31 var v14: Public | Private | Protected; 32 var v15: Default | Public | Private | Protected; 62 var Protected = /** @class */ (function () { [all …]
|
D | jsdocAccessibilityTagsDeclarations.symbols | 2 class Protected { 3 >Protected : Symbol(Protected, Decl(jsdocAccessibilityTagDeclarations.js, 0, 0)) 11 >this.c : Symbol(Protected.c, Decl(jsdocAccessibilityTagDeclarations.js, 2, 20), Decl(jsdocAccessib… 12 >this : Symbol(Protected, Decl(jsdocAccessibilityTagDeclarations.js, 0, 0)) 13 >c : Symbol(Protected.c, Decl(jsdocAccessibilityTagDeclarations.js, 2, 20), Decl(jsdocAccessibility… 18 >m : Symbol(Protected.m, Decl(jsdocAccessibilityTagDeclarations.js, 5, 5)) 21 >this.c : Symbol(Protected.c, Decl(jsdocAccessibilityTagDeclarations.js, 2, 20), Decl(jsdocAccessib… 22 >this : Symbol(Protected, Decl(jsdocAccessibilityTagDeclarations.js, 0, 0)) 23 >c : Symbol(Protected.c, Decl(jsdocAccessibilityTagDeclarations.js, 2, 20), Decl(jsdocAccessibility… 27 >p : Symbol(Protected.p, Decl(jsdocAccessibilityTagDeclarations.js, 9, 5), Decl(jsdocAccessibilityT… [all …]
|
D | mixinAccessModifiers.types | 26 class Protected { 27 >Protected : Protected 88 function f2(x: Private & Protected) { 89 >f2 : (x: Private & Protected) => void 108 function f4(x: Protected & Protected2) { 109 >f4 : (x: Protected & Protected2) => void 110 >x : Protected & Protected2 114 >x : Protected & Protected2 118 function f5(x: Protected & Public) { 119 >f5 : (x: Protected & Public) => void [all …]
|
D | mixinAccessModifiers.js | 14 class Protected { class 42 function f2(x: Private & Protected) { argument 50 function f4(x: Protected & Protected2) { 54 function f5(x: Protected & Public) { 67 class C2 extends Mix(Private, Protected) {} 70 class C4 extends Mix(Protected, Protected2) { 83 class C5 extends Mix(Protected, Public) { 169 var Protected = /** @class */ (function () { 170 function Protected() { class in Protected 176 return Protected; [all …]
|
D | mixinAccessModifiers.symbols | 26 class Protected { 27 >Protected : Symbol(Protected, Decl(mixinAccessModifiers.ts, 10, 1)) 33 >p : Symbol(Protected.p, Decl(mixinAccessModifiers.ts, 13, 32)) 36 >s : Symbol(Protected.s, Decl(mixinAccessModifiers.ts, 14, 21)) 88 function f2(x: Private & Protected) { 92 >Protected : Symbol(Protected, Decl(mixinAccessModifiers.ts, 10, 1)) 108 function f4(x: Protected & Protected2) { 111 >Protected : Symbol(Protected, Decl(mixinAccessModifiers.ts, 10, 1)) 120 function f5(x: Protected & Public) { 123 >Protected : Symbol(Protected, Decl(mixinAccessModifiers.ts, 10, 1)) [all …]
|
D | mixinAccessModifiers.errors.txt | 4 …The intersection 'Private & Protected' was reduced to 'never' because property 'p' exists in multi… 7 …ror TS2445: Property 'p' is protected and only accessible within class 'Protected & Protected2' an… 11 …The intersection 'Private & Protected' was reduced to 'never' because property 'p' exists in multi… 41 class Protected { 72 function f2(x: Private & Protected) { 76 !!! error TS2339: The intersection 'Private & Protected' was reduced to 'never' because property … 86 function f4(x: Protected & Protected2) { 89 !!! error TS2445: Property 'p' is protected and only accessible within class 'Protected & Protected… 92 function f5(x: Protected & Public) { 108 class C2 extends Mix(Private, Protected) {} [all …]
|
D | jsdocAccessibilityTagsDeclarations.js | 2 class Protected { class 41 class Protected { 79 declare class Protected {
|
D | jsdocAccessibilityTagsDeclarations.types | 2 class Protected { 3 >Protected : Protected
|
D | Protected7.errors.txt | 1 tests/cases/conformance/parser/ecmascript5/Protected/Protected7.ts(2,13): error TS1028: Accessibili… 4 ==== tests/cases/conformance/parser/ecmascript5/Protected/Protected7.ts (1 errors) ====
|
D | Protected4.errors.txt | 1 tests/cases/conformance/parser/ecmascript5/Protected/Protected4.ts(2,13): error TS1028: Accessibili… 4 ==== tests/cases/conformance/parser/ecmascript5/Protected/Protected4.ts (1 errors) ====
|
D | Protected6.errors.txt | 1 tests/cases/conformance/parser/ecmascript5/Protected/Protected6.ts(2,10): error TS1029: 'protected'… 4 ==== tests/cases/conformance/parser/ecmascript5/Protected/Protected6.ts (1 errors) ====
|
D | Protected1.errors.txt | 1 tests/cases/conformance/parser/ecmascript5/Protected/Protected1.ts(1,1): error TS1044: 'protected' … 4 ==== tests/cases/conformance/parser/ecmascript5/Protected/Protected1.ts (1 errors) ====
|
D | Protected2.errors.txt | 1 tests/cases/conformance/parser/ecmascript5/Protected/Protected2.ts(1,1): error TS1044: 'protected' … 4 ==== tests/cases/conformance/parser/ecmascript5/Protected/Protected2.ts (1 errors) ====
|
D | Protected2.types | 1 === tests/cases/conformance/parser/ecmascript5/Protected/Protected2.ts ===
|
/third_party/typescript/tests/cases/conformance/types/union/ |
D | unionTypePropertyAccessibility.ts | 9 class Protected { class 19 var v3: Protected; 22 var v6: Default | Protected; 24 var v8: Public | Protected; 26 var v10: Protected | Private; 27 var v11: Default | Public | Protected; 29 var v13: Default | Protected | Private; 30 var v14: Public | Private | Protected; 31 var v15: Default | Public | Private | Protected;
|
/third_party/typescript/tests/cases/conformance/classes/ |
D | mixinAccessModifiers.ts | 15 class Protected { class 43 function f2(x: Private & Protected) { 51 function f4(x: Protected & Protected2) { 55 function f5(x: Protected & Public) { 68 class C2 extends Mix(Private, Protected) {} 71 class C4 extends Mix(Protected, Protected2) { 84 class C5 extends Mix(Protected, Public) {
|
/third_party/skia/experimental/graphite/include/ |
D | TextureInfo.h | 36 , fProtected(Protected::kNo) in TextureInfo() 51 Protected isProtected() const { return fProtected; } in isProtected() 78 Protected fProtected = Protected::kNo;
|
/third_party/skia/experimental/graphite/src/ |
D | Caps.h | 25 Protected, 30 Protected) const = 0; 34 Protected) const = 0;
|
/third_party/skia/experimental/graphite/src/mtl/ |
D | MtlCaps.h | 24 Protected, 29 Protected) const override; 33 Protected) const override;
|
D | MtlCaps.mm | 227 Protected, 247 Protected) const { 263 Protected) const {
|
/third_party/skia/third_party/externals/egl-registry/extensions/EXT/ |
D | EGL_EXT_protected_content.txt | 89 Add a new section 2.7 entitled "Protected Content" at the end of Chapter 2 (EGL 166 protected. See section 2.7 (Protected Content) for more information 187 content is not protected. See section 2.7 (Protected Content) for 224 EGLImage is said to be protected. See section 2.7 (Protected Content) 230 not protected. See section 2.7 (Protected Content) for more 303 Protected context, surface and image creation now
|
/third_party/EGL/extensions/EXT/ |
D | EGL_EXT_protected_content.txt | 89 Add a new section 2.7 entitled "Protected Content" at the end of Chapter 2 (EGL 166 protected. See section 2.7 (Protected Content) for more information 187 content is not protected. See section 2.7 (Protected Content) for 224 EGLImage is said to be protected. See section 2.7 (Protected Content) 230 not protected. See section 2.7 (Protected Content) for more 303 Protected context, surface and image creation now
|