Home
last modified time | relevance | path

Searched refs:abstract (Results 1 - 25 of 86) sorted by relevance

1234

/third_party/typescript/tests/baselines/reference/
H A DmixinAbstractClasses.js6 function Mixin<TBaseClass extends abstract new (...args: any) => any>(baseClass: TBaseClass): TBaseClass & (abstract new (...args: any) => Mixin) {
7 abstract class MixinClass extends baseClass implements Mixin {
18 abstract class AbstractBase {
19 abstract abstractBaseMethod(): void;
67 declare function Mixin<TBaseClass extends abstract new (...args: any) => any>(baseClass: TBaseClass): TBaseClass & (abstract new (...args: any) => Mixin);
71 declare abstract class AbstractBase {
72 abstract abstractBaseMethod(): void;
74 declare const DerivedFromConcrete_base: typeof ConcreteBase & (abstract ne
[all...]
H A DmixinAbstractClasses.2.js6 function Mixin<TBaseClass extends abstract new (...args: any) => any>(baseClass: TBaseClass): TBaseClass & (abstract new (...args: any) => Mixin) {
7 // error expected: A mixin class that extends from a type variable containing an abstract construct signature must also be declared 'abstract'.
15 abstract class AbstractBase {
16 abstract abstractBaseMethod(): void;
21 // error expected: Non-abstract class 'DerivedFromAbstract' does not implement inherited abstract member 'abstractBaseMethod' from class 'AbstractBase & Mixin'.
25 // error expected: Cannot create an instance of an abstract class.
30 // error expected: A mixin class that extends from a type variable containing an abstract construc
[all...]
H A DmixinAbstractClassesReturnTypeInference.js6 abstract class AbstractBase {
7 abstract abstractBaseMethod(): void;
10 function Mixin2<TBase extends abstract new (...args: any[]) => any>(baseClass: TBase) {
11 // must be `abstract` because we cannot know *all* of the possible abstract members that need to be
13 abstract class MixinClass extends baseClass implements Mixin1 {
29 // must be `abstract` because we cannot know *all* of the possible abstract members that need to be
46 declare abstract class AbstractBase {
47 abstract abstractBaseMetho
[all...]
H A DclassAbstractInstantiations2.js6 abstract class B {
8 abstract bar() : number;
14 var AA: typeof A = BB; // error, AA is not of abstract type.
27 class C extends B { } // error -- not declared abstract
29 abstract class D extends B { } // okay
31 class E extends B { // okay -- implements abstract method
35 abstract class F extends B {
36 abstract foo() : number;
40 abstract class G {
41 abstract qu
[all...]
H A DpropertyNamesOfReservedWords.js3 abstract;
68 var r1 = c.abstract;
72 abstract;
138 var r3 = i.abstract;
142 abstract;
207 var r5 = a.abstract;
211 abstract,
276 var r7 = E.abstract;
286 var r1 = c.abstract;
289 var r3 = i.abstract;
[all...]
H A DabstractIdentifierNameStrict.js2 var abstract = true; variable
6 var abstract = true;
10 var abstract = true; variable
13 var abstract = true;
H A DstrictPropertyInitialization.js96 // No strict initialization checks for abstract members
98 abstract class C9 {
99 abstract a: number;
100 abstract b: number | undefined;
101 abstract c: number | null;
102 abstract d?: number;
239 // No strict initialization checks for abstract members
333 declare abstract class C9 {
334 abstract a: number;
335 abstract
[all...]
H A DdefiniteAssignmentAssertions.js33 // Definite assignment assertion not permitted on abstract property
35 abstract class C5 {
36 abstract a!: number;
108 // Definite assignment assertion not permitted on abstract property
164 declare abstract class C5 {
165 abstract a: number;
H A DconvertKeywords.js2 var abstract; variable
8 var abstract; variable
H A DintersectionWithConflictingPrivates.js21 abstract class ViewNode { }
22 abstract class ViewRefNode extends ViewNode { }
23 abstract class ViewRefFileNode extends ViewRefNode { }
H A DcomputedPropertyName.js33 abstract class F {
34 abstract [onInit](): void;
H A DdeclarationEmitLocalClassDeclarationMixin.js18 abstract class FilterMixin extends ctor {
19 abstract match(path: string): boolean;
107 declare const FilteredThing_base: (abstract new (...args: any[]) => {
H A DautoAccessor7(target=es2015,usedefineforclassfields=false).js2 abstract class C1 {
3 abstract accessor a: any;
H A DautoAccessor7(target=es2015,usedefineforclassfields=true).js2 abstract class C1 {
3 abstract accessor a: any;
H A DclassAbstractInstantiations1.js3 // Calling new with (non)abstract classes.
6 abstract class A {}
10 abstract class C extends B {}
28 // Calling new with (non)abstract classes.
/third_party/python/Tools/c-analyzer/c_analyzer/
H A Dmatch.py78 _, _, _, typespec, abstract = _info.get_parsed_vartype(vardecl)
81 elif not abstract:
84 if '*' not in abstract:
87 elif _match._is_funcptr(abstract):
90 for after in abstract.split('*')[1:]:
/third_party/libwebsockets/include/libwebsockets/abstract/
H A Dtransports.h39 /* events the abstract protocol invokes (handled by transport) */
52 * \param name: the name of the abstract protocol
64 #include <libwebsockets/abstract/transports/raw-skt.h>
65 #include <libwebsockets/abstract/transports/unit-test.h>
H A Dabstract.h27 * or ulong tokens to the abstract transport or protocol. For example if it's
106 * lws_abs_bind_and_create_instance - use an abstract protocol and transport
110 * This instantiates an abstract protocol and abstract transport bound together.
137 #include <libwebsockets/abstract/protocols.h>
138 #include <libwebsockets/abstract/transports.h>
/third_party/alsa-utils/alsamixer/
H A Dcli.c39 .abstract = SND_MIXER_SABSTRACT_NONE,
133 selem_regopt.abstract = SND_MIXER_SABSTRACT_NONE; in parse_options()
135 selem_regopt.abstract = SND_MIXER_SABSTRACT_BASIC; in parse_options()
/third_party/node/deps/v8/third_party/jinja2/
H A Dnodes.py57 d.setdefault("abstract", False)
113 abstract = True variable in Node
116 if self.abstract:
117 raise TypeError("abstract nodes are not instantiable")
269 abstract = True variable in Stmt
275 abstract = True variable in Helper
405 abstract = True variable in Expr
430 abstract = True variable in BinExpr
452 abstract = True variable in UnaryExpr
500 abstract variable in Literal
[all...]
/third_party/node/tools/inspector_protocol/jinja2/
H A Dnodes.py72 d.setdefault('abstract', False)
125 abstract = True variable in Node
128 if self.abstract:
129 raise TypeError('abstract nodes are not instanciable')
277 abstract = True variable in Stmt
282 abstract = True variable in Helper
395 abstract = True variable in Expr
419 abstract = True variable in BinExpr
438 abstract = True variable in UnaryExpr
482 abstract variable in Literal
[all...]
/third_party/skia/third_party/externals/jinja2/
H A Dnodes.py57 d.setdefault("abstract", False)
113 abstract = True variable in Node
116 if self.abstract:
117 raise TypeError("abstract nodes are not instantiable")
269 abstract = True variable in Stmt
275 abstract = True variable in Helper
405 abstract = True variable in Expr
430 abstract = True variable in BinExpr
452 abstract = True variable in UnaryExpr
500 abstract variable in Literal
[all...]
/third_party/jinja2/
H A Dnodes.py65 d.setdefault("abstract", False)
122 abstract = True variable in Node
128 if self.abstract:
129 raise TypeError("abstract nodes are not instantiable")
283 abstract = True variable in Stmt
289 abstract = True variable in Helper
468 abstract = True variable in Expr
495 abstract = True variable in BinExpr
519 abstract = True variable in UnaryExpr
572 abstract variable in Literal
745 abstract = True global() variable in _FilterTestCommon
[all...]
/third_party/python/Tools/c-analyzer/c_parser/parser/
H A D_common.py93 abstract = declarator.replace(name, '')
98 'abstract': abstract,
/third_party/python/Tools/c-analyzer/c_parser/
H A D__main__.py37 storage, typequal, typespec, abstract = vartype.values()
41 _, typequal, typespec, abstract = vartype.values()
43 storage, typequal, typespec, abstract = vartype.values()
45 vartype = f'{typespec} {abstract}'

Completed in 9 milliseconds

1234