/third_party/typescript/tests/cases/compiler/ |
D | staticFieldWithInterfaceContext.ts | 6 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 …]
|
D | classExpressionWithStaticPropertiesES62.ts | 3 static a = 1; variable 5 static c = { variable
|
D | classExpressionWithStaticProperties2.ts | 3 static a = 1; variable 5 static c = { variable
|
D | emitClassExpressionInDeclarationFile2.ts | 3 static getTags() { } variable 5 private static ps = -1 variable
|
D | emitClassExpressionInDeclarationFile.ts | 3 static getTags() { } variable 7 static getTags(c: C): C { return c } variable
|
D | ambientNameRestrictions.ts | 2 export var static: any; variable
|
D | strictModeEnumMemberNameReserved.ts | 6 const x1: E.static = E.static;
|
D | classExpressionWithDecorator1.ts | 2 var v = @decorate class C { static p = 1 }; variable
|
/third_party/typescript/tests/baselines/reference/ |
D | parserMemberFunctionDeclarationAmbiguities1.js | 4 static() {} method in C 7 public static() {} method in C 10 public static static() {} method in C 13 static static() {} method in C
|
D | constructorStaticParamNameErrors.js | 5 constructor (static) { } argument 12 function test(static) { argument
|
D | parser642331.js | 3 constructor (static) { } argument 9 function test(static) { argument
|
D | parser642331_1.js | 5 constructor (static) { } argument 12 function test(static) { argument
|
D | constructorStaticParamName.js | 5 constructor (static) { } argument 12 function test(static) { argument
|
D | strictModeReservedWordInClassDeclaration.js | 5 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
|
D | useBeforeDeclaration_jsx.js | 14 static z = () => <b></b>; function
|
/third_party/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/ |
D | staticPropertyNameConflicts.ts | 63 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/typescript/tests/cases/conformance/classes/members/privateNames/ |
D | privateNameStaticMethodAsync.ts | 4 static async #bar() { return await Promise.resolve(42); } constant 5 static async foo() { constant
|
D | privateNameStaticMethodClassExpression.ts | 4 static #field = D.#method(); constant
|
/third_party/rust/crates/memchr/bench/src/memmem/ |
D | imp.rs | 35 ) -> impl Fn(&str) -> bool + 'static { in prebuilt() 73 ) -> impl Fn(&str) -> bool + 'static { in prebuilt() 127 ) -> impl Fn(&str) -> bool + 'static { in prebuilt() 177 ) -> impl Fn(&str) -> bool + 'static { in prebuilt() 229 ) -> impl Fn(&str) -> bool + 'static { in prebuilt() 270 ) -> impl Fn(&str) -> bool + 'static { in prebuilt() 326 ) -> impl Fn(&str) -> bool + 'static { in prebuilt() 364 ) -> impl Fn(&str) -> bool + 'static { in prebuilt() 402 ) -> impl Fn(&str) -> bool + 'static { in prebuilt() 425 ) -> impl Fn(&str) -> bool + 'static { in prebuilt() [all …]
|
/third_party/rust/crates/memchr/bench/src/memchr/ |
D | mod.rs | 774 bench: impl FnMut(Search1, &mut Bencher<'_>) + Clone + 'static, in define_memchr_input1() 798 bench: impl FnMut(Search2, &mut Bencher<'_>) + Clone + 'static, in define_memchr_input2() 822 bench: impl FnMut(Search3, &mut Bencher<'_>) + Clone + 'static, in define_memchr_input3()
|
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/interfaces/2_declaration_merging/ |
D | declaration_merging_1.ts | 61 static getName(name: Ds<number | string | boolean>): Ds<number | string | boolean> { variable 64 static getSrc(src :Ds<number | string>){ variable
|
/third_party/gstreamer/gstplugins_good/gst/deinterlace/tvtime/ |
D | greedyh.asm | 32 static void label 251 static void label
|
/third_party/rust/crates/memchr/src/ |
D | cow.rs | 45 pub fn new_owned(bytes: Box<[u8]>) -> CowBytes<'static> { in new_owned() 62 pub fn into_owned(self) -> CowBytes<'static> { in into_owned()
|
/third_party/typescript/tests/cases/conformance/classes/classStaticBlock/ |
D | classStaticBlock18.ts | 8 static bar = 2; constant
|
/third_party/rust/crates/serde/serde/src/ |
D | std_error.rs | 45 fn source(&self) -> Option<&(Error + 'static)> { in source()
|