Home
last modified time | relevance | path

Searched refs:GenericType (Results 1 – 23 of 23) sorted by relevance

/third_party/typescript/tests/baselines/reference/
DcomplexClassRelationships.types53 >sortComponents : (p: Foo) => GenericType<string>
57 >p.prop1 : GenericType<string>
59 >prop1 : GenericType<string>
67 >prop1 : GenericType<string>
69 return new GenericType<string>(this);
70 >new GenericType<string>(this) : GenericType<string>
71 >GenericType : typeof GenericType
94 class GenericType<T> {
95 >GenericType : GenericType<T>
DcomplexClassRelationships.js30 return new GenericType<string>(this);
40 class GenericType<T> { class
112 return new GenericType(this);
129 var GenericType = /** @class */ (function () {
130 function GenericType(parent) { class in GenericType
132 return GenericType;
DcomplexClassRelationships.symbols75 return new GenericType<string>(this);
76 >GenericType : Symbol(GenericType, Decl(complexClassRelationships.ts, 36, 1))
101 class GenericType<T> {
102 >GenericType : Symbol(GenericType, Decl(complexClassRelationships.ts, 36, 1))
DcomplexClassRelationships.errors.txt36 return new GenericType<string>(this);
46 class GenericType<T> {
/third_party/node/deps/v8/src/torque/
Dtype-oracle.h81 static const Type* GetGenericTypeInstance(GenericType* generic_type,
84 static GenericType* GetReferenceGeneric(bool is_const) { in GetReferenceGeneric()
90 static GenericType* GetConstReferenceGeneric() { in GetConstReferenceGeneric()
93 static GenericType* GetMutableReferenceGeneric() { in GetMutableReferenceGeneric()
100 static GenericType* GetMutableSliceGeneric() { in GetMutableSliceGeneric()
104 static GenericType* GetConstSliceGeneric() { in GetConstSliceGeneric()
109 static GenericType* GetWeakGeneric() { in GetWeakGeneric()
113 static GenericType* GetSmiTaggedGeneric() { in GetSmiTaggedGeneric()
117 static GenericType* GetLazyGeneric() { in GetLazyGeneric()
Ddeclarations.cc142 GenericType* Declarations::LookupUniqueGenericType(const QualifiedName& name) { in LookupUniqueGenericType()
143 return EnsureUnique(FilterDeclarables<GenericType>(Lookup(name)), name, in LookupUniqueGenericType()
147 GenericType* Declarations::LookupGlobalUniqueGenericType( in LookupGlobalUniqueGenericType()
150 FilterDeclarables<GenericType>(LookupGlobalScope(QualifiedName(name))), in LookupGlobalUniqueGenericType()
154 base::Optional<GenericType*> Declarations::TryLookupGenericType( in TryLookupGenericType()
156 std::vector<GenericType*> results = TryLookup<GenericType>(name); in TryLookupGenericType()
309 GenericType* Declarations::DeclareGenericType( in DeclareGenericType()
312 std::unique_ptr<GenericType>(new GenericType(name, ast_node))); in DeclareGenericType()
Ddeclarations.h88 static GenericType* LookupUniqueGenericType(const QualifiedName& name);
89 static GenericType* LookupGlobalUniqueGenericType(const std::string& name);
90 static base::Optional<GenericType*> TryLookupGenericType(
144 static GenericType* DeclareGenericType(const std::string& name,
Dtype-oracle.cc38 const Type* TypeOracle::GetGenericTypeInstance(GenericType* generic_type, in GetGenericTypeInstance()
Dtype-inference.cc96 GenericType* generic_type = in MatchGeneric()
Ddeclarable.h640 class GenericType
643 DECLARE_DECLARABLE_BOILERPLATE(GenericType, generic_type) in DECLARE_DECLARABLE_BOILERPLATE() argument
647 GenericType(const std::string& name,
Dtypes.h27 class GenericType; variable
95 using MaybeSpecializationKey = base::Optional<SpecializationKey<GenericType>>;
153 GenericType* generic);
Dtype-visitor.cc505 base::Optional<GenericType*> maybe_generic_type = in ComputeTypeForStructExpression()
Dtypes.cc476 GenericType* generic) { in MatchUnaryGeneric()
/third_party/typescript/tests/cases/compiler/
DcomplexClassRelationships.ts30 return new GenericType<string>(this);
40 class GenericType<T> { class
/third_party/protobuf/src/google/protobuf/
Drepeated_field.h802 template <typename GenericType>
805 typedef GenericType Type;
806 using Movable = IsMovable<GenericType>;
808 static inline GenericType* New(Arena* arena) {
811 static inline GenericType* New(Arena* arena, GenericType&& value) {
812 return Arena::Create<GenericType>(arena, std::move(value));
814 static inline GenericType* NewFromPrototype(const GenericType* prototype,
816 static inline void Delete(GenericType* value, Arena* arena) {
821 static inline Arena* GetArena(GenericType* value) {
824 static inline void* GetMaybeArenaPointer(GenericType* value) {
[all …]
/third_party/skia/src/sksl/ir/
DSkSLType.cpp75 class GenericType final : public Type { class
79 GenericType(const char* name, std::vector<const Type*> coercibleTypes) in GenericType() function in SkSL::GenericType
429 return std::make_unique<GenericType>(name, std::move(types)); in MakeGenericType()
/third_party/typescript/src/compiler/
Dchecker.ts47 getGlobalIteratorType: (reportErrors: boolean) => GenericType;
48 getGlobalIterableType: (reportErrors: boolean) => GenericType;
49 getGlobalIterableIteratorType: (reportErrors: boolean) => GenericType;
50 getGlobalGeneratorType: (reportErrors: boolean) => GenericType;
778 const tupleTypes = new Map<string, GenericType>();
874 …mousType(undefined, emptySymbols, emptyArray, emptyArray, emptyArray) as ObjectType as GenericType;
971 let globalArrayType: GenericType;
972 let globalReadonlyArrayType: GenericType;
977 let globalThisType: GenericType;
989 let deferredGlobalTypedPropertyDescriptorType: GenericType;
[all …]
Dtypes.ts5938 target: GenericType; // Type reference target
5973 export interface GenericType extends InterfaceType, TypeReference {
5991 export interface TupleType extends GenericType {
/third_party/typescript/lib/
Dtypescript.d.ts2829 target: GenericType;
2834 export interface GenericType extends InterfaceType, TypeReference { interface
2846 export interface TupleType extends GenericType {
DtypescriptServices.d.ts2829 target: GenericType;
2834 export interface GenericType extends InterfaceType, TypeReference { interface
2846 export interface TupleType extends GenericType {
Dtsserverlibrary.d.ts2829 target: GenericType;
2834 export interface GenericType extends InterfaceType, TypeReference { interface
2846 export interface TupleType extends GenericType {
/third_party/typescript/tests/baselines/reference/api/
Dtypescript.d.ts2829 target: GenericType;
2834 export interface GenericType extends InterfaceType, TypeReference { interface
2846 export interface TupleType extends GenericType {
Dtsserverlibrary.d.ts2829 target: GenericType;
2834 export interface GenericType extends InterfaceType, TypeReference { interface
2846 export interface TupleType extends GenericType {