/third_party/typescript/tests/baselines/reference/ |
D | declarationsIndirectGeneratedAliasReference.symbols | 2 export interface Ctor { 3 >Ctor : Symbol(Ctor, Decl(ctor.d.ts, 0, 0), Decl(ctor.d.ts, 7, 12)) 6 >x : Symbol(Ctor.x, Decl(ctor.d.ts, 0, 23)) 18 extends<T>(x: T): ExtendedCtor<T extends unknown ? Ctor : undefined>; 25 >Ctor : Symbol(Ctor, Decl(ctor.d.ts, 0, 0), Decl(ctor.d.ts, 7, 12)) 27 export const Ctor: CtorConstructor; 28 >Ctor : Symbol(Ctor, Decl(ctor.d.ts, 0, 0), Decl(ctor.d.ts, 7, 12)) 32 import { Ctor } from "./ctor"; 33 >Ctor : Symbol(Ctor, Decl(index.d.ts, 0, 8)) 35 export default Ctor; [all …]
|
D | declarationsIndirectGeneratedAliasReference.types | 2 export interface Ctor { 12 extends<T>(x: T): ExtendedCtor<T extends unknown ? Ctor : undefined>; 13 >extends : <T>(x: T) => ExtendedCtor<T extends unknown ? Ctor : undefined> 16 export const Ctor: CtorConstructor; 17 >Ctor : CtorConstructor 20 import { Ctor } from "./ctor"; 21 >Ctor : import("tests/cases/compiler/node_modules/mod/ctor").CtorConstructor 23 export default Ctor; 24 >Ctor : Ctor 30 const Ctor = ns.default; [all …]
|
D | declarationsIndirectGeneratedAliasReference.js | 4 export interface Ctor { 9 extends<T>(x: T): ExtendedCtor<T extends unknown ? Ctor : undefined>; 11 export const Ctor: CtorConstructor; constant 13 import { Ctor } from "./ctor"; 14 export default Ctor; 17 const Ctor = ns.default; constant 18 export const MyComp = Ctor.extends({foo: "bar"}); 26 var Ctor = ns["default"]; variable 27 exports.MyComp = Ctor["extends"]({ foo: "bar" });
|
D | tsxGenericAttributesType9.types | 5 export function makeP<P>(Ctor: React.ComponentClass<P>) { 6 >makeP : <P>(Ctor: React.ComponentClass<P>) => typeof (Anonymous class) 7 >Ctor : React.ComponentClass<P> 11 >class extends React.PureComponent<P, void> { public render(): JSX.Element { return ( <Ctor {… 21 >( <Ctor {...this.props } /> ) : JSX.Element 23 <Ctor {...this.props } /> 24 ><Ctor {...this.props } /> : JSX.Element 25 >Ctor : React.ComponentClass<P>
|
D | tsxGenericAttributesType9.symbols | 5 export function makeP<P>(Ctor: React.ComponentClass<P>) { 8 >Ctor : Symbol(Ctor, Decl(file.tsx, 2, 25)) 25 <Ctor {...this.props } /> 26 >Ctor : Symbol(Ctor, Decl(file.tsx, 2, 25))
|
D | tsxGenericAttributesType9.js | 4 export function makeP<P>(Ctor: React.ComponentClass<P>) { 8 <Ctor {...this.props } /> field in AnonymousClass7d1e2c570101 36 function makeP(Ctor) { argument 43 return (<Ctor {...this.props}/>);
|
D | weakType.symbols | 114 // Ctor isn't a weak type because it has a construct signature 115 interface Ctor { 116 >Ctor : Symbol(Ctor, Decl(weakType.ts, 41, 1)) 123 >n : Symbol(Ctor.n, Decl(weakType.ts, 44, 22)) 125 let ctor: Ctor = K 127 >Ctor : Symbol(Ctor, Decl(weakType.ts, 41, 1))
|
D | weakType.types | 121 // Ctor isn't a weak type because it has a construct signature 122 interface Ctor { 129 let ctor: Ctor = K 130 >ctor : Ctor
|
D | weakType.js | 45 interface Ctor { 49 let ctor: Ctor = K
|
/third_party/typescript/tests/cases/compiler/ |
D | declarationsIndirectGeneratedAliasReference.ts | 3 export interface Ctor { interface 8 extends<T>(x: T): ExtendedCtor<T extends unknown ? Ctor : undefined>; 10 export const Ctor: CtorConstructor; constant 12 import { Ctor } from "./ctor"; 13 export default Ctor; 16 const Ctor = ns.default; constant 17 export const MyComp = Ctor.extends({foo: "bar"});
|
D | weakType.ts | 44 interface Ctor { interface 48 let ctor: Ctor = K
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | MachinePassRegistry.h | 53 PassCtorTy Ctor; // Pass creator. variable 57 : Name(N), Description(D), Ctor(C) {} in MachinePassRegistryNode() 64 PassCtorTy getCtor() const { return Ctor; } in getCtor() 91 PassCtorTy Ctor = nullptr; in setDefault() local 95 Ctor = R->getCtor(); in setDefault() 99 assert(Ctor && "Unregistered pass name"); in setDefault() 100 setDefault(Ctor); in setDefault()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | ModuleUtils.cpp | 129 Function *Ctor = Function::Create( in createSanitizerCtorAndInitFunctions() local 132 BasicBlock *CtorBB = BasicBlock::Create(M.getContext(), "", Ctor); in createSanitizerCtorAndInitFunctions() 141 return std::make_pair(Ctor, InitFunction); in createSanitizerCtorAndInitFunctions() 152 if (Function *Ctor = M.getFunction(CtorName)) in getOrCreateSanitizerCtorAndInitFunctions() local 155 if (Ctor->arg_size() == 0 || in getOrCreateSanitizerCtorAndInitFunctions() 156 Ctor->getReturnType() == Type::getVoidTy(M.getContext())) in getOrCreateSanitizerCtorAndInitFunctions() 157 return {Ctor, declareSanitizerInitFunction(M, InitName, InitArgTypes)}; in getOrCreateSanitizerCtorAndInitFunctions() 159 Function *Ctor; in getOrCreateSanitizerCtorAndInitFunctions() local 161 std::tie(Ctor, InitFunction) = llvm::createSanitizerCtorAndInitFunctions( in getOrCreateSanitizerCtorAndInitFunctions() 163 FunctionsCreatedCallback(Ctor, InitFunction); in getOrCreateSanitizerCtorAndInitFunctions() [all …]
|
/third_party/node/lib/internal/worker/ |
D | js_transferable.js | 29 const Ctor = require(module)[ctor]; 30 if (typeof Ctor !== 'function' || 31 typeof Ctor.prototype[messaging_deserialize_symbol] !== 'function') { 38 return new Ctor();
|
/third_party/node/test/fixtures/debugger/ |
D | backtrace.js | 11 class Ctor { class 27 const obj = new Ctor(options);
|
/third_party/typescript/tests/cases/conformance/jsx/ |
D | tsxGenericAttributesType9.tsx | 9 export function makeP<P>(Ctor: React.ComponentClass<P>) { 13 <Ctor {...this.props } />
|
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/4.2/abstract_construct_signatures/ |
D | abstract_construct_signatures_3.ts | 33 function mixClass<T extends MIX<object>>(Ctor: T) { 34 abstract class CPColor extends Ctor {
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | Registry.h | 29 std::unique_ptr<T> (*Ctor)(); variable 33 : Name(N), Desc(D), Ctor(C) {} in SimpleRegistryEntry() 37 std::unique_ptr<T> instantiate() const { return Ctor(); } in instantiate()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ |
D | PassInfo.h | 91 void setNormalCtor(NormalCtor_t Ctor) { in setNormalCtor() argument 92 NormalCtor = Ctor; in setNormalCtor()
|
/third_party/typescript/tests/arkTSTest/testcase/arkts-no-ctor-signatures-funcs/ |
D | arkts-no-ctor-signatures-funcs-4-error.ets | 27 function createAnimal(Ctor: AnimalCtor, name: string): Animal { 28 return new Ctor(name);
|
D | arkts-no-ctor-signatures-funcs-1-error.ets | 25 function createPerson(Ctor: PersonCtor, name: string, age: number): Person 27 return new Ctor(name, age)
|
D | arkts-no-ctor-signatures-funcs-4-ok.ets | 27 function createAnimal(Ctor: AnimalCtor, name: string): Animal { 28 return Ctor(name);
|
D | arkts-no-ctor-signatures-funcs-1-ok.ets | 25 function createPerson(Ctor: PersonCtor, n: string, a: number): Person { 26 return Ctor(n, a)
|
D | arkts-no-ctor-signatures-funcs-5-error.ets | 29 function createProduct(Ctor: ProductCtor, name: string, price: number): Product { 30 return new Ctor(name, price);
|
D | arkts-no-ctor-signatures-funcs-5-ok.ets | 29 function createProduct(Ctor: ProductCtor, name: string, price: number): Product { 30 return Ctor(name, price);
|