Home
last modified time | relevance | path

Searched refs:Tagged (Results 1 – 25 of 63) sorted by relevance

123

/third_party/typescript/tests/baselines/reference/
DmixinClassesAnnotated.types67 interface Tagged {
72 function Tagged<T extends Constructor<{}>>(superClass: T): Constructor<Tagged> & T {
73 >Tagged : <T extends Constructor<{}>>(superClass: T) => Constructor<Tagged> & T
101 >C : { new (...args: any[]): C; prototype: Tagged<any>.C; } & T
104 const Thing1 = Tagged(Derived);
105 >Thing1 : Constructor<Tagged> & typeof Derived
106 >Tagged(Derived) : Constructor<Tagged> & typeof Derived
107 >Tagged : <T extends Constructor<{}>>(superClass: T) => Constructor<Tagged> & T
110 const Thing2 = Tagged(Printable(Derived));
111 >Thing2 : Constructor<Tagged> & Constructor<Printable> & { message: string; } & typeof Derived
[all …]
DmixinClassesAnonymous.types59 function Tagged<T extends Constructor<{}>>(superClass: T) {
60 >Tagged : <T extends Constructor<{}>>(superClass: T) => { new (...args: any[]): C; prototype: Tagge…
88 >C : { new (...args: any[]): C; prototype: Tagged<any>.C; } & T
91 const Thing1 = Tagged(Derived);
92 >Thing1 : { new (...args: any[]): Tagged<typeof Derived>.C; prototype: Tagged<any>.C; } & typeof De…
93 >Tagged(Derived) : { new (...args: any[]): Tagged<typeof Derived>.C; prototype: Tagged<any>.C; } & …
94 >Tagged : <T extends Constructor<{}>>(superClass: T) => { new (...args: any[]): C; prototype: Tagge…
97 const Thing2 = Tagged(Printable(Derived));
98Tagged<{ new (...args: any[]): Printable<typeof Derived>.(Anonymous class); prototype: Printable<a…
99Tagged(Printable(Derived)) : { new (...args: any[]): Tagged<{ new (...args: any[]): Printable<type…
[all …]
DmixinClassesAnnotated.symbols71 interface Tagged {
72 >Tagged : Symbol(Tagged, Decl(mixinClassesAnnotated.ts, 26, 1), Decl(mixinClassesAnnotated.ts, 22, …
75 >_tag : Symbol(Tagged._tag, Decl(mixinClassesAnnotated.ts, 24, 18))
78 function Tagged<T extends Constructor<{}>>(superClass: T): Constructor<Tagged> & T {
79 >Tagged : Symbol(Tagged, Decl(mixinClassesAnnotated.ts, 26, 1), Decl(mixinClassesAnnotated.ts, 22, …
85 >Tagged : Symbol(Tagged, Decl(mixinClassesAnnotated.ts, 26, 1), Decl(mixinClassesAnnotated.ts, 22, …
112 const Thing1 = Tagged(Derived);
114 >Tagged : Symbol(Tagged, Decl(mixinClassesAnnotated.ts, 26, 1), Decl(mixinClassesAnnotated.ts, 22, …
117 const Thing2 = Tagged(Printable(Derived));
119 >Tagged : Symbol(Tagged, Decl(mixinClassesAnnotated.ts, 26, 1), Decl(mixinClassesAnnotated.ts, 22, …
[all …]
DmixinClassesAnnotated.js26 interface Tagged {
30 function Tagged<T extends Constructor<{}>>(superClass: T): Constructor<Tagged> & T {
41 const Thing1 = Tagged(Derived);
42 const Thing2 = Tagged(Printable(Derived));
113 function Tagged(superClass) { class
129 var Thing1 = Tagged(Derived);
130 var Thing2 = Tagged(Printable(Derived));
174 interface Tagged {
177 declare function Tagged<T extends Constructor<{}>>(superClass: T): Constructor<Tagged> & T;
178 declare const Thing1: Constructor<Tagged> & typeof Derived;
[all …]
DmixingApparentTypeOverrides.types6 function Tagged<T extends Constructor<{}>>(Base: T) {
7 >Tagged : <T extends Constructor<{}>>(Base: T) => { new (...args: any[]): (Anonymous class); protot…
11 …ag = ""; } } : { new (...args: any[]): (Anonymous class); prototype: Tagged<any>.(Anonymous cl…
47 class B extends Tagged(A) {
49 >Tagged(A) : Tagged<typeof A>.(Anonymous class) & A
50 >Tagged : <T extends Constructor<{}>>(Base: T) => { new (...args: any[]): (Anonymous class); protot…
DmixingApparentTypeOverrides.symbols8 function Tagged<T extends Constructor<{}>>(Base: T) {
9 >Tagged : Symbol(Tagged, Decl(mixingApparentTypeOverrides.ts, 0, 47))
46 class B extends Tagged(A) {
48 >Tagged : Symbol(Tagged, Decl(mixingApparentTypeOverrides.ts, 0, 47))
DmixinClassesAnonymous.js21 function Tagged<T extends Constructor<{}>>(superClass: T) {
32 const Thing1 = Tagged(Derived);
33 const Thing2 = Tagged(Printable(Derived));
112 function Tagged(superClass) { class
128 var Thing1 = Tagged(Derived);
129 var Thing2 = Tagged(Printable(Derived));
DtaggedTemplateChain.errors.txt1 …lChaining/taggedTemplateChain/taggedTemplateChain.ts(2,4): error TS1358: Tagged template expressio…
2 …lChaining/taggedTemplateChain/taggedTemplateChain.ts(4,4): error TS1358: Tagged template expressio…
9 !!! error TS1358: Tagged template expressions are not permitted in an optional chain.
13 !!! error TS1358: Tagged template expressions are not permitted in an optional chain.
DmixingApparentTypeOverrides.js3 function Tagged<T extends Constructor<{}>>(Base: T) {
19 class B extends Tagged(A) {
47 function Tagged(Base) { class
79 }(Tagged(A)));
DmixinClassesAnonymous.symbols58 function Tagged<T extends Constructor<{}>>(superClass: T) {
59 >Tagged : Symbol(Tagged, Decl(mixinClassesAnonymous.ts, 17, 1))
89 const Thing1 = Tagged(Derived);
91 >Tagged : Symbol(Tagged, Decl(mixinClassesAnonymous.ts, 17, 1))
94 const Thing2 = Tagged(Printable(Derived));
96 >Tagged : Symbol(Tagged, Decl(mixinClassesAnonymous.ts, 17, 1))
DoperatorsAndIntersectionTypes.types2 type Guid = string & { $Guid }; // Tagged string type
6 type SerialNo = number & { $SerialNo }; // Tagged number type
DoperatorsAndIntersectionTypes.symbols2 type Guid = string & { $Guid }; // Tagged string type
6 type SerialNo = number & { $SerialNo }; // Tagged number type
/third_party/typescript/tests/cases/conformance/classes/
DmixinClassesAnnotated.ts27 interface Tagged { interface
31 function Tagged<T extends Constructor<{}>>(superClass: T): Constructor<Tagged> & T { function
42 const Thing1 = Tagged(Derived);
43 const Thing2 = Tagged(Printable(Derived));
DmixinClassesAnonymous.ts20 function Tagged<T extends Constructor<{}>>(superClass: T) { function
31 const Thing1 = Tagged(Derived);
32 const Thing2 = Tagged(Printable(Derived));
/third_party/openssl/test/recipes/30-test_evp_data/
Devpmac_common.txt343 Custom = "My Tagged Application"
349 Custom = "My Tagged Application"
356 Custom = "My Tagged Application"
370 Custom = "My Tagged Application"
385 Custom = "My Tagged Application"
392 Custom = "My Tagged Application"
400 Custom = "My Tagged Application"
414 Custom = "My Tagged Application"
440 Custom = "My Tagged Application"
447 Custom = "My Tagged Application"
[all …]
/third_party/icu/vendor/double-conversion/upstream/
DChangelog105 Tagged v3.0.0.
134 Tagged v2.0.1.
140 Tagged v2.0.0.
145 Tagged v1.1.2.
152 Tagged v1.1.1.
158 Tagged v1.1 (based on b28450f33e1db493948a535d8f84e88fa211bd10).
161 Tagged v1.0 (based on eda0196e9ac8fcdf59e92cb62885ee0af5391969).
/third_party/typescript/tests/cases/compiler/
DmixingApparentTypeOverrides.ts2 function Tagged<T extends Constructor<{}>>(Base: T) { function
18 class B extends Tagged(A) {
/third_party/node/deps/v8/src/objects/
Dproperty.cc112 Representation::Tagged(), any_type); in DataConstant()
120 PropertyConstness::kConst, Representation::Tagged(), 0); in AccessorConstant()
Dproperty-details.h115 static constexpr Representation Tagged() { return Representation(kTagged); } in Tagged() function
178 return Representation::Tagged(); in MostGenericInPlaceChange()
194 return Representation::Tagged(); in generalize()
Dfield-index.h30 Representation representation = Representation::Tagged());
/third_party/PyYAML/tests/data/
Dspec-08-12.canonical6 !!str "Tagged",
Dspec-08-12.data4 !!str 'Tagged',
/third_party/json/docs/mkdocs/docs/features/binary_formats/
Dcbor.md89 !!! info "Tagged items"
167 !!! warning "Tagged items"
169Tagged items will throw a parse error by default. They can be ignored by passing `cbor_tag_handler…
/third_party/node/deps/v8/src/builtins/
Dbuiltins-struct.cc61 PropertyConstness::kMutable, Representation::Tagged(), i); in BUILTIN()
/third_party/node/deps/ngtcp2/
DREADME.md12 in the default branch (currently named `main` in each). Tagged versions do not

123