/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 | 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 | parserRealSource14.types | 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 139 >this : this [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 | 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 | 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 | 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 …]
|
D | typeFromPrototypeAssignment.types | 7 >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 …]
|
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 | thisInPropertyBoundDeclarations.types | 30 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 …]
|
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 | autolift4.types | 13 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 …]
|
D | thisInConstructorParameter2.types | 5 x = this; 6 >x : this 7 >this : this 9 static y = this; 11 >this : typeof P 13 constructor(public z = this, zz = this, zzz = (p = this) => this) { 14 >z : this 15 >this : this 16 >zz : this 17 >this : 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 | thisTypeOfConstructorFunctions.types | 11 /** @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 …]
|
D | privateNameFieldDestructuredBinding(target=esnext).types | 36 ({ 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 …]
|
D | privateNameFieldDestructuredBinding(target=es2015).types | 36 ({ 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/ |
D | v8ustack.d | 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; \ 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/ |
D | test_base.php | 22 $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 …]
|
/third_party/grpc/src/php/tests/unit_tests/ |
D | ChannelTest.php | 28 if (!empty($this->channel)) { 29 $this->channel->close(); 35 $this->channel = new Grpc\Channel('localhost:50000', 37 $this->assertSame('Grpc\Channel', get_class($this->channel)); 44 $this->assertNotNull($channel); 52 $this->assertNotNull($xdsCreds); 59 $this->assertNotNull($xdsCreds); 63 $this->expectException(\InvalidArgumentException::class); 68 $this->expectException(\TypeError::class); 74 $this->channel = new Grpc\Channel('localhost:50001', [all …]
|
/third_party/grpc/src/php/tests/unit_tests/PersistentChannelTests/ |
D | PersistentChannelTest.php | 46 $this->assertTrue(false); 50 $this->assertTrue($state == GRPC\CHANNEL_CONNECTING || 64 $this->channel1 = new Grpc\Channel('localhost:1', ['force_new' => true]); 65 $channel1_info = $this->channel1->getChannelInfo(); 66 $plist_info = $this->channel1->getPersistentList(); 67 $this->assertEquals($channel1_info['target'], 'localhost:1'); 68 $this->assertEquals($channel1_info['ref_count'], 1); 69 $this->assertEquals($channel1_info['connectivity_status'], 71 $this->assertEquals(count($plist_info), 0); 72 $this->channel1->close(); [all …]
|
/third_party/mesa3d/src/gallium/drivers/swr/rasterizer/core/ |
D | pa.h | 194 bool HasWork() { return (this->numPrimsComplete < this->numPrims) ? true : false; } in HasWork() 216 bool Assemble(uint32_t slot, simdvector verts[]) { return this->pfnPaFunc(*this, slot, verts); } in Assemble() 221 return this->pfnPaFunc_simd16(*this, slot, verts); in Assemble() 228 return this->pfnPaSingleFunc(*this, slot, primIndex, verts); in AssembleSingle() 233 this->pfnPaFunc = this->pfnPaNextFunc; in NextPrim() 235 this->pfnPaFunc_simd16 = this->pfnPaNextFunc_simd16; in NextPrim() 237 this->numSimdPrims = this->nextNumSimdPrims; in NextPrim() 238 this->numPrimsComplete += this->nextNumPrimsIncrement; in NextPrim() 239 this->reset = this->nextReset; in NextPrim() 241 if (this->isStreaming) in NextPrim() [all …]
|
/third_party/flatbuffers/php/ |
D | FlatbufferBuilder.php | 94 $this->space = $initial_size; 95 $this->bb = $this->newByteBuffer($initial_size); 117 return $this->bb->capacity() - $this->space; 128 $this->bb->putByte(--$this->space, "\0"); 141 if ($size > $this->minalign) { 142 $this->minalign = $size; 145 … $align_size = ((~($this->bb->capacity() - $this->space + $additional_bytes)) + 1) & ($size - 1); 146 while ($this->space < $align_size + $size + $additional_bytes) { 147 $old_buf_size = $this->bb->capacity(); 148 $this->bb = $this->growByteBuffer($this->bb); [all …]
|
/third_party/protobuf/php/src/Google/Protobuf/Internal/ |
D | FileOptions.php | 289 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/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 …]
|