/third_party/typescript/tests/baselines/reference/ |
D | typeFromPropertyAssignment25.types | 2 var Common = {}; 3 >Common : typeof Common 6 Common.I = class { 7 >Common.I = class { constructor() { this.i = 1 }} : typeof I 8 >Common.I : typeof I 9 >Common : typeof Common 22 Common.O = class extends Common.I { 23 >Common.O = class extends Common.I { constructor() { super() this.o = 2 }} : ty… 24 >Common.O : typeof O 25 >Common : typeof Common [all …]
|
D | typeFromPropertyAssignment25.symbols | 2 var Common = {}; 3 >Common : Symbol(Common, Decl(bug24703.js, 0, 3), Decl(bug24703.js, 0, 16), Decl(bug24703.js, 5, 1)) 5 Common.I = class { 6 >Common.I : Symbol(Common.I, Decl(bug24703.js, 0, 16)) 7 >Common : Symbol(Common, Decl(bug24703.js, 0, 3), Decl(bug24703.js, 0, 16), Decl(bug24703.js, 5, 1)) 8 >I : Symbol(Common.I, Decl(bug24703.js, 0, 16)) 17 Common.O = class extends Common.I { 18 >Common.O : Symbol(Common.O, Decl(bug24703.js, 5, 1)) 19 >Common : Symbol(Common, Decl(bug24703.js, 0, 3), Decl(bug24703.js, 0, 16), Decl(bug24703.js, 5, 1)) 20 >O : Symbol(Common.O, Decl(bug24703.js, 5, 1)) [all …]
|
D | jsElementAccessNoContextualTypeCrash.types | 2 var Common = {}; 3 >Common : typeof Common 6 self['Common'] = self['Common'] || {}; 7 >self['Common'] = self['Common'] || {} : {} 8 >self['Common'] : typeof Common 10 >'Common' : "Common" 11 >self['Common'] || {} : {} 12 >self['Common'] : typeof Common 14 >'Common' : "Common" 21 Common.localize = function (string) { [all …]
|
D | jsElementAccessNoContextualTypeCrash.symbols | 2 var Common = {}; 3 >Common : Symbol(Common, Decl(jsElementAccessNoContextualTypeCrash.js, 0, 3), Decl(jsElementAccessN… 5 self['Common'] = self['Common'] || {}; 7 >'Common' : Symbol(Common, Decl(jsElementAccessNoContextualTypeCrash.js, 0, 3), Decl(jsElementAcces… 9 >'Common' : Symbol(Common, Decl(jsElementAccessNoContextualTypeCrash.js, 0, 3), Decl(jsElementAcces… 15 Common.localize = function (string) { 16 >Common.localize : Symbol(Common.localize, Decl(jsElementAccessNoContextualTypeCrash.js, 1, 38)) 17 >Common : Symbol(Common, Decl(jsElementAccessNoContextualTypeCrash.js, 0, 3), Decl(jsElementAccessN… 18 >localize : Symbol(Common.localize, Decl(jsElementAccessNoContextualTypeCrash.js, 1, 38))
|
D | typeFromPropertyAssignmentOutOfOrder.types | 10 Common.Object = class extends First.Item {} 11 >Common.Object = class extends First.Item {} : typeof Object 12 >Common.Object : typeof Object 13 >Common : typeof Common 20 Workspace.Object = class extends Common.Object {} 21 >Workspace.Object = class extends Common.Object {} : typeof Object 25 >class extends Common.Object {} : typeof Object 26 >Common.Object : Object 27 >Common : typeof Common 39 var Common = {}; [all …]
|
D | typeFromPropertyAssignmentOutOfOrder.symbols | 8 Common.Object = class extends First.Item {} 9 >Common.Object : Symbol(Common.Object, Decl(index.js, 0, 23)) 10 >Common : Symbol(Common, Decl(index.js, 0, 23), Decl(roots.js, 1, 3)) 11 >Object : Symbol(Common.Object, Decl(index.js, 0, 23)) 16 Workspace.Object = class extends Common.Object {} 20 >Common.Object : Symbol(Common.Object, Decl(index.js, 0, 23)) 21 >Common : Symbol(Common, Decl(index.js, 0, 23), Decl(roots.js, 1, 3)) 22 >Object : Symbol(Common.Object, Decl(index.js, 0, 23)) 32 var Common = {}; 33 >Common : Symbol(Common, Decl(index.js, 0, 23), Decl(roots.js, 1, 3))
|
D | errorMessageOnIntersectionsWithDiscriminants01.symbols | 2 export type Common = { test: true } | { test: false }; 3 >Common : Symbol(Common, Decl(errorMessageOnIntersectionsWithDiscriminants01.ts, 0, 0)) 7 export type A = Common & { foo: 1 }; 9 >Common : Symbol(Common, Decl(errorMessageOnIntersectionsWithDiscriminants01.ts, 0, 0)) 12 export type B = Common & { bar: 1 }; 14 >Common : Symbol(Common, Decl(errorMessageOnIntersectionsWithDiscriminants01.ts, 0, 0))
|
D | jsElementAccessNoContextualTypeCrash.errors.txt | 1 …1): error TS2741: Property 'localize' is missing in type '{}' but required in type 'typeof Common'. 5 var Common = {}; 6 self['Common'] = self['Common'] || {}; 8 !!! error TS2741: Property 'localize' is missing in type '{}' but required in type 'typeof Common'. 14 Common.localize = function (string) {
|
D | errorMessageOnIntersectionsWithDiscriminants01.types | 2 export type Common = { test: true } | { test: false }; 3 >Common : Common 9 export type A = Common & { foo: 1 }; 13 export type B = Common & { bar: 1 };
|
/third_party/pcre2/pcre2/maint/Unicode.tables/ |
D | Scripts.txt | 27 0000..001F ; Common # Cc [32] <control-0000>..<control-001F> 28 0020 ; Common # Zs SPACE 29 0021..0023 ; Common # Po [3] EXCLAMATION MARK..NUMBER SIGN 30 0024 ; Common # Sc DOLLAR SIGN 31 0025..0027 ; Common # Po [3] PERCENT SIGN..APOSTROPHE 32 0028 ; Common # Ps LEFT PARENTHESIS 33 0029 ; Common # Pe RIGHT PARENTHESIS 34 002A ; Common # Po ASTERISK 35 002B ; Common # Sm PLUS SIGN 36 002C ; Common # Po COMMA [all …]
|
/third_party/rust/crates/clap/tests/derive/ |
D | flatten.rs | 22 struct Common { in flatten() struct 29 common: Common, in flatten() 33 common: Common { arg: 42 } in flatten() 46 struct Common { in flatten_twice() struct 53 c1: Common, in flatten_twice() 56 c2: Common, in flatten_twice() 64 struct Common { in flatten_in_subcommand() struct 73 common: Common, in flatten_in_subcommand() 82 common: Common, in flatten_in_subcommand() 91 common: Common { arg: 42 } in flatten_in_subcommand() [all …]
|
/third_party/typescript/tests/cases/conformance/salsa/ |
D | typeFromPropertyAssignment25.ts | 5 var Common = {}; variable 6 Common.I = class { 11 Common.O = class extends Common.I { 17 var o = new Common.O() 18 var i = new Common.I()
|
D | typeFromPropertyAssignmentOutOfOrder.ts | 7 Common.Object = class extends First.Item {} 9 Workspace.Object = class extends Common.Object {} 16 var Common = {}; variable
|
/third_party/openssl/test/ |
D | proxy.cnf | 17 0.commonName = Common Name (eg, YOUR name) 19 1.commonName = Common Name (eg, YOUR name) 21 2.commonName = Common Name (eg, YOUR name) 42 0.commonName = Common Name (eg, YOUR name) 44 1.commonName = Common Name (eg, YOUR name) 46 2.commonName = Common Name (eg, YOUR name) 48 3.commonName = Common Name (eg, YOUR name)
|
/third_party/python/Include/ |
D | pydtrace.d | 18 #pragma D attributes Evolving/Evolving/Common provider python provider 19 #pragma D attributes Evolving/Evolving/Common provider python module 20 #pragma D attributes Evolving/Evolving/Common provider python function 21 #pragma D attributes Evolving/Evolving/Common provider python name 22 #pragma D attributes Evolving/Evolving/Common provider python args
|
/third_party/ffmpeg/doc/ |
D | t2h.pm | 51 if ($Texinfo::Common::root_commands{$command->{'cmdname'}} 85 if ($Texinfo::Common::root_commands{$cmdname} 86 and $Texinfo::Common::sectioning_commands{$cmdname}) { 111 and $heading_level ne $Texinfo::Common::command_structuring_level{$cmdname}) { 113 = $Texinfo::Common::level_to_structuring_command{$cmdname}->[$heading_level]; 125 foreach my $command (keys(%Texinfo::Common::sectioning_commands), 'node') { 245 my ($caption, $prepended) = Texinfo::Common::float_name_caption($self,
|
/third_party/typescript/tests/cases/compiler/ |
D | errorMessageOnIntersectionsWithDiscriminants01.ts | 3 export type Common = { test: true } | { test: false }; alias 4 export type A = Common & { foo: 1 }; 5 export type B = Common & { bar: 1 };
|
/third_party/vk-gl-cts/external/vulkan-docs/src/chapters/commonvalidity/ |
D | buffer_copy_common.txt | 5 // Common Valid Usage 6 // Common to VkBufferCopy* struct 9 // Common Valid Usage
|
D | buffer_copy_common.adoc | 5 // Common Valid Usage 6 // Common to VkBufferCopy* struct 9 // Common Valid Usage
|
D | draw_indexed_common.adoc | 5 // Common Valid Usage 6 // Common to drawing commands that are indexed 9 // Common Valid Usage
|
D | trace_rays_binding_table_raygen_stride.adoc | 5 // Common Valid Usage 6 // Common to KHR trace rays commands with non-indirect SBT 12 // Common Valid Usage
|
D | surface_physical_device_common.txt | 5 // Common Valid Usage 6 // Common to all VkPhysicalDevice commands accepting a VkSurfaceKHR param 13 // Common Valid Usage
|
D | trace_rays_common.txt | 5 // Common Valid Usage 6 // Common to trace rays commands 13 // Common Valid Usage
|
D | trace_rays_common.adoc | 5 // Common Valid Usage 6 // Common to trace rays commands 13 // Common Valid Usage
|
D | surface_info_physical_device_common.txt | 5 // Common Valid Usage 6 // Common to all VkPhysicalDevice commands accepting a 14 // Common Valid Usage
|