Home
last modified time | relevance | path

Searched refs:Protected (Results 1 – 25 of 152) sorted by relevance

1234567

/third_party/typescript/tests/baselines/reference/
DunionTypePropertyAccessibility.types16 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 …]
DunionTypePropertyAccessibility.symbols16 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 …]
DunionTypePropertyAccessibility.errors.txt1 …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 …]
DunionTypePropertyAccessibility.js10 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 …]
DjsdocAccessibilityTagsDeclarations.symbols2 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 …]
DmixinAccessModifiers.types26 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 …]
DmixinAccessModifiers.js14 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 …]
DmixinAccessModifiers.symbols26 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 …]
DmixinAccessModifiers.errors.txt4 …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 …]
DjsdocAccessibilityTagsDeclarations.js2 class Protected { class
41 class Protected {
79 declare class Protected {
DjsdocAccessibilityTagsDeclarations.types2 class Protected {
3 >Protected : Protected
DProtected7.errors.txt1 tests/cases/conformance/parser/ecmascript5/Protected/Protected7.ts(2,13): error TS1028: Accessibili…
4 ==== tests/cases/conformance/parser/ecmascript5/Protected/Protected7.ts (1 errors) ====
DProtected4.errors.txt1 tests/cases/conformance/parser/ecmascript5/Protected/Protected4.ts(2,13): error TS1028: Accessibili…
4 ==== tests/cases/conformance/parser/ecmascript5/Protected/Protected4.ts (1 errors) ====
DProtected6.errors.txt1 tests/cases/conformance/parser/ecmascript5/Protected/Protected6.ts(2,10): error TS1029: 'protected'…
4 ==== tests/cases/conformance/parser/ecmascript5/Protected/Protected6.ts (1 errors) ====
DProtected1.errors.txt1 tests/cases/conformance/parser/ecmascript5/Protected/Protected1.ts(1,1): error TS1044: 'protected' …
4 ==== tests/cases/conformance/parser/ecmascript5/Protected/Protected1.ts (1 errors) ====
DProtected2.errors.txt1 tests/cases/conformance/parser/ecmascript5/Protected/Protected2.ts(1,1): error TS1044: 'protected' …
4 ==== tests/cases/conformance/parser/ecmascript5/Protected/Protected2.ts (1 errors) ====
DProtected2.types1 === tests/cases/conformance/parser/ecmascript5/Protected/Protected2.ts ===
/third_party/typescript/tests/cases/conformance/types/union/
DunionTypePropertyAccessibility.ts9 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/
DmixinAccessModifiers.ts15 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/
DTextureInfo.h36 , fProtected(Protected::kNo) in TextureInfo()
51 Protected isProtected() const { return fProtected; } in isProtected()
78 Protected fProtected = Protected::kNo;
/third_party/skia/experimental/graphite/src/
DCaps.h25 Protected,
30 Protected) const = 0;
34 Protected) const = 0;
/third_party/skia/experimental/graphite/src/mtl/
DMtlCaps.h24 Protected,
29 Protected) const override;
33 Protected) const override;
DMtlCaps.mm227 Protected,
247 Protected) const {
263 Protected) const {
/third_party/skia/third_party/externals/egl-registry/extensions/EXT/
DEGL_EXT_protected_content.txt89 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/
DEGL_EXT_protected_content.txt89 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

1234567