Home
last modified time | relevance | path

Searched full:this (Results 1 – 25 of 21968) sorted by relevance

12345678910>>...879

/third_party/typescript/tests/baselines/reference/
DtypeRelationships.types5 self = this;
6 >self : this
7 >this : this
15 >foo : () => this
17 return this;
18 >this : this
23 this.c = this.self;
24 >this.c = this.self : this
25 >this.c : C
26 >this : this
[all …]
DparserRealSource14.types66 // This is helpful as our tree don't have parents.
118 clone.asts = this.asts.map((value) => { return value; });
119 >clone.asts = this.asts.map((value) => { return value; }) : any[]
123 >this.asts.map((value) => { return value; }) : any[]
124 >this.asts.map : <U>(callbackfn: (value: any, index: number, array: any[]) => U, thisArg?: any) => …
125 >this.asts : any[]
126 >this : this
133 clone.top = this.top;
134 >clone.top = this.top : number
138 >this.top : number
[all …]
DthisTypeInClasses.types5 x: this;
6 >x : this
8 f(x: this): this { return undefined; }
9 >f : (x: this) => this
10 >x : this
17 [x: string]: this;
25 y: this;
26 >y : this
32 a: this[];
33 >a : this[]
[all …]
DprivateNameFieldUnaryMutation.types10 this.#test++;
11 >this.#test++ : number
12 >this.#test : number
13 >this : this
15 this.#test--;
16 >this.#test-- : number
17 >this.#test : number
18 >this : this
20 ++this.#test;
21 >++this.#test : number
[all …]
DcommentsFormatting.js3 /** this is first line - aligned to class declaration
4 * this is 4 spaces left aligned
5 * this is 3 spaces left aligned
6 * this is 2 spaces left aligned
7 * this is 1 spaces left aligned
8 * this is at same level as first line
9 * this is 1 spaces right aligned
10 * this is 2 spaces right aligned
11 * this is 3 spaces right aligned
12 * this is 4 spaces right aligned
[all …]
DparserRealSource14.js22 // This is helpful as our tree don't have parents.
34 clone.asts = this.asts.map((value) => { return value; });
35 clone.top = this.top;
40 var head = this.ast();
41 this.up();
43 while (this.asts.length > this.count()) {
44 this.asts.pop();
50 while (this.asts.length > this.count()) {
51 this.asts.pop();
53 this.top = this.asts.length;
[all …]
DtypeFromPrototypeAssignment2.types5this._map = {}; this._map this.set this.get this.addon }; Multim…
6this._map = {}; this._map this.set this.get this.addon }; Multim…
12 >function() { this._map = {}; this._map this.set this.get this.a…
14 this._map = {};
15 >this._map = {} : {}
16 >this._map : any
17 >this : this
21 this._map
22 >this._map : {}
23 >this : this
[all …]
DdeclarationFiles.types5 x: this;
6 >x : this
8 f(x: this): this { return undefined; }
9 >f : (x: this) => this
10 >x : this
13 constructor(x: this) { }
20 [x: string]: this;
28 y: this;
29 >y : this
35 a: this[];
[all …]
DtypeOfThis.types12 //type of 'this' in constructor body is the class instance type
13 var p = this.canary;
15 >this.canary : number
16 >this : this
22 this.canary = 3;
23 >this.canary = 3 : 3
24 >this.canary : number
25 >this : this
30 //type of 'this' in member function param list is the class instance type
31 memberFunc(t = this) {
[all …]
DtypeFromJSConstructor.types6 this.arg = 0
7 >this.arg = 0 : 0
8 >this.arg : any
9 >this : this
14 this.unknown = null
15 >this.unknown = null : null
16 >this.unknown : any
17 >this : this
22 this.twice = undefined
23 >this.twice = undefined : undefined
[all …]
DjsFunctionWithPrototypeNoErrorTruncationNoCrash.types6 this.example = true
7 >this.example = true : true
8 >this.example : any
9 >this : this
15this;}, lighten: function (ratio) {return this;}, darken: function (ratio) {return this;}, saturat…
16this; lighten: (ratio: any) => this; darken: (ratio: any) => this; saturate: (ratio: any) => this;…
18this; lighten: (ratio: any) => this; darken: (ratio: any) => this; saturate: (ratio: any) => this;…
19this;}, lighten: function (ratio) {return this;}, darken: function (ratio) {return this;}, saturat…
21 negate: function () {return this;},
22 >negate : () => this
[all …]
DparserSyntaxWalker.generated.symbols3 No type information for this code.// export class File {
4 No type information for this code.// constructor(filename: string);
5 No type information for this code.// public ReadAllText(): string;
6 No type information for this code.// }
7 No type information for this code.// export interface IFile {
8 No type information for this code.// [index: number]: string;
9 No type information for this code.// }
10 No type information for this code.//}
11 No type information for this code.
12 No type information for this code.//import fs = module("fs");
[all …]
DparserSyntaxWalker.generated.types3 No type information for this code.// export class File {
4 No type information for this code.// constructor(filename: string);
5 No type information for this code.// public ReadAllText(): string;
6 No type information for this code.// }
7 No type information for this code.// export interface IFile {
8 No type information for this code.// [index: number]: string;
9 No type information for this code.// }
10 No type information for this code.//}
11 No type information for this code.
12 No type information for this code.//import fs = module("fs");
[all …]
DthisTypeInFunctions.types15 explicitThis(this: this, m: number): number {
16 >explicitThis : (this: this, m: number) => number
17 >this : this
20 return this.n + m;
21 >this.n + m : number
22 >this.n : number
23 >this : this
27 explicitC(this: C, m: number): number {
28 >explicitC : (this: C, m: number) => number
29 >this : C
[all …]
DnonNullReferenceMatching.types32this.props.thumbYProps!.elementRef === 'function' && this.props.thumbYProps!.elementRef(ref); …
36 …typeof this.props.thumbYProps!.elementRef === 'function' && this.props.thumbYProps!.elementRef(ref…
37 >typeof this.props.thumbYProps!.elementRef === 'function' && this.props.thumbYProps!.elementRef(ref…
38 >typeof this.props.thumbYProps!.elementRef === 'function' : boolean
39 >typeof this.props.thumbYProps!.elementRef : "string" | "number" | "bigint" | "boolean" | "symbol" …
40 >this.props.thumbYProps!.elementRef : ElementRef | undefined
41 >this.props.thumbYProps! : ThumbProps
42 >this.props.thumbYProps : ThumbProps | undefined
43 >this.props : ComponentProps
44 >this : this
[all …]
DtypeFromPrototypeAssignment.types7 >function() { this._map = {}; this._map this.set this.get this.addon} : typeof Multi…
9 this._map = {};
10 >this._map = {} : {}
11 >this._map : any
12 >this : this
16 this._map
17 >this._map : {}
18 >this : this
21 this.set
22 >this.set : () => void
[all …]
DparserRealSource11.types77 public isLeaf() { return this.isStatementOrExpression() && (!this.isCompoundStatement()); }
79 >this.isStatementOrExpression() && (!this.isCompoundStatement()) : boolean
80 >this.isStatementOrExpression() : boolean
81 >this.isStatementOrExpression : () => boolean
82 >this : this
84 >(!this.isCompoundStatement()) : boolean
85 >!this.isCompoundStatement() : boolean
86 >this.isCompoundStatement() : boolean
87 >this.isCompoundStatement : () => boolean
88 >this : this
[all …]
DthisTypeInFunctionsNegative.types8 explicitThis(this: this, m: number): number {
9 >explicitThis : (this: this, m: number) => number
10 >this : this
13 return this.n + m;
14 >this.n + m : number
15 >this.n : number
16 >this : this
24 return this.n + m;
25 >this.n + m : number
26 >this.n : number
[all …]
/third_party/curl/tests/data/
Dtest106117 # this is returned first since we get no proxy-auth
25 And you should ignore this data. aaaaaaaaaaaaaaaa
26 And you should ignore this data. aaaaaaaaaaaaaaaa
27 And you should ignore this data. aaaaaaaaaaaaaaaa
28 And you should ignore this data. aaaaaaaaaaaaaaaa
29 And you should ignore this data. aaaaaaaaaaaaaaaa
30 And you should ignore this data. aaaaaaaaaaaaaaaa
31 And you should ignore this data. aaaaaaaaaaaaaaaa
32 And you should ignore this data. aaaaaaaaaaaaaaaa
33 And you should ignore this data. aaaaaaaaaaaaaaaa
[all …]
Dtest106016 # this is returned first since we get no proxy-auth
23 And you should ignore this data. aaaaaaaaaaaaaaaa
24 And you should ignore this data. aaaaaaaaaaaaaaaa
25 And you should ignore this data. aaaaaaaaaaaaaaaa
26 And you should ignore this data. aaaaaaaaaaaaaaaa
27 And you should ignore this data. aaaaaaaaaaaaaaaa
28 And you should ignore this data. aaaaaaaaaaaaaaaa
29 And you should ignore this data. aaaaaaaaaaaaaaaa
30 And you should ignore this data. aaaaaaaaaaaaaaaa
31 And you should ignore this data. aaaaaaaaaaaaaaaa
[all …]
/third_party/node/deps/npm/node_modules/tar/lib/
Dwrite-entry.js51 this.path = normPath(p)
53 this.portable = !!opt.portable
54 // until node has builtin pwnam functions, this'll have to do
55 this.myuid = process.getuid && process.getuid() || 0
56 this.myuser = process.env.USER || ''
57 this.maxReadSize = opt.maxReadSize || maxReadSize
58 this.linkCache = opt.linkCache || new Map()
59 this.statCache = opt.statCache || new Map()
60 this.preservePaths = !!opt.preservePaths
61 this.cwd = normPath(opt.cwd || process.cwd())
[all …]
/third_party/boost/libs/math/dot_net_example/distribution_explorer/
DDistexForm.Designer.cs27 /// the contents of this method with the code editor.
31 this.components = new System.ComponentModel.Container(); in InitializeComponent()
33 this.modeLabel = new System.Windows.Forms.Label(); in InitializeComponent()
34 this.propertiesTab = new System.Windows.Forms.TabControl(); in InitializeComponent()
35 this.DistributionTab = new System.Windows.Forms.TabPage(); in InitializeComponent()
36 this.parameter3 = new System.Windows.Forms.TextBox(); in InitializeComponent()
37 this.parameter3Label = new System.Windows.Forms.Label(); in InitializeComponent()
38 this.distributionNameLabel = new System.Windows.Forms.Label(); in InitializeComponent()
39 this.parameter2Label = new System.Windows.Forms.Label(); in InitializeComponent()
40 this.parameter1Label = new System.Windows.Forms.Label(); in InitializeComponent()
[all …]
/third_party/flatbuffers/tests/my-game/example/
Dmonster.js19 this.bb = null;
20 this.bb_pos = 0;
23 this.bb_pos = i;
24 this.bb = bb;
25 return this;
38 const offset = this.bb.__offset(this.bb_pos, 4);
39 return offset ? (obj || new Vec3()).__init(this.bb_pos + offset, this.bb) : null;
42 const offset = this.bb.__offset(this.bb_pos, 6);
43 return offset ? this.bb.readInt16(this.bb_pos + offset) : 150;
46 const offset = this.bb.__offset(this.bb_pos, 6);
[all …]
Dmonster.ts27 this.bb_pos = i;
28 this.bb = bb;
29 return this;
46 const offset = this.bb!.__offset(this.bb_pos, 4);
47 return offset ? (obj || new Vec3()).__init(this.bb_pos + offset, this.bb!) : null;
51 const offset = this.bb!.__offset(this.bb_pos, 6);
52 return offset ? this.bb!.readInt16(this.bb_pos + offset) : 150;
56 const offset = this.bb!.__offset(this.bb_pos, 6);
62 this.bb!.writeInt16(this.bb_pos + offset, value);
67 const offset = this.bb!.__offset(this.bb_pos, 8);
[all …]
/third_party/typescript/tests/cases/conformance/parser/ecmascript5/
DparserRealSource14.ts21 // This is helpful as our tree don't have parents.
33 clone.asts = this.asts.map((value) => { return value; });
34 clone.top = this.top;
39 var head = this.ast();
40 this.up();
42 while (this.asts.length > this.count()) {
43 this.asts.pop();
49 while (this.asts.length > this.count()) {
50 this.asts.pop();
52 this.top = this.asts.length;
[all …]

12345678910>>...879