Home
last modified time | relevance | path

Searched refs:this (Results 1 – 25 of 12440) sorted by relevance

12345678910>>...498

/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 …]
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 …]
DparserRealSource14.types118 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
139 >this : this
[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 …]
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 …]
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 …]
DtypeofThis.types10 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 …]
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 …]
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 …]
DdivergentAccessorsVisibility1.types80 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 …]
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 …]
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 …]
DthisInPropertyBoundDeclarations.types30 this.name = name;
31 >this.name = name : string
32 >this.name : string
33 >this : this
39 // Valid use of this in a property bound decl
45 >function() { this; } : () => void
47 this;
48 >this : any
54 >function() { function inner() { this; } () => this; } : () => v…
59 this;
[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 …]
DthisTypeOfConstructorFunctions.types11 /** @type {this} */
12 this.dit = this
13 >this.dit = this : this
14 >this.dit : this
15 >this : this
16 >dit : this
17 >this : this
19 this.y = t
20 >this.y = t : T
21 >this.y : any
[all …]
Dautolift4.types13 return Math.sqrt(this.x*this.x + this.y*this.y);
14 >Math.sqrt(this.x*this.x + this.y*this.y) : number
18 >this.x*this.x + this.y*this.y : number
19 >this.x*this.x : number
20 >this.x : number
21 >this : this
23 >this.x : number
24 >this : this
26 >this.y*this.y : number
27 >this.y : number
[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 …]
DprivateNameFieldDestructuredBinding(target=es2022).types36 ({ x: this.#field, y } = this.testObject());
37 >({ x: this.#field, y } = this.testObject()) : { x: number; y: number; }
38 >{ x: this.#field, y } = this.testObject() : { x: number; y: number; }
39 >{ x: this.#field, y } : { x: number; y: number; }
41 >this.#field : number
42 >this : this
44 >this.testObject() : { x: number; y: number; }
45 >this.testObject : () => { x: number; y: number; }
46 >this : this
49 ([this.#field, y] = this.testArray());
[all …]
/third_party/node/src/
Dv8ustack.d86 #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; \
200 /!this->done && len > 0 && TWOBYTE_SEQSTR(attrs)/ \
202 this->i = 0; \
203 this->stbuf = (uint16_t *)alloca(MAX_TWOBYTESTR_BYTES + 2); \
205 MAX_TWOBYTESTR_BYTES, this->stbuf); \
[all …]
/third_party/protobuf/php/tests/
Dtest_base.php22 $this->assertSame(-42, $m->getOptionalInt32());
23 $this->assertSame(42, $m->getOptionalUint32());
24 $this->assertSame(-44, $m->getOptionalSint32());
25 $this->assertSame(46, $m->getOptionalFixed32());
26 $this->assertSame(-46, $m->getOptionalSfixed32());
27 $this->assertSame(1.5, $m->getOptionalFloat());
28 $this->assertSame(1.6, $m->getOptionalDouble());
29 $this->assertSame(true, $m->getOptionalBool());
30 $this->assertSame('a', $m->getOptionalString());
31 $this->assertSame('bbbb', $m->getOptionalBytes());
[all …]
DArrayTest.php23 $this->assertSame(MAX_INT32, $arr[0]);
25 $this->assertSame(MIN_INT32, $arr[1]);
28 $this->assertSame(1, $arr[2]);
30 $this->assertSame(MAX_INT32, $arr[3]);
32 $this->assertSame(MAX_INT32, $arr[4]);
35 $this->assertSame(2, $arr[5]);
37 $this->assertSame(3, $arr[6]);
39 $this->assertSame(MAX_INT32, $arr[7]);
41 $this->assertEquals(8, count($arr));
45 $this->assertSame(0, $arr[$i]);
[all …]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/
Dmtl_format_table_autogen.mm5 // 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/protobuf/php/src/Google/Protobuf/Internal/
DFileOptions.php289 return isset($this->java_package) ? $this->java_package : '';
294 return isset($this->java_package);
299 unset($this->java_package);
315 $this->java_package = $var;
317 return $this;
332 return isset($this->java_outer_classname) ? $this->java_outer_classname : '';
337 return isset($this->java_outer_classname);
342 unset($this->java_outer_classname);
359 $this->java_outer_classname = $var;
361 return $this;
[all …]
/third_party/node/deps/v8/tools/system-analyzer/view/timeline/
Dtimeline-track-base.mjs2 // 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/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DSmallVector.h96 void setEnd(T *P) { this->EndX = P; } in setEnd()
115 iterator begin() { return (iterator)this->BeginX; } in begin()
117 const_iterator begin() const { return (const_iterator)this->BeginX; } in begin()
119 iterator end() { return (iterator)this->EndX; } in end()
121 const_iterator end() const { return (const_iterator)this->EndX; } in end()
124 iterator capacity_ptr() { return (iterator)this->CapacityX; } in capacity_ptr()
125 const_iterator capacity_ptr() const { return (const_iterator)this->CapacityX;} in capacity_ptr()
212 if (LLVM_UNLIKELY(this->EndX >= this->CapacityX)) in push_back()
213 this->grow(); in push_back()
214 ::new ((void*) this->end()) T(Elt); in push_back()
[all …]

12345678910>>...498