Home
last modified time | relevance | path

Searched refs:private (Results 1 – 25 of 8230) sorted by relevance

12345678910>>...330

/third_party/typescript/tests/baselines/reference/
DmemberFunctionsWithPrivateOverloads.errors.txt1 …FunctionsWithPrivateOverloads.ts(43,11): error TS2341: Property 'foo' is private and only accessib…
2 …FunctionsWithPrivateOverloads.ts(46,12): error TS2341: Property 'foo' is private and only accessib…
3 …FunctionsWithPrivateOverloads.ts(48,12): error TS2341: Property 'foo' is private and only accessib…
4 …FunctionsWithPrivateOverloads.ts(49,12): error TS2341: Property 'bar' is private and only accessib…
9 private foo(x: number);
10 private foo(x: number, y: string);
11 private foo(x: any, y?: any) { }
13 private bar(x: 'hi');
14 private bar(x: string);
15 private bar(x: number, y: string);
[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 …]
DstrictModeReservedWord2.types21 private,
22 >private : foo.private
28 const enum private {
29 >private : private
32 >public : private.public
34 private,
35 >private : private.private
38 >pacakge : private.pacakge
47 private,
48 >private : bar.private
DprivacyGetter.types8 private f1() {
20 private get p1_private() {
28 private set p1_private(m1_c3_p1_arg: C1_public) {
33 private get p2_private() {
41 private set p2_private(m1_c3_p2_arg: C1_public) {
46 private get p3_private() {
54 private set p3_private(m1_c3_p3_arg: C2_private) {
76 private get p1_private() {
84 private set p1_private(m1_c3_p1_arg: C1_public) {
89 private get p2_private() {
[all …]
DclassWithPrivateProperty.errors.txt1 …embers/classWithPrivateProperty.ts(15,20): error TS2341: Property 'x' is private and only accessib…
2 …embers/classWithPrivateProperty.ts(16,20): error TS2341: Property 'a' is private and only accessib…
3 …embers/classWithPrivateProperty.ts(17,20): error TS2341: Property 'b' is private and only accessib…
4 …embers/classWithPrivateProperty.ts(18,20): error TS2341: Property 'c' is private and only accessib…
5 …embers/classWithPrivateProperty.ts(19,20): error TS2341: Property 'd' is private and only accessib…
6 …embers/classWithPrivateProperty.ts(20,20): error TS2341: Property 'e' is private and only accessib…
7 …embers/classWithPrivateProperty.ts(21,20): error TS2341: Property 'f' is private and only accessib…
8 …embers/classWithPrivateProperty.ts(22,20): error TS2341: Property 'g' is private and only accessib…
12 // accessing any private outside the class is an error
15 private x;
[all …]
Des6ModuleClassDeclaration.types7 private x = 10;
19 private static l = 30;
23 private method1() {
32 private static method4() {
41 private x = 10;
53 private static l = 30;
57 private method1() {
66 private static method4() {
86 private x = 10;
98 private static l = 30;
[all …]
DstrictModeReservedWordInClassDeclaration.types7 constructor(private, public, static) {
8 >private : any
12 private = public = static;
13 >private = public = static : any
14 >private : any
31 foo1(private, static, public) {
32 >foo1 : (private: any, static: any, public: any) => void
33 >private : any
50 class D<public, private>{ }
51 >D : D<public, private>
[all …]
DstrictModeReservedWord.types31 function bar(private, implements, let) { }
32 >bar : (private: any, implements: any, let: any) => void
33 >private : any
40 function barn(cb: (private, public, package) => void) { }
41 >barn : (cb: (private: any, public: any, package: any) => void) => void
42 >cb : (private: any, public: any, package: any) => void
43 >private : any
47 barn((private, public, package) => { });
48 >barn((private, public, package) => { }) : void
49 >barn : (cb: (private: any, public: any, package: any) => void) => void
[all …]
DstrictModeReservedWord2.symbols23 private,
24 >private : Symbol(foo.private, Decl(strictModeReservedWord2.ts, 7, 11))
30 const enum private {
31 >private : Symbol(private, Decl(strictModeReservedWord2.ts, 10, 1))
34 >public : Symbol(private.public, Decl(strictModeReservedWord2.ts, 12, 20))
36 private,
37 >private : Symbol(private.private, Decl(strictModeReservedWord2.ts, 13, 11))
40 >pacakge : Symbol(private.pacakge, Decl(strictModeReservedWord2.ts, 14, 12))
49 private,
50 >private : Symbol(bar.private, Decl(strictModeReservedWord2.ts, 19, 11))
DcallSignaturesWithAccessibilityModifiersOnParameters.types4 function foo(public x, private y) { }
9 var f = function foo(public x, private y) { }
11 >function foo(public x, private y) { } : (x: any, y: any) => void
16 var f2 = function (public x, private y) { }
18 >function (public x, private y) { } : (x: any, y: any) => void
22 var f3 = (x, private y) => { }
24 >(x, private y) => { } : (x: any, y: any) => void
34 function foo2(private x: string, public y: number) { }
39 var f5 = function foo(private x: string, public y: number) { }
41 >function foo(private x: string, public y: number) { } : (x: string, y: number) => void
[all …]
DclassPropertyAsPrivate.errors.txt5 …ssibility/classPropertyAsPrivate.ts(15,3): error TS2341: Property 'x' is private and only accessib…
6 …ssibility/classPropertyAsPrivate.ts(16,3): error TS2341: Property 'y' is private and only accessib…
7 …ssibility/classPropertyAsPrivate.ts(17,3): error TS2341: Property 'y' is private and only accessib…
8 …ibility/classPropertyAsPrivate.ts(18,3): error TS2341: Property 'foo' is private and only accessib…
9 …ssibility/classPropertyAsPrivate.ts(20,3): error TS2341: Property 'a' is private and only accessib…
10 …ssibility/classPropertyAsPrivate.ts(21,3): error TS2341: Property 'b' is private and only accessib…
11 …ssibility/classPropertyAsPrivate.ts(22,3): error TS2341: Property 'b' is private and only accessib…
12 …ibility/classPropertyAsPrivate.ts(23,3): error TS2341: Property 'foo' is private and only accessib…
17 private x: string;
18 private get y() { return null; }
[all …]
DprivacyGloGetter.types8 private f1() {
20 private get p1_private() {
28 private set p1_private(m1_c3_p1_arg: C1_public) {
33 private get p2_private() {
41 private set p2_private(m1_c3_p2_arg: C1_public) {
46 private get p3_private() {
54 private set p3_private(m1_c3_p3_arg: C2_private) {
76 private get p1_private() {
84 private set p1_private(m1_c3_p1_arg: C1_public) {
89 private get p2_private() {
[all …]
DmemberFunctionsWithPrivateOverloads.types5 private foo(x: number);
9 private foo(x: number, y: string);
14 private foo(x: any, y?: any) { }
19 private bar(x: 'hi');
23 private bar(x: string);
27 private bar(x: number, y: string);
32 private bar(x: any, y?: any) { }
37 private static foo(x: number);
41 private static foo(x: number, y: string);
46 private static foo(x: any, y?: any) { }
[all …]
DsubtypingWithObjectMembersAccessibility2.errors.txt2 Property 'foo' is private in type 'A' but not in type 'B'.
4 Property '1' is private in type 'A2' but not in type 'B2'.
6 Property ''1'' is private in type 'A3' but not in type 'B3'.
8 Property 'foo' is private in type 'A' but not in type 'B'.
10 Property '1' is private in type 'A2' but not in type 'B2'.
12 Property ''1'' is private in type 'A3' but not in type 'B3'.
16 // Derived member is private, base member is not causes errors
28 private foo: Base;
34 !!! error TS2415: Property 'foo' is private in type 'A' but not in type 'B'.
39 private 1: Base;
[all …]
DprivateClassPropertyAccessibleWithinClass.errors.txt15 private x: string;
16 private get y() { return this.x; }
19 private set y(x) { this.y = this.x; }
22 private foo() { return this.foo; }
24 private static x: string;
25 private static get y() { return this.x; }
28 private static set y(x) { this.y = this.x; }
31 private static foo() { return this.foo; }
32 private static bar() { this.foo(); }
37 private x: string;
[all …]
DassignmentCompatWithObjectMembersAccessibility.errors.txt2 Property 'foo' is private in type 'E' but not in type '{ foo: string; }'.
4 Property 'foo' is private in type 'E' but not in type 'Base'.
6 Property 'foo' is private in type 'E' but not in type 'I'.
8 Property 'foo' is private in type 'E' but not in type 'D'.
10 Property 'foo' is private in type 'E' but not in type '{ foo: string; }'.
12 Property 'foo' is private in type 'E' but not in type 'Base'.
14 Property 'foo' is private in type 'E' but not in type 'I'.
16 Property 'foo' is private in type 'E' but not in type 'D'.
18 Property 'foo' is private in type 'Base' but not in type '{ foo: string; }'.
20 Property 'foo' is private in type 'I' but not in type '{ foo: string; }'.
[all …]
DprivateClassPropertyAccessibleWithinClass.types7 private x: string;
10 private get y() { return this.x; }
16 private set y(x) { this.y = this.x; }
27 private foo() { return this.foo; }
33 private static x: string;
36 private static get y() { return this.x; }
42 private static set y(x) { this.y = this.x; }
53 private static foo() { return this.foo; }
59 private static bar() { this.foo(); }
71 private x: string;
[all …]
DprivacyAccessorDeclFile.types19 private static get myPrivateStaticMethod(): privateClass {
31 private get myPrivateMethod(): privateClass {
44 private static get myPrivateStaticMethod1() {
58 private get myPrivateMethod1() {
76 private static get myPrivateStaticMethod(): publicClass {
88 private get myPrivateMethod(): publicClass {
101 private static get myPrivateStaticMethod1() {
115 private get myPrivateMethod1() {
133 private static get myPrivateStaticMethod(): privateClass {
145 private get myPrivateMethod(): privateClass {
[all …]
/third_party/skia/third_party/externals/tint/test/types/
Dmodule_scope_var_conversions.wgsl.expected.wgsl1 var<private> bool_var1 : bool = bool(1u);
3 var<private> bool_var2 : bool = bool(1);
5 var<private> bool_var3 : bool = bool(1.0);
7 var<private> i32_var1 : i32 = i32(1u);
9 var<private> i32_var2 : i32 = i32(1.0);
11 var<private> i32_var3 : i32 = i32(true);
13 var<private> u32_var1 : u32 = u32(1);
15 var<private> u32_var2 : u32 = u32(1.0);
17 var<private> u32_var3 : u32 = u32(true);
19 var<private> v3bool_var1 : vec3<bool> = vec3<bool>(vec3<u32>(1u));
[all …]
Dmodule_scope_var_conversions.wgsl1 var<private> bool_var1 : bool = bool(1u);
2 var<private> bool_var2 : bool = bool(1);
3 var<private> bool_var3 : bool = bool(1.0);
5 var<private> i32_var1 : i32 = i32(1u);
6 var<private> i32_var2 : i32 = i32(1.0);
7 var<private> i32_var3 : i32 = i32(true);
9 var<private> u32_var1 : u32 = u32(1);
10 var<private> u32_var2 : u32 = u32(1.0);
11 var<private> u32_var3 : u32 = u32(true);
13 var<private> v3bool_var1 : vec3<bool> = vec3<bool>(vec3<u32>(1u));
[all …]
Dmodule_scope_var.wgsl.expected.wgsl5 var<private> bool_var : bool;
7 var<private> i32_var : i32;
9 var<private> u32_var : u32;
11 var<private> f32_var : f32;
13 var<private> v2i32_var : vec2<i32>;
15 var<private> v3u32_var : vec3<u32>;
17 var<private> v4f32_var : vec4<f32>;
19 var<private> m2x3_var : mat2x3<f32>;
21 var<private> arr_var : array<f32, 4>;
23 var<private> struct_var : S;
Dmodule_scope_var.wgsl5 var<private> bool_var : bool;
6 var<private> i32_var : i32;
7 var<private> u32_var : u32;
8 var<private> f32_var : f32;
9 var<private> v2i32_var : vec2<i32>;
10 var<private> v3u32_var : vec3<u32>;
11 var<private> v4f32_var : vec4<f32>;
12 var<private> m2x3_var : mat2x3<f32>;
13 var<private> arr_var : array<f32, 4>;
14 var<private> struct_var : S;
Dmodule_scope_var_initializers.wgsl.expected.wgsl5 var<private> bool_var : bool = bool();
7 var<private> i32_var : i32 = i32();
9 var<private> u32_var : u32 = u32();
11 var<private> f32_var : f32 = f32();
13 var<private> v2i32_var : vec2<i32> = vec2<i32>();
15 var<private> v3u32_var : vec3<u32> = vec3<u32>();
17 var<private> v4f32_var : vec4<f32> = vec4<f32>();
19 var<private> m2x3_var : mat2x3<f32> = mat2x3<f32>();
21 var<private> arr_var : array<f32, 4> = array<f32, 4>();
23 var<private> struct_var : S = S();
Dmodule_scope_var_initializers.wgsl5 var<private> bool_var : bool = bool();
6 var<private> i32_var : i32 = i32();
7 var<private> u32_var : u32 = u32();
8 var<private> f32_var : f32 = f32();
9 var<private> v2i32_var : vec2<i32> = vec2<i32>();
10 var<private> v3u32_var : vec3<u32> = vec3<u32>();
11 var<private> v4f32_var : vec4<f32> = vec4<f32>();
12 var<private> m2x3_var : mat2x3<f32> = mat2x3<f32>();
13 var<private> arr_var : array<f32, 4> = array<f32, 4>();
14 var<private> struct_var : S = S();
/third_party/libnl/
DMakefile.am216 include/linux-private/linux/can/netlink.h \
217 include/linux-private/linux/fib_rules.h \
218 include/linux-private/linux/gen_stats.h \
219 include/linux-private/linux/genetlink.h \
220 include/linux-private/linux/if.h \
221 include/linux-private/linux/if_addr.h \
222 include/linux-private/linux/if_arp.h \
223 include/linux-private/linux/if_bridge.h \
224 include/linux-private/linux/if_ether.h \
225 include/linux-private/linux/if_link.h \
[all …]

12345678910>>...330