Home
last modified time | relevance | path

Searched defs:static (Results 1 – 25 of 83) sorted by relevance

1234

/third_party/typescript/tests/cases/compiler/
DstaticFieldWithInterfaceContext.ts6 static x = { a: "a" }; variable
11 let c2: I = class { static [ex] = { a: "a" }; }; variable
16 let { c: c3 }: { c: I } = { c: class { static x = { a: "a" } } }; variable
17 let { c: c4 = class { static x = { a: "a" } }}: { c?: I } = { }; variable
18 let { c: c5 = class { static x = { a: "a" } }}: { c?: I } = { c: class { static x = { a: "a" } } }; variable
19 let [ c6 ]: [I] = [class { static x = { a: "a" } }]; variable
20 let [ c7 ]: I[] = [class { static x = { a: "a" } }]; variable
22 let [ c8 = class { static x = { a: "a" } } ]: [I?] = []; variable
23 let [ c9 = class { static x = { a: "a" } } ]: I[] = []; variable
24 let [ c10 = class { static x = { a: "a" } } ]: [I?] = [class { static x = { a: "a" } }]; variable
[all …]
DclassExpressionWithStaticProperties2.ts3 static a = 1; variable
5 static c = { variable
DclassExpressionWithStaticPropertiesES62.ts3 static a = 1; variable
5 static c = { variable
DemitClassExpressionInDeclarationFile2.ts3 static getTags() { } variable
5 private static ps = -1 variable
DemitClassExpressionInDeclarationFile.ts3 static getTags() { } variable
7 static getTags(c: C): C { return c } variable
DambientNameRestrictions.ts2 export var static: any; variable
DstrictModeEnumMemberNameReserved.ts6 const x1: E.static = E.static;
DclassExpressionWithDecorator1.ts2 var v = @decorate class C { static p = 1 }; variable
DclassExpressionWithStaticProperties1.ts2 static a = 1; variable
DclassExpressionWithStaticPropertiesES61.ts3 static a = 1; variable
DclassInConvertedLoopES5.ts6 static factory = () => new RowClass(); constant
/third_party/typescript/tests/baselines/reference/
DparserMemberFunctionDeclarationAmbiguities1.js4 static() {} method in C
7 public static() {} method in C
10 public static static() {} method in C
13 static static() {} method in C
Dparser642331_1.js5 constructor (static) { } argument
12 function test(static) { argument
DconstructorStaticParamNameErrors.js5 constructor (static) { } argument
12 function test(static) { argument
Dparser642331.js3 constructor (static) { } argument
9 function test(static) { argument
DconstructorStaticParamName.js5 constructor (static) { } argument
12 function test(static) { argument
DstrictModeReservedWordInClassDeclaration.js5 constructor(private, public, static) { argument
14 foo1(private, static, public) { argument
48 function Foo(private, public, static) { argument
58 C.prototype.foo1 = function (private, static, public) { argument
DuseBeforeDeclaration_jsx.js14 static z = () => <b></b>; function
DaugmentExportEquals5.js62 var static: any; variable
/third_party/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/
DstaticPropertyNameConflicts.ts63 static name: number; // error variable
68 static name() {} // error variable
74 static length: number; // error variable
79 static length() {} // error variable
85 static prototype: number; // error variable
90 static prototype() {} // error variable
96 static caller: number; // error variable
101 static caller() {} // error variable
107 static arguments: number; // error variable
112 static arguments() {} // error variable
/third_party/gstreamer/gstplugins_good/gst/deinterlace/tvtime/
Dgreedyh.asm32 static void label
251 static void label
/third_party/typescript_eslint/packages/shared-fixtures/fixtures/javascript/classes/
Dclass-method-named-static.src.js1 class A {static(){};}; method in A
Dclass-static-method-named-static.src.js1 class A {static static(){};}; method in A
/third_party/flutter/flutter/dev/integration_tests/ios_add2app/ios_add2app/
DHybridViewController.m14 static NSString *_kChannel = @"increment"; category
/third_party/mesa3d/src/gallium/drivers/r600/
Degd_tables.py54 def emit(self, filp, name, static=True): argument
106 def emit(self, filp, name, static=True): argument

1234