Home
last modified time | relevance | path

Searched refs:constantPoolName (Results 1 – 25 of 81) sorted by relevance

1234

/dports/java/eclipse-ecj/eclipse-ecj-4.4.2_1/org/eclipse/jdt/internal/compiler/codegen/
H A DVerificationTypeInfo.java66 private char[] constantPoolName; field in VerificationTypeInfo
78 this.constantPoolName = constantPoolName; in VerificationTypeInfo()
108 this.constantPoolName = binding.constantPoolName(); in VerificationTypeInfo()
112 this.constantPoolName = binding.constantPoolName(); in setBinding()
179 verificationTypeInfo.constantPoolName = this.constantPoolName; in duplicate()
186 …return info1.tag == this.tag && CharOperation.equals(info1.constantPoolName(), constantPoolName()); in equals()
193 public char[] constantPoolName() { in constantPoolName() method in VerificationTypeInfo
194 return this.constantPoolName; in constantPoolName()
197 return this.constantPoolName; in readableName()
201 …this.constantPoolName = CharOperation.subarray(this.constantPoolName, 2, this.constantPoolName.le… in replaceWithElementType()
[all …]
H A DStackMapFrameCodeStream.java36 public char[] constantPoolName; field in StackMapFrameCodeStream.ExceptionMarker
39 public ExceptionMarker(int pc, char[] constantPoolName) { in ExceptionMarker() argument
41 this.constantPoolName = constantPoolName; in ExceptionMarker()
52 …eturn this.pc == marker.pc && CharOperation.equals(this.constantPoolName, marker.constantPoolName); in equals()
57 return this.pc + this.constantPoolName.hashCode(); in hashCode()
61 buffer.append('(').append(this.pc).append(',').append(this.constantPoolName).append(')'); in toString()
202 this.exceptionMarkers.add(new ExceptionMarker(pc, typeBinding.constantPoolName())); in addExceptionMarker()
308 …TypeBinding.NULL ? "java.lang.Object" : String.valueOf(accessedType.constantPoolName()).replace('/… in generateClassLiteralAccessForType()
/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 DLocalTypeBinding.java149 public char[] constantPoolName() /* java/lang/Object */ { in constantPoolName() method in LocalTypeBinding
150 if (this.constantPoolName != null) in constantPoolName()
151 return this.constantPoolName; in constantPoolName()
153 return this.constantPoolName = this.prototype.constantPoolName(); in constantPoolName()
154 if (this.constantPoolName == null && this.scope != null) { in constantPoolName()
159 return this.constantPoolName; in constantPoolName()
257 this.constantPoolName = computedConstantPoolName; in setConstantPoolName()
261 this.constantPoolName = computedConstantPoolName; in setConstantPoolName()
267 if (substLocalType.constantPoolName == null) { in transferConstantPoolNameTo()
268 substLocalType.setConstantPoolName(this.constantPoolName); in transferConstantPoolNameTo()
[all …]
H A DMemberTypeBinding.java45 public char[] constantPoolName() /* java/lang/Object */ { in constantPoolName() method in MemberTypeBinding
47 if (this.constantPoolName != null) in constantPoolName()
48 return this.constantPoolName; in constantPoolName()
51 return this.prototype.constantPoolName(); in constantPoolName()
54 …return this.constantPoolName = CharOperation.concat(enclosingType().constantPoolName(), this.sourc… in constantPoolName()
H A DBaseTypeBinding.java128 private char[] constantPoolName; field in BaseTypeBinding
130 BaseTypeBinding(int id, char[] name, char[] constantPoolName) { in BaseTypeBinding() argument
134 this.constantPoolName = constantPoolName; in BaseTypeBinding()
142 return constantPoolName(); in computeUniqueKey()
148 public char[] constantPoolName() { in constantPoolName() method in BaseTypeBinding
150 return this.constantPoolName; in constantPoolName()
155 return new BaseTypeBinding(this.id, this.simpleName, this.constantPoolName); in clone()
H A DIntersectionTypeBinding18.java131 public char[] constantPoolName() { in constantPoolName() method in IntersectionTypeBinding18
134 return erasure.constantPoolName(); in constantPoolName()
136 return this.intersectingTypes[1].constantPoolName(); // improve stack map in constantPoolName()
137 return this.intersectingTypes[0].constantPoolName(); in constantPoolName()
/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/lookup/
H A DBaseTypeBinding.java16 private char[] constantPoolName; field in BaseTypeBinding
18 BaseTypeBinding(int id, char[] name, char[] constantPoolName) { in BaseTypeBinding() argument
23 this.constantPoolName = constantPoolName; in BaseTypeBinding()
28 public char[] constantPoolName() { in constantPoolName() method in BaseTypeBinding
30 return constantPoolName; in constantPoolName()
184 return new String(constantPoolName) + " (id=" + id + ")"; //$NON-NLS-1$ //$NON-NLS-2$ in toString()
H A DMemberTypeBinding.java30 public char[] constantPoolName() /* java/lang/Object */ { in constantPoolName() method in MemberTypeBinding
31 if (constantPoolName != null) in constantPoolName()
32 return constantPoolName; in constantPoolName()
34 …return constantPoolName = CharOperation.concat(enclosingType().constantPoolName(), sourceName, '$'… in constantPoolName()
H A DArrayBinding.java25 char[] constantPoolName; field in ArrayBinding
60 public char[] constantPoolName() { in constantPoolName() method in ArrayBinding
61 if (constantPoolName != null) in constantPoolName()
62 return constantPoolName; in constantPoolName()
66 return constantPoolName = CharOperation.concat(brackets, leafComponentType.signature()); in constantPoolName()
H A DTypeVariableBinding.java94 public char[] constantPoolName() { /* java/lang/Object */ in constantPoolName() method in TypeVariableBinding
96 return this.firstBound.constantPoolName(); in constantPoolName()
98 return this.superclass.constantPoolName(); // java/lang/Object in constantPoolName()
H A DLocalTypeBinding.java61 public char[] constantPoolName() /* java/lang/Object */ { in constantPoolName() method in LocalTypeBinding
62 return constantPoolName; in constantPoolName()
144 this.constantPoolName = computedConstantPoolName; in setConstantPoolName()
H A DLookupEnvironment.java242 private PackageBinding computePackageFrom(char[][] constantPoolName) { in computePackageFrom() argument
243 if (constantPoolName.length == 1) in computePackageFrom()
246 PackageBinding packageBinding = getPackage0(constantPoolName[0]); in computePackageFrom()
248 packageBinding = new PackageBinding(constantPoolName[0], this); in computePackageFrom()
249 knownPackages.put(constantPoolName[0], packageBinding); in computePackageFrom()
252 for (int i = 1, length = constantPoolName.length - 1; i < length; i++) { in computePackageFrom()
254 …if ((packageBinding = parent.getPackage0(constantPoolName[i])) == null || packageBinding == TheNot… in computePackageFrom()
255 …packageBinding = new PackageBinding(CharOperation.subarray(constantPoolName, 0, i + 1), parent, th… in computePackageFrom()
/dports/java/phpeclipse/plugins/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/lookup/
H A DBaseTypeBinding.java16 private char[] constantPoolName; field in BaseTypeBinding
18 BaseTypeBinding(int id, char[] name, char[] constantPoolName) { in BaseTypeBinding() argument
22 this.constantPoolName = constantPoolName; in BaseTypeBinding()
29 public char[] constantPoolName() { in constantPoolName() method in BaseTypeBinding
30 return constantPoolName; in constantPoolName()
185 return new String(constantPoolName) + " (id=" + id + ")"; //$NON-NLS-1$ //$NON-NLS-2$ in toString()
H A DMemberTypeBinding.java36 public char[] constantPoolName() /* java/lang/Object */{ in constantPoolName() method in MemberTypeBinding
37 if (constantPoolName != null) in constantPoolName()
38 return constantPoolName; in constantPoolName()
40 return constantPoolName = CharOperation.concat(enclosingType() in constantPoolName()
41 .constantPoolName(), sourceName, '$'); in constantPoolName()
H A DArrayBinding.java27 char[] constantPoolName; field in ArrayBinding
41 public char[] constantPoolName() /* [Ljava/lang/Object; */{ in constantPoolName() method in ArrayBinding
42 if (constantPoolName != null) in constantPoolName()
43 return constantPoolName; in constantPoolName()
48 return constantPoolName = CharOperation.concat(brackets, in constantPoolName()
H A DLookupEnvironment.java285 private PackageBinding computePackageFrom(char[][] constantPoolName) { in computePackageFrom() argument
286 if (constantPoolName.length == 1) in computePackageFrom()
289 PackageBinding packageBinding = getPackage0(constantPoolName[0]); in computePackageFrom()
291 packageBinding = new PackageBinding(constantPoolName[0], this); in computePackageFrom()
292 knownPackages.put(constantPoolName[0], packageBinding); in computePackageFrom()
295 for (int i = 1, length = constantPoolName.length - 1; i < length; i++) { in computePackageFrom()
297 if ((packageBinding = parent.getPackage0(constantPoolName[i])) == null in computePackageFrom()
300 constantPoolName, 0, i + 1), parent, this); in computePackageFrom()
H A DReferenceBinding.java41 char[] constantPoolName; field in ReferenceBinding
358 public char[] constantPoolName() /* java/lang/Object */{ in constantPoolName() method in ReferenceBinding
359 if (constantPoolName != null) in constantPoolName()
360 return constantPoolName; in constantPoolName()
361 return constantPoolName = CharOperation.concatWith(compoundName, '/'); in constantPoolName()
721 return signature = CharOperation.concat('L', constantPoolName(), ';'); in signature()
H A DLocalTypeBinding.java70 public char[] constantPoolName() /* java/lang/Object */{ in constantPoolName() method in LocalTypeBinding
71 return constantPoolName; in constantPoolName()
128 this.constantPoolName = computedConstantPoolName; in setConstantPoolName()
H A DTypeBinding.java54 public abstract char[] constantPoolName(); /* java/lang/Object */ in constantPoolName() method in TypeBinding
160 return constantPoolName(); in signature()
/dports/java/eclipse-ecj/eclipse-ecj-4.4.2_1/org/eclipse/jdt/internal/compiler/lookup/
H A DMemberTypeBinding.java41 public char[] constantPoolName() /* java/lang/Object */ { in constantPoolName() method in MemberTypeBinding
43 if (this.constantPoolName != null) in constantPoolName()
44 return this.constantPoolName; in constantPoolName()
47 return this.prototype.constantPoolName(); in constantPoolName()
50 …return this.constantPoolName = CharOperation.concat(enclosingType().constantPoolName(), this.sourc… in constantPoolName()
H A DLocalTypeBinding.java158 public char[] constantPoolName() /* java/lang/Object */ { in constantPoolName() method in LocalTypeBinding
159 if (this.constantPoolName != null) in constantPoolName()
160 return this.constantPoolName; in constantPoolName()
162 return this.constantPoolName = this.prototype.constantPoolName(); in constantPoolName()
163 if (this.constantPoolName == null && this.scope != null) { in constantPoolName()
166 this.constantPoolName = this.scope.compilationUnitScope().computeConstantPoolName(this); in constantPoolName()
168 return this.constantPoolName; in constantPoolName()
190 if (this.genericReferenceTypeSignature == null && this.constantPoolName == null) { in genericTypeSignature()
261 this.constantPoolName = computedConstantPoolName; in setConstantPoolName()
265 this.constantPoolName = computedConstantPoolName; in setConstantPoolName()
[all …]
H A DBaseTypeBinding.java127 private char[] constantPoolName; field in BaseTypeBinding
129 BaseTypeBinding(int id, char[] name, char[] constantPoolName) { in BaseTypeBinding() argument
133 this.constantPoolName = constantPoolName; in BaseTypeBinding()
140 return constantPoolName(); in computeUniqueKey()
145 public char[] constantPoolName() { in constantPoolName() method in BaseTypeBinding
147 return this.constantPoolName; in constantPoolName()
151 return new BaseTypeBinding(this.id, this.simpleName, this.constantPoolName); in clone()
H A DArrayBinding.java43 char[] constantPoolName; field in ArrayBinding
150 public char[] constantPoolName() { in constantPoolName() method in ArrayBinding
151 if (this.constantPoolName != null) in constantPoolName()
152 return this.constantPoolName; in constantPoolName()
156 return this.constantPoolName = CharOperation.concat(brackets, this.leafComponentType.signature()); in constantPoolName()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/codegen/
H A DVerificationTypeInfo.java200 && CharOperation.equals(info1.constantPoolName(), constantPoolName()); in equals()
207 return this.tag + this.offset + CharOperation.hashCode(constantPoolName()); in hashCode()
210 public char[] constantPoolName() { in constantPoolName() method in VerificationTypeInfo
211 return this.binding.constantPoolName(); in constantPoolName()
215 return this.constantPoolName(); in readableName()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/
H A DTypeBinding.java164 char[] constantPoolName = methodBinding.declaringClass.constantPoolName(); in getBinaryName() local
165 if (constantPoolName == null) return null; in getBinaryName()
167 .append(CharOperation.replaceOnCopy(constantPoolName, '/', '.')) in getBinaryName()
175 constantPoolName = typeBinding.constantPoolName(); in getBinaryName()
176 if (constantPoolName == null) return null; in getBinaryName()
178 .append(CharOperation.replaceOnCopy(constantPoolName, '/', '.')) in getBinaryName()
184 char[] constantPoolName = this.binding.constantPoolName(); in getBinaryName() local
185 if (constantPoolName == null) return null; in getBinaryName()
186 char[] dotSeparated = CharOperation.replaceOnCopy(constantPoolName, '/', '.'); in getBinaryName()

1234