Home
last modified time | relevance | path

Searched refs:receiverType (Results 1 – 25 of 814) sorted by relevance

12345678910>>...33

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/eval/org/eclipse/jdt/internal/eval/
H A DCodeSnippetScope.java91 if (receiverType instanceof ArrayBinding) in canBeSeenByForCodeSnippet()
129 if (receiverType instanceof ArrayBinding) in canBeSeenByForCodeSnippet()
131 ReferenceBinding type = (ReferenceBinding) receiverType; in canBeSeenByForCodeSnippet()
166 if (receiverType instanceof ArrayBinding) in canBeSeenByForCodeSnippet()
204 if (receiverType instanceof ArrayBinding) in canBeSeenByForCodeSnippet()
206 ReferenceBinding type = (ReferenceBinding) receiverType; in canBeSeenByForCodeSnippet()
235 || referenceBinding.isSuperclassOf(receiverType) in canBeSeenByForCodeSnippet()
242 ReferenceBinding outerInvocationType = receiverType; in canBeSeenByForCodeSnippet()
266 …if (receiverType.isInterface() || canBeSeenByForCodeSnippet(exactMethod, receiverType, invocationS… in findExactMethod()
284 if (receiverType.isBaseType()) in findFieldForCodeSnippet()
[all …]
/dports/java/phpeclipse/plugins/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/
H A DQualifiedAllocationExpression.java200 TypeBinding receiverType = null; in resolveType() local
229 return receiverType; in resolveType()
231 if (!receiverType.canBeInstantiated()) { in resolveType()
233 return receiverType; in resolveType()
250 return receiverType; in resolveType()
258 return receiverType; in resolveType()
263 return receiverType; in resolveType()
283 receiverType = type.resolveType(scope); in resolveType()
285 if (receiverType == null) { in resolveType()
289 receiverType); in resolveType()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/compmod/system/componentmodel/
H A DExtenderProvidedPropertyAttribute.cs27 private Type receiverType; field in System.ComponentModel.ExtenderProvidedPropertyAttribute
32 …dedPropertyAttribute Create(PropertyDescriptor extenderProperty, Type receiverType, IExtenderProvi… in Create() argument
35 e.receiverType = receiverType; in Create()
69 return receiverType;
80 …ls(extenderProperty) && other.provider.Equals(provider) && other.receiverType.Equals(receiverType); in Equals()
91 return receiverType == null; in IsDefaultAttribute()
/dports/java/eclipse-ecj/eclipse-ecj-4.4.2_1/org/eclipse/jdt/internal/compiler/ast/
H A DQualifiedAllocationExpression.java302 TypeBinding receiverType = null; in resolveTypeForQualifiedAllocationExpression() local
340 receiverType = scope.enclosingSourceType(); in resolveTypeForQualifiedAllocationExpression()
345 if (receiverType == null || !receiverType.isValidBinding()) break checkParameterizedAllocation; in resolveTypeForQualifiedAllocationExpression()
364 if (receiverType == null || !receiverType.isValidBinding()) { in resolveTypeForQualifiedAllocationExpression()
431 if (receiverType.isValidBinding()) { in resolveTypeForQualifiedAllocationExpression()
463 return this.resolvedType = receiverType; in resolveTypeForQualifiedAllocationExpression()
467 if (!receiverType.canBeInstantiated()) { in resolveTypeForQualifiedAllocationExpression()
469 return this.resolvedType = receiverType; in resolveTypeForQualifiedAllocationExpression()
501 return this.resolvedType = receiverType; in resolveTypeForQualifiedAllocationExpression()
515 return this.resolvedType = receiverType; in resolveTypeForQualifiedAllocationExpression()
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core.tests.model/workspace/Compiler/src/org/eclipse/jdt/internal/compiler/ast/
H A DQualifiedAllocationExpression.java208 TypeBinding receiverType = null; in resolveType() local
230 if (receiverType != null && enclosingInstanceContainsCast) { in resolveType()
235 receiverType = type.resolveType(scope); in resolveType()
237 if (receiverType == null) { in resolveType()
271 if (hasError) return this.resolvedType = receiverType; in resolveType()
275 if (!receiverType.canBeInstantiated()) { in resolveType()
277 return this.resolvedType = receiverType; in resolveType()
290 return this.resolvedType = receiverType; in resolveType()
297 return receiverType; in resolveType()
300 return this.resolvedType = receiverType; in resolveType()
[all …]
H A DJavadocMessageSend.java43 this.receiverType = scope.enclosingSourceType(); in internalResolveType()
45 this.receiverType = this.receiver.resolveType((ClassScope) scope); in internalResolveType()
47 this.receiverType = this.receiver.resolveType((BlockScope) scope); in internalResolveType()
73 if (this.receiverType == null) { in internalResolveType()
76 this.qualifyingType = this.receiverType; in internalResolveType()
77 this.superAccess = scope.enclosingSourceType().isCompatibleWith(this.receiverType); in internalResolveType()
80 if (this.receiverType.isBaseType()) { in internalResolveType()
81 …scope.problemReporter().javadocErrorNoMethodFor(this, this.receiverType, argumentTypes, scope.getD… in internalResolveType()
86 : scope.getMethod(this.receiverType, this.selector, argumentTypes, this); in internalResolveType()
101 if (this.receiverType instanceof ReferenceBinding) { in internalResolveType()
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vic/vendor/github.com/google/go-github/github/
H A Dgen-accessors.go158 func newGetter(receiverType, fieldName, fieldType, zeroValue string) *getter { argument
160 sortVal: strings.ToLower(receiverType) + "." + strings.ToLower(fieldName),
161 ReceiverVar: strings.ToLower(receiverType[:1]),
162 ReceiverType: receiverType,
169 func (t *templateData) addArrayType(x *ast.ArrayType, receiverType, fieldName string) { argument
179 t.Getters = append(t.Getters, newGetter(receiverType, fieldName, "[]"+eltType, "nil"))
182 func (t *templateData) addIdent(x *ast.Ident, receiverType, fieldName string) { argument
197 t.Getters = append(t.Getters, newGetter(receiverType, fieldName, x.String(), zeroValue))
200 func (t *templateData) addMapType(x *ast.MapType, receiverType, fieldName string) { argument
221 t.Getters = append(t.Getters, newGetter(receiverType, fieldName, fieldType, zeroValue))
[all …]
/dports/net/evans/evans-0.9.1/vendor/github.com/google/go-github/github/
H A Dgen-accessors.go177 func newGetter(receiverType, fieldName, fieldType, zeroValue string, namedStruct bool) *getter { argument
179 sortVal: strings.ToLower(receiverType) + "." + strings.ToLower(fieldName),
180 ReceiverVar: strings.ToLower(receiverType[:1]),
181 ReceiverType: receiverType,
189 func (t *templateData) addArrayType(x *ast.ArrayType, receiverType, fieldName string) { argument
199 t.Getters = append(t.Getters, newGetter(receiverType, fieldName, "[]"+eltType, "nil", false))
202 func (t *templateData) addIdent(x *ast.Ident, receiverType, fieldName string) { argument
222 func (t *templateData) addMapType(x *ast.MapType, receiverType, fieldName string) { argument
243 t.Getters = append(t.Getters, newGetter(receiverType, fieldName, fieldType, zeroValue, false))
246 func (t *templateData) addSelectorExpr(x *ast.SelectorExpr, receiverType, fieldName string) { argument
[all …]
/dports/deskutils/pet/pet-0.4.0/vendor/github.com/google/go-github/github/
H A Dgen-accessors.go177 func newGetter(receiverType, fieldName, fieldType, zeroValue string, namedStruct bool) *getter { argument
179 sortVal: strings.ToLower(receiverType) + "." + strings.ToLower(fieldName),
180 ReceiverVar: strings.ToLower(receiverType[:1]),
181 ReceiverType: receiverType,
189 func (t *templateData) addArrayType(x *ast.ArrayType, receiverType, fieldName string) { argument
199 t.Getters = append(t.Getters, newGetter(receiverType, fieldName, "[]"+eltType, "nil", false))
202 func (t *templateData) addIdent(x *ast.Ident, receiverType, fieldName string) { argument
222 func (t *templateData) addMapType(x *ast.MapType, receiverType, fieldName string) { argument
243 t.Getters = append(t.Getters, newGetter(receiverType, fieldName, fieldType, zeroValue, false))
246 func (t *templateData) addSelectorExpr(x *ast.SelectorExpr, receiverType, fieldName string) { argument
[all …]
/dports/devel/git-town/git-town-7.6.0/vendor/github.com/google/go-github/go-github-17.0.0/github/
H A Dgen-accessors.go177 func newGetter(receiverType, fieldName, fieldType, zeroValue string, namedStruct bool) *getter { argument
179 sortVal: strings.ToLower(receiverType) + "." + strings.ToLower(fieldName),
180 ReceiverVar: strings.ToLower(receiverType[:1]),
181 ReceiverType: receiverType,
189 func (t *templateData) addArrayType(x *ast.ArrayType, receiverType, fieldName string) { argument
199 t.Getters = append(t.Getters, newGetter(receiverType, fieldName, "[]"+eltType, "nil", false))
202 func (t *templateData) addIdent(x *ast.Ident, receiverType, fieldName string) { argument
222 func (t *templateData) addMapType(x *ast.MapType, receiverType, fieldName string) { argument
243 t.Getters = append(t.Getters, newGetter(receiverType, fieldName, fieldType, zeroValue, false))
246 func (t *templateData) addSelectorExpr(x *ast.SelectorExpr, receiverType, fieldName string) { argument
[all …]
/dports/sysutils/chezmoi/chezmoi-2.9.3/vendor/github.com/google/go-github/v41/github/
H A Dgen-stringify-test.go223 func (t *templateData) addMapType(receiverType, fieldName string) {
224 …t.StructFields[receiverType] = append(t.StructFields[receiverType], newStructField(receiverType, f…
227 func (t *templateData) addIdent(x *ast.Ident, receiverType, fieldName string) {
248 …t.StructFields[receiverType] = append(t.StructFields[receiverType], newStructField(receiverType, f…
251 func (t *templateData) addIdentPtr(x *ast.Ident, receiverType, fieldName string) {
272 …t.StructFields[receiverType] = append(t.StructFields[receiverType], newStructField(receiverType, f…
307 func newStructField(receiverType, fieldName, fieldType, zeroValue string, namedStruct bool) *struct… argument
309 sortVal: strings.ToLower(receiverType) + "." + strings.ToLower(fieldName),
310 ReceiverVar: strings.ToLower(receiverType[:1]),
311 ReceiverType: receiverType,
/dports/net/cloudquery/cloudquery-0.16.0/vendor/github.com/google/go-github/v35/github/
H A Dgen-stringify-test.go227 func (t *templateData) addMapType(receiverType, fieldName string) {
228 …t.StructFields[receiverType] = append(t.StructFields[receiverType], newStructField(receiverType, f…
231 func (t *templateData) addIdent(x *ast.Ident, receiverType, fieldName string) {
252 …t.StructFields[receiverType] = append(t.StructFields[receiverType], newStructField(receiverType, f…
255 func (t *templateData) addIdentPtr(x *ast.Ident, receiverType, fieldName string) {
276 …t.StructFields[receiverType] = append(t.StructFields[receiverType], newStructField(receiverType, f…
311 func newStructField(receiverType, fieldName, fieldType, zeroValue string, namedStruct bool) *struct… argument
313 sortVal: strings.ToLower(receiverType) + "." + strings.ToLower(fieldName),
314 ReceiverVar: strings.ToLower(receiverType[:1]),
315 ReceiverType: receiverType,
/dports/www/beehive/beehive-0.4.0/vendor/github.com/google/go-github/github/
H A Dgen-accessors.go177 func newGetter(receiverType, fieldName, fieldType, zeroValue string, namedStruct bool) *getter { argument
179 sortVal: strings.ToLower(receiverType) + "." + strings.ToLower(fieldName),
180 ReceiverVar: strings.ToLower(receiverType[:1]),
181 ReceiverType: receiverType,
189 func (t *templateData) addArrayType(x *ast.ArrayType, receiverType, fieldName string) { argument
199 t.Getters = append(t.Getters, newGetter(receiverType, fieldName, "[]"+eltType, "nil", false))
202 func (t *templateData) addIdent(x *ast.Ident, receiverType, fieldName string) { argument
222 func (t *templateData) addMapType(x *ast.MapType, receiverType, fieldName string) { argument
243 t.Getters = append(t.Getters, newGetter(receiverType, fieldName, fieldType, zeroValue, false))
246 func (t *templateData) addSelectorExpr(x *ast.SelectorExpr, receiverType, fieldName string) { argument
[all …]
/dports/misc/concourse/vault-bdd38fca2cff/vendor/github.com/google/go-github/github/
H A Dgen-accessors.go177 func newGetter(receiverType, fieldName, fieldType, zeroValue string, namedStruct bool) *getter { argument
179 sortVal: strings.ToLower(receiverType) + "." + strings.ToLower(fieldName),
180 ReceiverVar: strings.ToLower(receiverType[:1]),
181 ReceiverType: receiverType,
189 func (t *templateData) addArrayType(x *ast.ArrayType, receiverType, fieldName string) { argument
199 t.Getters = append(t.Getters, newGetter(receiverType, fieldName, "[]"+eltType, "nil", false))
202 func (t *templateData) addIdent(x *ast.Ident, receiverType, fieldName string) { argument
222 func (t *templateData) addMapType(x *ast.MapType, receiverType, fieldName string) { argument
243 t.Getters = append(t.Getters, newGetter(receiverType, fieldName, fieldType, zeroValue, false))
246 func (t *templateData) addSelectorExpr(x *ast.SelectorExpr, receiverType, fieldName string) { argument
[all …]
/dports/misc/concourse/concourse-6.7.2/vendor/github.com/hashicorp/vault/vendor/github.com/google/go-github/github/
H A Dgen-accessors.go177 func newGetter(receiverType, fieldName, fieldType, zeroValue string, namedStruct bool) *getter { argument
179 sortVal: strings.ToLower(receiverType) + "." + strings.ToLower(fieldName),
180 ReceiverVar: strings.ToLower(receiverType[:1]),
181 ReceiverType: receiverType,
189 func (t *templateData) addArrayType(x *ast.ArrayType, receiverType, fieldName string) { argument
199 t.Getters = append(t.Getters, newGetter(receiverType, fieldName, "[]"+eltType, "nil", false))
202 func (t *templateData) addIdent(x *ast.Ident, receiverType, fieldName string) { argument
222 func (t *templateData) addMapType(x *ast.MapType, receiverType, fieldName string) { argument
243 t.Getters = append(t.Getters, newGetter(receiverType, fieldName, fieldType, zeroValue, false))
246 func (t *templateData) addSelectorExpr(x *ast.SelectorExpr, receiverType, fieldName string) { argument
[all …]
/dports/sysutils/gomplate/gomplate-3.9.0/vendor/github.com/hashicorp/vault/vendor/github.com/google/go-github/github/
H A Dgen-accessors.go177 func newGetter(receiverType, fieldName, fieldType, zeroValue string, namedStruct bool) *getter { argument
179 sortVal: strings.ToLower(receiverType) + "." + strings.ToLower(fieldName),
180 ReceiverVar: strings.ToLower(receiverType[:1]),
181 ReceiverType: receiverType,
189 func (t *templateData) addArrayType(x *ast.ArrayType, receiverType, fieldName string) { argument
199 t.Getters = append(t.Getters, newGetter(receiverType, fieldName, "[]"+eltType, "nil", false))
202 func (t *templateData) addIdent(x *ast.Ident, receiverType, fieldName string) { argument
222 func (t *templateData) addMapType(x *ast.MapType, receiverType, fieldName string) { argument
243 t.Getters = append(t.Getters, newGetter(receiverType, fieldName, fieldType, zeroValue, false))
246 func (t *templateData) addSelectorExpr(x *ast.SelectorExpr, receiverType, fieldName string) { argument
[all …]
/dports/security/vuls/vuls-0.13.7/vendor/github.com/google/go-github/v28/github/
H A Dgen-stringify-test.go227 func (t *templateData) addMapType(receiverType, fieldName string) {
228 …t.StructFields[receiverType] = append(t.StructFields[receiverType], newStructField(receiverType, f…
231 func (t *templateData) addIdent(x *ast.Ident, receiverType, fieldName string) {
252 …t.StructFields[receiverType] = append(t.StructFields[receiverType], newStructField(receiverType, f…
255 func (t *templateData) addIdentPtr(x *ast.Ident, receiverType, fieldName string) {
276 …t.StructFields[receiverType] = append(t.StructFields[receiverType], newStructField(receiverType, f…
311 func newStructField(receiverType, fieldName, fieldType, zeroValue string, namedStruct bool) *struct… argument
313 sortVal: strings.ToLower(receiverType) + "." + strings.ToLower(fieldName),
314 ReceiverVar: strings.ToLower(receiverType[:1]),
315 ReceiverType: receiverType,
H A Dgen-accessors.go178 func newGetter(receiverType, fieldName, fieldType, zeroValue string, namedStruct bool) *getter { argument
180 sortVal: strings.ToLower(receiverType) + "." + strings.ToLower(fieldName),
181 ReceiverVar: strings.ToLower(receiverType[:1]),
182 ReceiverType: receiverType,
190 func (t *templateData) addArrayType(x *ast.ArrayType, receiverType, fieldName string) { argument
200 t.Getters = append(t.Getters, newGetter(receiverType, fieldName, "[]"+eltType, "nil", false))
203 func (t *templateData) addIdent(x *ast.Ident, receiverType, fieldName string) { argument
223 func (t *templateData) addMapType(x *ast.MapType, receiverType, fieldName string) { argument
244 t.Getters = append(t.Getters, newGetter(receiverType, fieldName, fieldType, zeroValue, false))
247 func (t *templateData) addSelectorExpr(x *ast.SelectorExpr, receiverType, fieldName string) { argument
[all …]
/dports/net-mgmt/semaphore/semaphore-2.6.8/vendor/github.com/google/go-github/github/
H A Dgen-accessors.go177 func newGetter(receiverType, fieldName, fieldType, zeroValue string, namedStruct bool) *getter { argument
179 sortVal: strings.ToLower(receiverType) + "." + strings.ToLower(fieldName),
180 ReceiverVar: strings.ToLower(receiverType[:1]),
181 ReceiverType: receiverType,
189 func (t *templateData) addArrayType(x *ast.ArrayType, receiverType, fieldName string) { argument
199 t.Getters = append(t.Getters, newGetter(receiverType, fieldName, "[]"+eltType, "nil", false))
202 func (t *templateData) addIdent(x *ast.Ident, receiverType, fieldName string) { argument
222 func (t *templateData) addMapType(x *ast.MapType, receiverType, fieldName string) { argument
243 t.Getters = append(t.Getters, newGetter(receiverType, fieldName, fieldType, zeroValue, false))
246 func (t *templateData) addSelectorExpr(x *ast.SelectorExpr, receiverType, fieldName string) { argument
[all …]
/dports/security/gopass/gopass-1.13.0/vendor/github.com/google/go-github/v33/github/
H A Dgen-stringify-test.go227 func (t *templateData) addMapType(receiverType, fieldName string) {
228 …t.StructFields[receiverType] = append(t.StructFields[receiverType], newStructField(receiverType, f…
231 func (t *templateData) addIdent(x *ast.Ident, receiverType, fieldName string) {
252 …t.StructFields[receiverType] = append(t.StructFields[receiverType], newStructField(receiverType, f…
255 func (t *templateData) addIdentPtr(x *ast.Ident, receiverType, fieldName string) {
276 …t.StructFields[receiverType] = append(t.StructFields[receiverType], newStructField(receiverType, f…
311 func newStructField(receiverType, fieldName, fieldType, zeroValue string, namedStruct bool) *struct… argument
313 sortVal: strings.ToLower(receiverType) + "." + strings.ToLower(fieldName),
314 ReceiverVar: strings.ToLower(receiverType[:1]),
315 ReceiverType: receiverType,
H A Dgen-accessors.go178 func newGetter(receiverType, fieldName, fieldType, zeroValue string, namedStruct bool) *getter { argument
180 sortVal: strings.ToLower(receiverType) + "." + strings.ToLower(fieldName),
181 ReceiverVar: strings.ToLower(receiverType[:1]),
182 ReceiverType: receiverType,
190 func (t *templateData) addArrayType(x *ast.ArrayType, receiverType, fieldName string) { argument
200 t.Getters = append(t.Getters, newGetter(receiverType, fieldName, "[]"+eltType, "nil", false))
203 func (t *templateData) addIdent(x *ast.Ident, receiverType, fieldName string) { argument
223 func (t *templateData) addMapType(x *ast.MapType, receiverType, fieldName string) { argument
244 t.Getters = append(t.Getters, newGetter(receiverType, fieldName, fieldType, zeroValue, false))
247 func (t *templateData) addSelectorExpr(x *ast.SelectorExpr, receiverType, fieldName string) { argument
[all …]
/dports/security/gopass/gopass-1.13.0/vendor/github.com/google/go-github/github/
H A Dgen-accessors.go177 func newGetter(receiverType, fieldName, fieldType, zeroValue string, namedStruct bool) *getter { argument
179 sortVal: strings.ToLower(receiverType) + "." + strings.ToLower(fieldName),
180 ReceiverVar: strings.ToLower(receiverType[:1]),
181 ReceiverType: receiverType,
189 func (t *templateData) addArrayType(x *ast.ArrayType, receiverType, fieldName string) { argument
199 t.Getters = append(t.Getters, newGetter(receiverType, fieldName, "[]"+eltType, "nil", false))
202 func (t *templateData) addIdent(x *ast.Ident, receiverType, fieldName string) { argument
222 func (t *templateData) addMapType(x *ast.MapType, receiverType, fieldName string) { argument
243 t.Getters = append(t.Getters, newGetter(receiverType, fieldName, fieldType, zeroValue, false))
246 func (t *templateData) addSelectorExpr(x *ast.SelectorExpr, receiverType, fieldName string) { argument
[all …]
/dports/sysutils/helmfile/helmfile-0.138.7/vendor/github.com/hashicorp/vault/vendor/github.com/google/go-github/github/
H A Dgen-accessors.go177 func newGetter(receiverType, fieldName, fieldType, zeroValue string, namedStruct bool) *getter { argument
179 sortVal: strings.ToLower(receiverType) + "." + strings.ToLower(fieldName),
180 ReceiverVar: strings.ToLower(receiverType[:1]),
181 ReceiverType: receiverType,
189 func (t *templateData) addArrayType(x *ast.ArrayType, receiverType, fieldName string) { argument
199 t.Getters = append(t.Getters, newGetter(receiverType, fieldName, "[]"+eltType, "nil", false))
202 func (t *templateData) addIdent(x *ast.Ident, receiverType, fieldName string) { argument
222 func (t *templateData) addMapType(x *ast.MapType, receiverType, fieldName string) { argument
243 t.Getters = append(t.Getters, newGetter(receiverType, fieldName, fieldType, zeroValue, false))
246 func (t *templateData) addSelectorExpr(x *ast.SelectorExpr, receiverType, fieldName string) { argument
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/google/go-github/github/
H A Dgen-accessors.go177 func newGetter(receiverType, fieldName, fieldType, zeroValue string, namedStruct bool) *getter { argument
179 sortVal: strings.ToLower(receiverType) + "." + strings.ToLower(fieldName),
180 ReceiverVar: strings.ToLower(receiverType[:1]),
181 ReceiverType: receiverType,
189 func (t *templateData) addArrayType(x *ast.ArrayType, receiverType, fieldName string) { argument
199 t.Getters = append(t.Getters, newGetter(receiverType, fieldName, "[]"+eltType, "nil", false))
202 func (t *templateData) addIdent(x *ast.Ident, receiverType, fieldName string) { argument
222 func (t *templateData) addMapType(x *ast.MapType, receiverType, fieldName string) { argument
243 t.Getters = append(t.Getters, newGetter(receiverType, fieldName, fieldType, zeroValue, false))
246 func (t *templateData) addSelectorExpr(x *ast.SelectorExpr, receiverType, fieldName string) { argument
[all …]
/dports/sysutils/go-wtf/wtf-0.21.0/vendor/github.com/zorkian/go-datadog-api/go-datadog-api-2.21.0/cmd/tools/
H A Dgen-accessors.go163 func newAccessor(receiverType, fieldName, fieldType, zeroValue string) *accessor { argument
165 sortVal: strings.ToLower(receiverType) + "." + strings.ToLower(fieldName),
166 ReceiverVar: strings.ToLower(receiverType[:1]),
167 ReceiverType: receiverType,
175 func (t *templateData) addIdent(x *ast.Ident, receiverType, fieldName string) { argument
194 t.Accessors = append(t.Accessors, newAccessor(receiverType, fieldName, x.String(), zeroValue))
198 func (t *templateData) addSelectorExpr(x *ast.SelectorExpr, receiverType, fieldName string) { argument
230 func (t *templateData) addMapType(x *ast.MapType, receiverType, fieldName string) { argument
252 t.Accessors = append(t.Accessors, newAccessor(receiverType, fieldName, fieldType, zeroValue))
256 func (t *templateData) addArrayType(x *ast.ArrayType, receiverType, fieldName string) { argument
[all …]

12345678910>>...33