Home
last modified time | relevance | path

Searched refs:protected (Results 1 – 25 of 3747) sorted by relevance

12345678910>>...150

/third_party/skia/third_party/externals/egl-registry/extensions/EXT/
DEGL_EXT_protected_content.txt57 This extension introduces the concept of protected contexts and protected
59 creation time whether a context, surface or EGLImage is protected or not.
61 A protected context is required to allow the GPU to operate on protected
62 resources, including protected surfaces and protected EGLImages.
67 to handle protected content is by using a protected virtual to physical
69 read or write faults when a non-protected source tries to access a protected
72 actually allowing a transfer of data from a protected surface to a
73 non-protected surface.
95 is said to be protected. A protected context is required to allow the
96 GPU to operate on protected resources, including protected surfaces and
[all …]
/third_party/EGL/extensions/EXT/
DEGL_EXT_protected_content.txt57 This extension introduces the concept of protected contexts and protected
59 creation time whether a context, surface or EGLImage is protected or not.
61 A protected context is required to allow the GPU to operate on protected
62 resources, including protected surfaces and protected EGLImages.
67 to handle protected content is by using a protected virtual to physical
69 read or write faults when a non-protected source tries to access a protected
72 actually allowing a transfer of data from a protected surface to a
73 non-protected surface.
95 is said to be protected. A protected context is required to allow the
96 GPU to operate on protected resources, including protected surfaces and
[all …]
/third_party/typescript/tests/baselines/reference/
DprotectedMembers.errors.txt1 tests/cases/compiler/protectedMembers.ts(40,4): error TS2445: Property 'x' is protected and only ac…
2 tests/cases/compiler/protectedMembers.ts(41,4): error TS2445: Property 'f' is protected and only ac…
3 tests/cases/compiler/protectedMembers.ts(42,4): error TS2445: Property 'sx' is protected and only a…
4 tests/cases/compiler/protectedMembers.ts(43,4): error TS2445: Property 'sf' is protected and only a…
5 tests/cases/compiler/protectedMembers.ts(46,4): error TS2445: Property 'x' is protected and only ac…
6 tests/cases/compiler/protectedMembers.ts(47,4): error TS2445: Property 'f' is protected and only ac…
7 tests/cases/compiler/protectedMembers.ts(48,4): error TS2445: Property 'sx' is protected and only a…
8 tests/cases/compiler/protectedMembers.ts(49,4): error TS2445: Property 'sf' is protected and only a…
9 tests/cases/compiler/protectedMembers.ts(68,11): error TS2446: Property 'x' is protected and only a…
10 tests/cases/compiler/protectedMembers.ts(69,11): error TS2446: Property 'x' is protected and only a…
[all …]
DmemberFunctionsWithPublicPrivateOverloads.errors.txt1 …vateOverloads.ts(3,12): error TS2385: Overload signatures must all be public, private or protected.
2 …vateOverloads.ts(7,12): error TS2385: Overload signatures must all be public, private or protected.
3 …ateOverloads.ts(12,19): error TS2385: Overload signatures must all be public, private or protected.
4 …ateOverloads.ts(15,15): error TS2385: Overload signatures must all be public, private or protected.
5 …ateOverloads.ts(16,15): error TS2385: Overload signatures must all be public, private or protected.
6 …ateOverloads.ts(20,19): error TS2385: Overload signatures must all be public, private or protected.
7 …ateOverloads.ts(25,19): error TS2385: Overload signatures must all be public, private or protected.
8 …ateOverloads.ts(32,12): error TS2385: Overload signatures must all be public, private or protected.
9 …ateOverloads.ts(36,12): error TS2385: Overload signatures must all be public, private or protected.
10 …ateOverloads.ts(41,15): error TS2385: Overload signatures must all be public, private or protected.
[all …]
DclassPropertyAsProtected.errors.txt5 …bility/classPropertyAsProtected.ts(15,3): error TS2445: Property 'x' is protected and only accessi…
6 …bility/classPropertyAsProtected.ts(16,3): error TS2445: Property 'y' is protected and only accessi…
7 …bility/classPropertyAsProtected.ts(17,3): error TS2445: Property 'y' is protected and only accessi…
8 …lity/classPropertyAsProtected.ts(18,3): error TS2445: Property 'foo' is protected and only accessi…
9 …bility/classPropertyAsProtected.ts(20,3): error TS2445: Property 'a' is protected and only accessi…
10 …bility/classPropertyAsProtected.ts(21,3): error TS2445: Property 'b' is protected and only accessi…
11 …bility/classPropertyAsProtected.ts(22,3): error TS2445: Property 'b' is protected and only accessi…
12 …lity/classPropertyAsProtected.ts(23,3): error TS2445: Property 'foo' is protected and only accessi…
17 protected x: string;
18 protected get y() { return null; }
[all …]
DdeclarationEmitProtectedMembers.types2 // Class with protected members
6 protected x: number;
9 protected f() {
18 protected set accessor(a: number) { }
22 protected get accessor() { return 0; }
26 protected static sx: number;
29 protected static sf() {
38 protected static set staticSetter(a: number) { }
42 protected static get staticGetter() { return 0; }
47 // Derived class overriding protected members
[all …]
DdeclarationEmitMixinPrivateProtected.errors.txt1 … TS4094: Property '_assertIsStripped' of exported class expression may not be private or protected.
2 …: error TS4094: Property '_onDispose' of exported class expression may not be private or protected.
3 … TS4094: Property '_assertIsStripped' of exported class expression may not be private or protected.
4 …: error TS4094: Property '_onDispose' of exported class expression may not be private or protected.
5 … TS4094: Property '_assertIsStripped' of exported class expression may not be private or protected.
6 …: error TS4094: Property '_onDispose' of exported class expression may not be private or protected.
13 protected _onDispose() {
23 … TS4094: Property '_assertIsStripped' of exported class expression may not be private or protected.
25 …! error TS4094: Property '_onDispose' of exported class expression may not be private or protected.
28 … TS4094: Property '_assertIsStripped' of exported class expression may not be private or protected.
[all …]
DprotectedClassPropertyAccessibleWithinNestedSubclass.errors.txt6 protected x: string;
7 protected static x: string;
11 protected get y() { return this.x; }
12 protected set y(x) { this.y = this.x; }
13 protected foo() { return this.x; }
15 protected static get y() { return this.x; }
16 protected static set y(x) { this.y = this.x; }
17 protected static foo() { return this.x; }
18 protected static bar() { this.foo(); }
20 protected bar() {
[all …]
DderivedClassOverridesProtectedMembers.types14 protected a: typeof x;
18 protected b(a: typeof x) { }
23 protected get c() { return x; }
27 protected set c(v: typeof x) { }
32 protected d: (a: typeof x) => void;
37 protected static r: typeof x;
41 protected static s(a: typeof x) { }
46 protected static get t() { return x; }
50 protected static set t(v: typeof x) { }
55 protected static u: (a: typeof x) => void;
[all …]
DstrictModeReservedWordInDestructuring.types43 var { public, protected } = { public: 1, protected: 2 };
45 >protected : number
46 >{ public: 1, protected: 2 } : { public: number; protected: number; }
49 >protected : number
52 var { public: a, protected: b } = { public: 1, protected: 2 };
55 >protected : any
57 >{ public: 1, protected: 2 } : { public: number; protected: number; }
60 >protected : number
DderivedClassOverridesProtectedMembers3.errors.txt2 Property 'a' is protected in type 'Derived1' but public in type 'Base'.
4 Property 'b' is protected in type 'Derived2' but public in type 'Base'.
6 Property 'c' is protected in type 'Derived3' but public in type 'Base'.
8 Property 'c' is protected in type 'Derived4' but public in type 'Base'.
10 Property 'd' is protected in type 'Derived5' but public in type 'Base'.
12 Property 'r' is protected in type 'typeof Derived6' but public in type 'typeof Base'.
14 Property 's' is protected in type 'typeof Derived7' but public in type 'typeof Base'.
16 Property 't' is protected in type 'typeof Derived8' but public in type 'typeof Base'.
18 Property 't' is protected in type 'typeof Derived9' but public in type 'typeof Base'.
20 Property 'u' is protected in type 'typeof Derived10' but public in type 'typeof Base'.
[all …]
DprotectedClassPropertyAccessibleWithinClass.types7 protected x: string;
10 protected get y() { return this.x; }
16 protected set y(x) { this.y = this.x; }
27 protected foo() { return this.foo; }
33 protected static x: string;
36 protected static get y() { return this.x; }
42 protected static set y(x) { this.y = this.x; }
53 protected static foo() { return this.foo; }
59 protected static bar() { this.foo(); }
71 protected x: string;
[all …]
DclassConstructorOverloadsAccessibility.errors.txt1 …sAccessibility.ts(2,2): error TS2385: Overload signatures must all be public, private or protected.
2 …sAccessibility.ts(3,2): error TS2385: Overload signatures must all be public, private or protected.
3 …Accessibility.ts(11,2): error TS2385: Overload signatures must all be public, private or protected.
10 !!! error TS2385: Overload signatures must all be public, private or protected.
11 protected constructor(a: number) // error
13 !!! error TS2385: Overload signatures must all be public, private or protected.
21 protected constructor(a: number) // error
23 !!! error TS2385: Overload signatures must all be public, private or protected.
31 protected constructor(a: number)
32 protected constructor(a: string)
[all …]
DmergedDeclarations6.symbols5 protected protected: any;
6 >protected : Symbol(A.protected, Decl(a.ts, 0, 16))
8 protected setProtected(val: any) {
12 this.protected = val;
13 >this.protected : Symbol(A.protected, Decl(a.ts, 0, 16))
15 >protected : Symbol(A.protected, Decl(a.ts, 0, 16))
35 protected setProtected() {
DprotectedClassPropertyAccessibleWithinSubclass2.errors.txt1 …pertyAccessibleWithinSubclass2.ts(13,12): error TS2445: Property 'x' is protected and only accessi…
2 …pertyAccessibleWithinSubclass2.ts(26,11): error TS2446: Property 'x' is protected and only accessi…
3 …pertyAccessibleWithinSubclass2.ts(28,12): error TS2446: Property 'x' is protected and only accessi…
4 …pertyAccessibleWithinSubclass2.ts(29,12): error TS2445: Property 'x' is protected and only accessi…
5 …pertyAccessibleWithinSubclass2.ts(30,12): error TS2446: Property 'x' is protected and only accessi…
6 …pertyAccessibleWithinSubclass2.ts(42,11): error TS2446: Property 'x' is protected and only accessi…
7 …pertyAccessibleWithinSubclass2.ts(43,12): error TS2446: Property 'x' is protected and only accessi…
8 …pertyAccessibleWithinSubclass2.ts(45,12): error TS2445: Property 'x' is protected and only accessi…
9 …pertyAccessibleWithinSubclass2.ts(59,11): error TS2446: Property 'x' is protected and only accessi…
10 …pertyAccessibleWithinSubclass2.ts(60,12): error TS2446: Property 'x' is protected and only accessi…
[all …]
DprotectedClassPropertyAccessibleWithinNestedSubclass1.errors.txt1 …ccessibleWithinNestedSubclass1.ts(15,20): error TS2445: Property 'x' is protected and only accessi…
2 …ccessibleWithinNestedSubclass1.ts(32,19): error TS2446: Property 'x' is protected and only accessi…
3 …ccessibleWithinNestedSubclass1.ts(34,20): error TS2446: Property 'x' is protected and only accessi…
4 …ccessibleWithinNestedSubclass1.ts(35,20): error TS2445: Property 'x' is protected and only accessi…
5 …ccessibleWithinNestedSubclass1.ts(36,20): error TS2446: Property 'x' is protected and only accessi…
6 …ccessibleWithinNestedSubclass1.ts(52,19): error TS2446: Property 'x' is protected and only accessi…
7 …ccessibleWithinNestedSubclass1.ts(53,20): error TS2446: Property 'x' is protected and only accessi…
8 …ccessibleWithinNestedSubclass1.ts(55,20): error TS2445: Property 'x' is protected and only accessi…
9 …ccessibleWithinNestedSubclass1.ts(73,19): error TS2446: Property 'x' is protected and only accessi…
10 …ccessibleWithinNestedSubclass1.ts(74,20): error TS2446: Property 'x' is protected and only accessi…
[all …]
DmergedDeclarations6.types5 protected protected: any;
6 >protected : any
8 protected setProtected(val: any) {
12 this.protected = val;
13 >this.protected = val : any
14 >this.protected : any
16 >protected : any
35 protected setProtected() {
DaccessibilityModifiers.errors.txt5 …ertyMemberDeclarations/accessibilityModifiers.ts(26,12): error TS1029: 'protected' modifier must p…
6 …ertyMemberDeclarations/accessibilityModifiers.ts(27,12): error TS1029: 'protected' modifier must p…
7 …ertyMemberDeclarations/accessibilityModifiers.ts(28,12): error TS1029: 'protected' modifier must p…
8 …ertyMemberDeclarations/accessibilityModifiers.ts(29,12): error TS1029: 'protected' modifier must p…
27 protected static protectedProperty;
28 protected static protectedMethod() { }
29 protected static get protectedGetter() { return 0; }
30 protected static set protectedSetter(a: number) { }
53 static protected protectedProperty;
55 !!! error TS1029: 'protected' modifier must precede 'static' modifier.
[all …]
DstrictModeReservedWordInDestructuring.symbols28 var { public, protected } = { public: 1, protected: 2 };
30 >protected : Symbol(protected, Decl(strictModeReservedWordInDestructuring.ts, 5, 13))
32 >protected : Symbol(protected, Decl(strictModeReservedWordInDestructuring.ts, 5, 40))
34 var { public: a, protected: b } = { public: 1, protected: 2 };
37 >protected : Symbol(protected, Decl(strictModeReservedWordInDestructuring.ts, 6, 46))
40 >protected : Symbol(protected, Decl(strictModeReservedWordInDestructuring.ts, 6, 46))
DderivedClassOverridesProtectedMembers.symbols14 protected a: typeof x;
18 protected b(a: typeof x) { }
23 protected get c() { return x; }
27 protected set c(v: typeof x) { }
32 protected d: (a: typeof x) => void;
37 protected static r: typeof x;
41 protected static s(a: typeof x) { }
46 protected static get t() { return x; }
50 protected static set t(v: typeof x) { }
55 protected static u: (a: typeof x) => void;
[all …]
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/
DEXT_protected_textures.txt56 have created a protected context. A protected context enables the
57 driver to put the GPU into a protected mode where it is able to operate on
58 protected surfaces.
60 This extension enables allocating standard GL textures as protected
64 a protected context.
69 to handle protected content is by using a protected virtual to physical
71 read or write faults when a non-protected context tries to access the
74 actually allowing copying any protected content to a non-protected surface.
108 To use protected textures a context must be a protected context.
109 To check if your context supports protected content you can
[all …]
/third_party/openGLES/extensions/EXT/
DEXT_protected_textures.txt56 have created a protected context. A protected context enables the
57 driver to put the GPU into a protected mode where it is able to operate on
58 protected surfaces.
60 This extension enables allocating standard GL textures as protected
64 a protected context.
69 to handle protected content is by using a protected virtual to physical
71 read or write faults when a non-protected context tries to access the
74 actually allowing copying any protected content to a non-protected surface.
108 To use protected textures a context must be a protected context.
109 To check if your context supports protected content you can
[all …]
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/include/dataset/
Dvision.h53 protected:
74 protected:
106 protected:
126 protected:
149 protected:
170 protected:
189 protected:
204 protected:
219 protected:
234 protected:
[all …]
Daudio.h47 protected:
66 protected:
87 protected:
113 protected:
137 protected:
159 protected:
182 protected:
207 protected:
228 protected:
248 protected:
[all …]
/third_party/typescript_eslint/packages/eslint-plugin/docs/rules/
Dno-parameter-properties.md19 - `protected`, allows **protected** parameter properties.
22 - `protected readonly`, allows **protected readonly** parameter properties.
39 constructor(protected name: string) {}
51 constructor(protected readonly name: string) {}
77 constructor(protected name: string) {}
89 constructor(protected readonly name: string) {}
119 constructor(protected name: string) {}
131 constructor(protected readonly name: string) {}
151 ### protected subsection
153 Examples of **incorrect** code for the `{ "allows": ["protected"] }` options:
[all …]

12345678910>>...150