Home
last modified time | relevance | path

Searched refs:typeParameter (Results 1 – 25 of 977) sorted by relevance

12345678910>>...40

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.CodeDom/tests/CodeObjects/
H A DCodeTypeParameterTests.cs15 var typeParameter = new CodeTypeParameter(); in Ctor_Default()
16 Assert.Empty(typeParameter.Name); in Ctor_Default()
17 Assert.Empty(typeParameter.Constraints); in Ctor_Default()
18 Assert.Empty(typeParameter.CustomAttributes); in Ctor_Default()
28 Assert.Empty(typeParameter.Constraints); in Ctor_String()
29 Assert.Empty(typeParameter.CustomAttributes); in Ctor_String()
37 var typeParameter = new CodeTypeParameter(); in Name_Set_Get_ReturnsExpected()
38 typeParameter.Name = value; in Name_Set_Get_ReturnsExpected()
45 var typeParameter = new CodeTypeParameter(); in Constraints_AddMultiple_ReturnsExpected()
48 typeParameter.Constraints.Add(type1); in Constraints_AddMultiple_ReturnsExpected()
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/
H A DInferenceVariable.java28 /*@NonNull*/ TypeBinding typeParameter; field in InferenceVariable.InferenceVarKey
32 this.typeParameter = typeParameter; in InferenceVarKey()
42 result = prime * result + this.typeParameter.id; in hashCode()
58 if (TypeBinding.notEquals(this.typeParameter, other.typeParameter)) in equals()
72 if (site != null && typeParameter != null) { in get()
73 key = new InferenceVarKey(typeParameter, site, rank); in get()
87 TypeBinding typeParameter; field in InferenceVariable
95 this(typeParameter, parameterRank, site, makeName(typeParameter, iVarId), environment, object); in InferenceVariable()
110 this.typeParameter = typeParameter; in InferenceVariable()
112 if (typeParameter.isTypeVariable()) { in InferenceVariable()
[all …]
/dports/java/eclipse-ecj/eclipse-ecj-4.4.2_1/org/eclipse/jdt/internal/compiler/lookup/
H A DInferenceVariable.java23 TypeBinding typeParameter; field in InferenceVariable
26 …public InferenceVariable(TypeBinding typeParameter, int variableRank, InvocationSite site, LookupE… in InferenceVariable() argument
27 …super(CharOperation.concat(typeParameter.shortReadableName(), Integer.toString(variableRank).toCha… in InferenceVariable()
30 this.typeParameter = typeParameter; in InferenceVariable()
31 this.tagBits |= typeParameter.tagBits & TagBits.AnnotationNullMASK; in InferenceVariable()
32 if (typeParameter.isTypeVariable()) { in InferenceVariable()
33 TypeVariableBinding typeVariable = (TypeVariableBinding) typeParameter; in InferenceVariable()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/search/org/eclipse/jdt/internal/core/search/matching/
H A DTypeParameterPattern.java46 protected ITypeParameter typeParameter; field in TypeParameterPattern
57 …tern(boolean findDeclarations, boolean findReferences, ITypeParameter typeParameter, int matchRule… in TypeParameterPattern() argument
62 this.typeParameter = typeParameter; in TypeParameterPattern()
63 this.name = typeParameter.getElementName().toCharArray(); // store type parameter name in TypeParameterPattern()
64 IMember member = typeParameter.getDeclaringMember(); in TypeParameterPattern()
85 …IPackageFragmentRoot root = (IPackageFragmentRoot) this.typeParameter.getAncestor(IJavaElement.PAC… in findIndexMatches()
89 IType type = (IType) this.typeParameter.getAncestor(IJavaElement.TYPE); in findIndexMatches()
100 IPath path = this.typeParameter.getPath(); in findIndexMatches()
129 output.append(this.typeParameter.toString()); in print()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/mlir/lib/TableGen/
H A DTypeDef.cpp113 if (auto *typeParameter = dyn_cast<llvm::DefInit>(parameterType)) { in getAllocator() local
114 llvm::RecordVal *code = typeParameter->getDef()->getValue("allocator"); in getAllocator()
121 typeParameter->getDef()->getLoc(), in getAllocator()
133 if (auto *typeParameter = dyn_cast<llvm::DefInit>(parameterType)) in getCppType() local
134 return typeParameter->getDef()->getValueAsString("cppType"); in getCppType()
141 if (auto *typeParameter = dyn_cast<llvm::DefInit>(parameterType)) { in getDescription() local
142 const auto *desc = typeParameter->getDef()->getValue("description"); in getDescription()
152 if (auto *typeParameter = dyn_cast<llvm::DefInit>(parameterType)) { in getSyntax() local
153 const auto *syntax = typeParameter->getDef()->getValue("syntax"); in getSyntax()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/mlir/lib/TableGen/
H A DTypeDef.cpp170 if (auto *typeParameter = dyn_cast<llvm::DefInit>(parameterType)) { in getAllocator() local
171 llvm::RecordVal *code = typeParameter->getDef()->getValue("allocator"); in getAllocator()
180 typeParameter->getDef()->getLoc(), in getAllocator()
192 if (auto *typeParameter = dyn_cast<llvm::DefInit>(parameterType)) in getCppType() local
193 return typeParameter->getDef()->getValueAsString("cppType"); in getCppType()
200 if (auto *typeParameter = dyn_cast<llvm::DefInit>(parameterType)) { in getSummary() local
201 const auto *desc = typeParameter->getDef()->getValue("summary"); in getSummary()
211 if (auto *typeParameter = dyn_cast<llvm::DefInit>(parameterType)) { in getSyntax() local
212 const auto *syntax = typeParameter->getDef()->getValue("syntax"); in getSyntax()
/dports/devel/llvm12/llvm-project-12.0.1.src/mlir/lib/TableGen/
H A DTypeDef.cpp170 if (auto *typeParameter = dyn_cast<llvm::DefInit>(parameterType)) { in getAllocator() local
171 llvm::RecordVal *code = typeParameter->getDef()->getValue("allocator"); in getAllocator()
180 typeParameter->getDef()->getLoc(), in getAllocator()
192 if (auto *typeParameter = dyn_cast<llvm::DefInit>(parameterType)) in getCppType() local
193 return typeParameter->getDef()->getValueAsString("cppType"); in getCppType()
200 if (auto *typeParameter = dyn_cast<llvm::DefInit>(parameterType)) { in getSummary() local
201 const auto *desc = typeParameter->getDef()->getValue("summary"); in getSummary()
211 if (auto *typeParameter = dyn_cast<llvm::DefInit>(parameterType)) { in getSyntax() local
212 const auto *syntax = typeParameter->getDef()->getValue("syntax"); in getSyntax()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data.Entity.Design/System/Data/EntityModel/Emitters/
H A DTypeReference.cs179 … public CodeTypeReference AdoFrameworkGenericClass(string name, CodeTypeReference typeParameter) in AdoFrameworkGenericClass() argument
181 return FrameworkGenericClass(Utils.AdoFrameworkNamespace, name, typeParameter); in AdoFrameworkGenericClass()
189 …public CodeTypeReference AdoFrameworkGenericDataClass(string name, CodeTypeReference typeParameter) in AdoFrameworkGenericDataClass() argument
191 … return FrameworkGenericClass(Utils.AdoFrameworkDataClassesNamespace, name, typeParameter); in AdoFrameworkGenericDataClass()
201 …Reference FrameworkGenericClass(string namespaceName, string name, CodeTypeReference typeParameter) in FrameworkGenericClass() argument
203 …r.Evaluate(new KeyValuePair<string, CodeTypeReference>(namespaceName + "." + name, typeParameter)); in FrameworkGenericClass()
209 CodeTypeReference typeParameter = arguments.Value; in ComputeFromStringGeneric()
211 typeRef.TypeArguments.Add(typeParameter); in ComputeFromStringGeneric()
/dports/net/bosh-bootloader/bosh-bootloader-7.2.12/vendor/github.com/Azure/azure-sdk-for-go/arm/compute/
H A Dvirtualmachineextensionimages.go45 …hineExtensionImagesClient) Get(location string, publisherName string, typeParameter string, versio…
46 req, err := client.GetPreparer(location, publisherName, typeParameter, version)
68 …nsionImagesClient) GetPreparer(location string, publisherName string, typeParameter string, versio…
73 "type": autorest.Encode("path", typeParameter),
181 …sionImagesClient) ListVersions(location string, publisherName string, typeParameter string, filter…
182 …req, err := client.ListVersionsPreparer(location, publisherName, typeParameter, filter, top, order…
204 …esClient) ListVersionsPreparer(location string, publisherName string, typeParameter string, filter…
209 "type": autorest.Encode("path", typeParameter),
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/docker/machine/machine-7b7a141da844/vendor/github.com/Azure/azure-sdk-for-go/arm/compute/
H A Dvirtualmachineextensionimages.go46 …hineExtensionImagesClient) Get(location string, publisherName string, typeParameter string, versio…
47 req, err := client.GetPreparer(location, publisherName, typeParameter, version)
67 …nsionImagesClient) GetPreparer(location string, publisherName string, typeParameter string, versio…
72 "type": autorest.Encode("path", typeParameter),
171 …sionImagesClient) ListVersions(location string, publisherName string, typeParameter string, filter…
172 …req, err := client.ListVersionsPreparer(location, publisherName, typeParameter, filter, top, order…
192 …esClient) ListVersionsPreparer(location string, publisherName string, typeParameter string, filter…
197 "type": autorest.Encode("path", typeParameter),
/dports/sysutils/docker-machine/machine-0.16.2/vendor/github.com/Azure/azure-sdk-for-go/arm/compute/
H A Dvirtualmachineextensionimages.go46 …hineExtensionImagesClient) Get(location string, publisherName string, typeParameter string, versio…
47 req, err := client.GetPreparer(location, publisherName, typeParameter, version)
67 …nsionImagesClient) GetPreparer(location string, publisherName string, typeParameter string, versio…
72 "type": autorest.Encode("path", typeParameter),
171 …sionImagesClient) ListVersions(location string, publisherName string, typeParameter string, filter…
172 …req, err := client.ListVersionsPreparer(location, publisherName, typeParameter, filter, top, order…
192 …esClient) ListVersionsPreparer(location string, publisherName string, typeParameter string, filter…
197 "type": autorest.Encode("path", typeParameter),
/dports/net-mgmt/prometheus1/prometheus-1.8.2/vendor/github.com/Azure/azure-sdk-for-go/arm/compute/
H A Dvirtualmachineextensionimages.go46 …hineExtensionImagesClient) Get(location string, publisherName string, typeParameter string, versio…
47 req, err := client.GetPreparer(location, publisherName, typeParameter, version)
67 …nsionImagesClient) GetPreparer(location string, publisherName string, typeParameter string, versio…
72 "type": autorest.Encode("path", typeParameter),
171 …sionImagesClient) ListVersions(location string, publisherName string, typeParameter string, filter…
172 …req, err := client.ListVersionsPreparer(location, publisherName, typeParameter, filter, top, order…
192 …esClient) ListVersionsPreparer(location string, publisherName string, typeParameter string, filter…
197 "type": autorest.Encode("path", typeParameter),
/dports/net-mgmt/bosun/bosun-0.9.0-preview/vendor/github.com/prometheus/prometheus/vendor/github.com/Azure/azure-sdk-for-go/arm/compute/
H A Dvirtualmachineextensionimages.go46 …hineExtensionImagesClient) Get(location string, publisherName string, typeParameter string, versio…
47 req, err := client.GetPreparer(location, publisherName, typeParameter, version)
67 …nsionImagesClient) GetPreparer(location string, publisherName string, typeParameter string, versio…
72 "type": autorest.Encode("path", typeParameter),
171 …sionImagesClient) ListVersions(location string, publisherName string, typeParameter string, filter…
172 …req, err := client.ListVersionsPreparer(location, publisherName, typeParameter, filter, top, order…
192 …esClient) ListVersionsPreparer(location string, publisherName string, typeParameter string, filter…
197 "type": autorest.Encode("path", typeParameter),
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.WorkflowServices/System/ServiceModel/Configuration/
H A DPersistenceProviderElement.cs22 const string typeParameter = "type"; field in System.ServiceModel.Configuration.PersistenceProviderElement
58 [ConfigurationProperty(typeParameter, IsRequired = true)]
62 get { return (string) base[typeParameter]; }
63 set { base[typeParameter] = value; }
73 Type providerType = System.Type.GetType((string) base[typeParameter]); in CreateBehavior()
/dports/net-mgmt/bosun/bosun-0.9.0-preview/vendor/github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2017-12-01/compute/
H A Dvirtualmachineextensionimages.go46 …ient) Get(ctx context.Context, location string, publisherName string, typeParameter string, versio…
47 req, err := client.GetPreparer(ctx, location, publisherName, typeParameter, version)
69 …tPreparer(ctx context.Context, location string, publisherName string, typeParameter string, versio…
74 "type": autorest.Encode("path", typeParameter),
181 …tVersions(ctx context.Context, location string, publisherName string, typeParameter string, filter…
182 …req, err := client.ListVersionsPreparer(ctx, location, publisherName, typeParameter, filter, top, …
204 …sPreparer(ctx context.Context, location string, publisherName string, typeParameter string, filter…
209 "type": autorest.Encode("path", typeParameter),
/dports/net-mgmt/bosun/bosun-0.9.0-preview/vendor/github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2018-06-01/compute/
H A Dvirtualmachineextensionimages.go46 …ient) Get(ctx context.Context, location string, publisherName string, typeParameter string, versio…
47 req, err := client.GetPreparer(ctx, location, publisherName, typeParameter, version)
69 …tPreparer(ctx context.Context, location string, publisherName string, typeParameter string, versio…
74 "type": autorest.Encode("path", typeParameter),
181 …tVersions(ctx context.Context, location string, publisherName string, typeParameter string, filter…
182 …req, err := client.ListVersionsPreparer(ctx, location, publisherName, typeParameter, filter, top, …
204 …sPreparer(ctx context.Context, location string, publisherName string, typeParameter string, filter…
209 "type": autorest.Encode("path", typeParameter),
/dports/net-mgmt/bosun/bosun-0.9.0-preview/vendor/github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2016-04-30-preview/compute/
H A Dvirtualmachineextensionimages.go50 …ient) Get(ctx context.Context, location string, publisherName string, typeParameter string, versio…
51 req, err := client.GetPreparer(ctx, location, publisherName, typeParameter, version)
74 …tPreparer(ctx context.Context, location string, publisherName string, typeParameter string, versio…
79 "type": autorest.Encode("path", typeParameter),
192 …tVersions(ctx context.Context, location string, publisherName string, typeParameter string, filter…
193 …req, err := client.ListVersionsPreparer(ctx, location, publisherName, typeParameter, filter, top, …
216 …sPreparer(ctx context.Context, location string, publisherName string, typeParameter string, filter…
221 "type": autorest.Encode("path", typeParameter),
/dports/net-mgmt/bosun/bosun-0.9.0-preview/vendor/github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2018-10-01/compute/
H A Dvirtualmachineextensionimages.go46 …ient) Get(ctx context.Context, location string, publisherName string, typeParameter string, versio…
47 req, err := client.GetPreparer(ctx, location, publisherName, typeParameter, version)
69 …tPreparer(ctx context.Context, location string, publisherName string, typeParameter string, versio…
74 "type": autorest.Encode("path", typeParameter),
181 …tVersions(ctx context.Context, location string, publisherName string, typeParameter string, filter…
182 …req, err := client.ListVersionsPreparer(ctx, location, publisherName, typeParameter, filter, top, …
204 …sPreparer(ctx context.Context, location string, publisherName string, typeParameter string, filter…
209 "type": autorest.Encode("path", typeParameter),
/dports/sysutils/docker-registry/distribution-2.7.1/vendor/github.com/Azure/azure-sdk-for-go/azure-sdk-for-go-16.2.1/services/preview/compute/mgmt/2016-04-30-preview/compute/
H A Dvirtualmachineextensionimages.go46 …ient) Get(ctx context.Context, location string, publisherName string, typeParameter string, versio…
47 req, err := client.GetPreparer(ctx, location, publisherName, typeParameter, version)
69 …tPreparer(ctx context.Context, location string, publisherName string, typeParameter string, versio…
74 "type": autorest.Encode("path", typeParameter),
181 …tVersions(ctx context.Context, location string, publisherName string, typeParameter string, filter…
182 …req, err := client.ListVersionsPreparer(ctx, location, publisherName, typeParameter, filter, top, …
204 …sPreparer(ctx context.Context, location string, publisherName string, typeParameter string, filter…
209 "type": autorest.Encode("path", typeParameter),
/dports/sysutils/docker-registry/distribution-2.7.1/vendor/github.com/Azure/azure-sdk-for-go/azure-sdk-for-go-16.2.1/services/compute/mgmt/2016-04-30-preview/compute/
H A Dvirtualmachineextensionimages.go50 …ient) Get(ctx context.Context, location string, publisherName string, typeParameter string, versio…
51 req, err := client.GetPreparer(ctx, location, publisherName, typeParameter, version)
74 …tPreparer(ctx context.Context, location string, publisherName string, typeParameter string, versio…
79 "type": autorest.Encode("path", typeParameter),
192 …tVersions(ctx context.Context, location string, publisherName string, typeParameter string, filter…
193 …req, err := client.ListVersionsPreparer(ctx, location, publisherName, typeParameter, filter, top, …
216 …sPreparer(ctx context.Context, location string, publisherName string, typeParameter string, filter…
221 "type": autorest.Encode("path", typeParameter),
/dports/sysutils/docker-registry/distribution-2.7.1/vendor/github.com/Azure/azure-sdk-for-go/azure-sdk-for-go-16.2.1/services/compute/mgmt/2017-03-30/compute/
H A Dvirtualmachineextensionimages.go46 …ient) Get(ctx context.Context, location string, publisherName string, typeParameter string, versio…
47 req, err := client.GetPreparer(ctx, location, publisherName, typeParameter, version)
69 …tPreparer(ctx context.Context, location string, publisherName string, typeParameter string, versio…
74 "type": autorest.Encode("path", typeParameter),
181 …tVersions(ctx context.Context, location string, publisherName string, typeParameter string, filter…
182 …req, err := client.ListVersionsPreparer(ctx, location, publisherName, typeParameter, filter, top, …
204 …sPreparer(ctx context.Context, location string, publisherName string, typeParameter string, filter…
209 "type": autorest.Encode("path", typeParameter),
/dports/sysutils/docker-registry/distribution-2.7.1/vendor/github.com/Azure/azure-sdk-for-go/azure-sdk-for-go-16.2.1/services/compute/mgmt/2016-03-30/compute/
H A Dvirtualmachineextensionimages.go46 …ient) Get(ctx context.Context, location string, publisherName string, typeParameter string, versio…
47 req, err := client.GetPreparer(ctx, location, publisherName, typeParameter, version)
69 …tPreparer(ctx context.Context, location string, publisherName string, typeParameter string, versio…
74 "type": autorest.Encode("path", typeParameter),
181 …tVersions(ctx context.Context, location string, publisherName string, typeParameter string, filter…
182 …req, err := client.ListVersionsPreparer(ctx, location, publisherName, typeParameter, filter, top, …
204 …sPreparer(ctx context.Context, location string, publisherName string, typeParameter string, filter…
209 "type": autorest.Encode("path", typeParameter),
/dports/sysutils/docker-registry/distribution-2.7.1/vendor/github.com/Azure/azure-sdk-for-go/azure-sdk-for-go-16.2.1/services/compute/mgmt/2018-04-01/compute/
H A Dvirtualmachineextensionimages.go46 …ient) Get(ctx context.Context, location string, publisherName string, typeParameter string, versio…
47 req, err := client.GetPreparer(ctx, location, publisherName, typeParameter, version)
69 …tPreparer(ctx context.Context, location string, publisherName string, typeParameter string, versio…
74 "type": autorest.Encode("path", typeParameter),
181 …tVersions(ctx context.Context, location string, publisherName string, typeParameter string, filter…
182 …req, err := client.ListVersionsPreparer(ctx, location, publisherName, typeParameter, filter, top, …
204 …sPreparer(ctx context.Context, location string, publisherName string, typeParameter string, filter…
209 "type": autorest.Encode("path", typeParameter),
/dports/sysutils/docker-registry/distribution-2.7.1/vendor/github.com/Azure/azure-sdk-for-go/azure-sdk-for-go-16.2.1/services/compute/mgmt/2015-06-15/compute/
H A Dvirtualmachineextensionimages.go46 …ient) Get(ctx context.Context, location string, publisherName string, typeParameter string, versio…
47 req, err := client.GetPreparer(ctx, location, publisherName, typeParameter, version)
69 …tPreparer(ctx context.Context, location string, publisherName string, typeParameter string, versio…
74 "type": autorest.Encode("path", typeParameter),
181 …tVersions(ctx context.Context, location string, publisherName string, typeParameter string, filter…
182 …req, err := client.ListVersionsPreparer(ctx, location, publisherName, typeParameter, filter, top, …
204 …sPreparer(ctx context.Context, location string, publisherName string, typeParameter string, filter…
209 "type": autorest.Encode("path", typeParameter),
/dports/sysutils/docker-registry/distribution-2.7.1/vendor/github.com/Azure/azure-sdk-for-go/azure-sdk-for-go-16.2.1/services/compute/mgmt/2017-12-01/compute/
H A Dvirtualmachineextensionimages.go46 …ient) Get(ctx context.Context, location string, publisherName string, typeParameter string, versio…
47 req, err := client.GetPreparer(ctx, location, publisherName, typeParameter, version)
69 …tPreparer(ctx context.Context, location string, publisherName string, typeParameter string, versio…
74 "type": autorest.Encode("path", typeParameter),
180 …tVersions(ctx context.Context, location string, publisherName string, typeParameter string, filter…
181 …req, err := client.ListVersionsPreparer(ctx, location, publisherName, typeParameter, filter, top, …
203 …sPreparer(ctx context.Context, location string, publisherName string, typeParameter string, filter…
208 "type": autorest.Encode("path", typeParameter),

12345678910>>...40