Searched full:this (Results 1 – 25 of 16144) sorted by relevance
12345678910>>...646
| /third_party/typescript/tests/baselines/reference/ |
| D | typeRelationships.types | 5 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 …]
|
| D | parserRealSource14.types | 66 // 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; }) : TypeScript.AST[] 123 >this.asts.map((value) => { return value; }) : TypeScript.AST[] 124 >this.asts.map : <U>(callbackfn: (value: TypeScript.AST, index: number, array: TypeScript.AST[]) =>… 125 >this.asts : TypeScript.AST[] 126 >this : this 133 clone.top = this.top; 134 >clone.top = this.top : number 138 >this.top : number [all …]
|
| D | privateNameFieldUnaryMutation.types | 10 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 …]
|
| D | thisTypeInClasses.types | 5 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 …]
|
| D | parserRealSource14.js | 22 // 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 …]
|
| D | commentsFormatting.js | 3 /** 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 …]
|
| D | typeofThis.types | 10 var copy: typeof this.data = {}; 12 >this.data : {} 13 >this : this 28 ['this'] = ''; 29 >['this'] : string 30 >'this' : "this" 34 var copy: typeof this.data = { foo: '' }; 36 >this.data : { foo: string; } 37 >this : this 43 var foo: typeof this.data.foo = ''; [all …]
|
| D | typeFromPrototypeAssignment2.types | 5 …this._map = {}; this._map this.set this.get this.addon }; Multim… 6 …this._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 …]
|
| D | divergentAccessorsVisibility1.types | 80 this.PublicPublic = 0; 81 >this.PublicPublic = 0 : 0 82 >this.PublicPublic : number 83 >this : this 87 this.PublicProtected = 0; 88 >this.PublicProtected = 0 : 0 89 >this.PublicProtected : number 90 >this : this 94 this.PublicPrivate = 0; 95 >this.PublicPrivate = 0 : 0 [all …]
|
| D | typeOfThisGeneral.types | 12 //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 …]
|
| D | thisTypeInFunctions.types | 15 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 …]
|
| D | parserRealSource11.types | 77 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 …]
|
| D | declarationFiles.types | 5 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 …]
|
| D | thisTypeInFunctionsNegative.types | 8 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 …]
|
| D | typeFromJSConstructor.types | 6 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 …]
|
| D | nonNullReferenceMatching.types | 32 …this.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 …]
|
| D | jsFunctionWithPrototypeNoErrorTruncationNoCrash.types | 6 this.example = true 7 >this.example = true : true 8 >this.example : any 9 >this : this 15 …this;}, lighten: function (ratio) {return this;}, darken: function (ratio) {return this;}, saturat… 16 …this; lighten: (ratio: any) => this; darken: (ratio: any) => this; saturate: (ratio: any) => this;… 18 …this; lighten: (ratio: any) => this; darken: (ratio: any) => this; saturate: (ratio: any) => this;… 19 …this;}, lighten: function (ratio) {return this;}, darken: function (ratio) {return this;}, saturat… 21 negate: function () {return this;}, 22 >negate : () => this [all …]
|
| /third_party/curl/tests/data/ |
| D | test1061 | 17 # 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 …]
|
| D | test1060 | 16 # 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/ |
| D | write-entry.js | 51 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/typescript/tests/cases/conformance/parser/ecmascript5/ |
| D | parserRealSource14.ts | 21 // 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 …]
|
| /third_party/node/deps/v8/tools/system-analyzer/view/timeline/ |
| D | timeline-track-base.mjs | 2 // Use of this source code is governed by a BSD-style license that can be 27 this._selectionHandler = new SelectionHandler(this); 28 this._legend = new Legend(this.$('#legendTable')); 30 this.timelineChunks = this.$('#timelineChunks'); 31 this.timelineSamples = this.$('#timelineSamples'); 32 this.timelineNode = this.$('#timeline'); 33 this.toolTipTargetNode = this.$('#toolTipTarget'); 34 this.hitPanelNode = this.$('#hitPanel'); 35 this.timelineAnnotationsNode = this.$('#timelineAnnotations'); 36 this.timelineMarkersNode = this.$('#timelineMarkers'); [all …]
|
| /third_party/node/src/ |
| D | v8ustack.d | 4 * describing the current function. We do this by chasing pointers to extract 86 #define APPEND_CHR(c) (this->buf[this->off++] = (c)) 150 this->map = V8_MAP_PTR(COPYIN_PTR(str + V8_OFF_HEAPOBJ_MAP)); \ 151 attrs = COPYIN_UINT8(this->map + V8_OFF_MAP_ATTRS); 163 /!this->done && len > 0 && ASCII_SEQSTR(attrs)/ \ 165 copyinto(str + V8_OFF_STR_CHARS, len, this->buf + this->off); \ 166 this->off += len; \ 172 * thing 4 and 8 times, respectively. Like much of the rest of the code in this 173 * file, this is regrettably necessary given the constraints under which we're 200 /!this->done && len > 0 && TWOBYTE_SEQSTR(attrs)/ \ [all …]
|
| /third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/ |
| D | mtl_format_table_autogen.mm | 5 // Use of this source code is governed by a BSD-style license that can be 302 this->intendedFormatId = intendedFormatId_; 307 switch (this->intendedFormatId) 311 this->metalFormat = MTLPixelFormatA8Unorm; 312 this->actualFormatId = angle::FormatID::A8_UNORM; 313 this->initFunction = nullptr; 315 this->swizzled = false; 320 this->metalFormat = MTLPixelFormatBGR10A2Unorm; 321 this->actualFormatId = angle::FormatID::B10G10R10A2_UNORM; 322 this->initFunction = nullptr; [all …]
|
| /third_party/node/lib/internal/readline/ |
| D | interface.js | 134 this[kSawReturnAt] = 0; 135 // TODO(BridgeAR): Document this property. The name is not ideal, so we 137 this.isCompletionEnabled = true; 138 this[kSawKeyPress] = false; 139 this[kPreviousKey] = null; 140 this.escapeCodeTimeout = ESCAPE_CODE_TIMEOUT; 141 this.tabSize = 8; 143 FunctionPrototypeCall(EventEmitter, this); 162 this.tabSize = input.tabSize; 170 this.escapeCodeTimeout = input.escapeCodeTimeout; [all …]
|
12345678910>>...646