Home
last modified time | relevance | path

Searched refs:_foo (Results 1 – 25 of 41) sorted by relevance

12

/third_party/typescript/tests/baselines/reference/
Dthis_inside-object-literal-getters-and-setters.types6 >ThisInObjectLiteral : { _foo: string; foo: string; test: () => any; }
7_foo: '1', get foo(): string { return this._foo; }, set foo(value:…
9 _foo: '1',
10 >_foo : string
16 return this._foo;
17 >this._foo : any
19 >_foo : any
26 this._foo = value;
27 >this._foo = value : string
28 >this._foo : any
[all …]
Dsuper_inside-object-literal-getters-and-setters.types6 >ThisInObjectLiteral : { _foo: string; foo: string; test: () => any; }
7_foo: '1', get foo(): string { return super._foo; }, set foo(value…
9 _foo: '1',
10 >_foo : string
16 return super._foo;
17 >super._foo : any
19 >_foo : any
26 super._foo = value;
27 >super._foo = value : string
28 >super._foo : any
[all …]
Dthis_inside-object-literal-getters-and-setters.js4 _foo: '1', property
6 return this._foo;
9 this._foo = value;
12 return this._foo;
23 _foo: '1', property
25 return this._foo;
28 this._foo = value;
31 return this._foo;
Dsuper_inside-object-literal-getters-and-setters.js4 _foo: '1', property
6 return super._foo;
9 super._foo = value;
12 return super._foo;
49 _foo: '1', property
51 return _super._foo;
54 _super._foo = value;
57 return _super._foo;
Dthis_inside-object-literal-getters-and-setters.symbols8 _foo: '1',
9 >_foo : Symbol(_foo, Decl(this_inside-object-literal-getters-and-setters.ts, 1, 31))
14 return this._foo;
20 this._foo = value;
27 return this._foo;
DnarrowingTypeofObject.types4 function test(x: number & { _foo: string }) {
5 >test : (x: number & { _foo: string;}) => void
6 >x : number & { _foo: string; }
7 >_foo : string
12 >x : number & { _foo: string; }
Dsuper_inside-object-literal-getters-and-setters.symbols8 _foo: '1',
9 >_foo : Symbol(_foo, Decl(super_inside-object-literal-getters-and-setters.ts, 1, 31))
14 return super._foo;
20 super._foo = value;
27 return super._foo;
DnarrowingTypeofFunction.types46 function f3(x: { _foo: number } & number) {
47 >f3 : (x: { _foo: number;} & number) => void
48 >x : { _foo: number; } & number
49 >_foo : number
54 >x : { _foo: number; } & number
Dthis_inside-object-literal-getters-and-setters.errors.txt8 _foo: '1',
12 return this._foo;
17 this._foo = value;
20 return this._foo;
DnarrowingTypeofObject.symbols5 function test(x: number & { _foo: string }) {
8 >_foo : Symbol(_foo, Decl(narrowingTypeofObject.ts, 2, 27))
Dsuper_inside-object-literal-getters-and-setters.errors.txt13 _foo: '1',
17 return super._foo;
24 super._foo = value;
29 return super._foo;
DnarrowingTypeofFunction.symbols47 function f3(x: { _foo: number } & number) {
50 >_foo : Symbol(_foo, Decl(narrowingTypeofFunction.ts, 21, 16))
DnarrowingTypeofObject.js4 function test(x: number & { _foo: string }) { property
DnarrowingTypeofFunction.js23 function f3(x: { _foo: number } & number) { property
/third_party/typescript/tests/cases/compiler/
Dthis_inside-object-literal-getters-and-setters.ts3 _foo: '1',
5 return this._foo;
8 this._foo = value;
11 return this._foo;
Dsuper_inside-object-literal-getters-and-setters.ts3 _foo: '1',
5 return super._foo;
8 super._foo = value;
11 return super._foo;
DnarrowingTypeofObject.ts5 function test(x: number & { _foo: string }) {
DnarrowingTypeofFunction.ts24 function f3(x: { _foo: number } & number) {
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/classes/property_member_declarations/member_accessor_declarations/
Dmember_accessor_declarations.ts26 private _foo: number = 0; property in A
28 return this._foo;
31 this._foo = value;
/third_party/rust/crates/clap/tests/derive/
Dnaming.rs222 _foo: bool, in test_standalone_short_works_with_verbatim_casing() field
226 Opt { _foo: true }, in test_standalone_short_works_with_verbatim_casing()
/third_party/python/Lib/test/
Dtest_inspect.py2803 _foo = partial(partial(foo, a=10), a=20)
2804 self.assertEqual(self.signature(_foo),
2809 self.assertEqual(_foo(), 20)
2813 _foo = partial(partial(foo, 1, b=20), b=30)
2815 self.assertEqual(self.signature(_foo),
2819 self.assertEqual(_foo(c=10), (1, 30, 10))
2823 _foo = partial(partial(foo, d=20, c=20), b=10, d=30)
2824 self.assertEqual(self.signature(_foo),
2831 ba = inspect.signature(_foo).bind(a=200, b=11)
2832 self.assertEqual(_foo(*ba.args, **ba.kwargs), (200, 11, 20, 30))
[all …]
/third_party/PyYAML/tests/data/
Dconstruct-python-object.data7 - !!python/object:test_constructor.AState { _foo: 1, _bar: two, _baz: [3,3,3] }
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DREADME.txt192 _foo:
201 _foo:
331 _foo:
342 _foo:
358 _foo:
543 _foo:
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DREADME.txt470 _foo:
808 _foo:
814 _foo:
1309 _foo:
1543 _foo:
1551 _foo:
1611 _foo: ## @foo
1642 _foo:
/third_party/rust/crates/bindgen/bindgen-integration/src/
Dlib.rs250 let _foo = bindings::foo { in test_item_rename() localVariable

12