Lines Matching refs:constantPoolName

66 	private char[] constantPoolName;  field in VerificationTypeInfo
72 public VerificationTypeInfo(int id, char[] constantPoolName) { in VerificationTypeInfo() argument
73 this(id, VerificationTypeInfo.ITEM_OBJECT, constantPoolName); in VerificationTypeInfo()
75 public VerificationTypeInfo(int id, int tag, char[] constantPoolName) { in VerificationTypeInfo() argument
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()
191 return this.tag + this.id + this.constantPoolName.length + this.offset; in hashCode()
193 public char[] constantPoolName() { in constantPoolName() method in VerificationTypeInfo
194 return this.constantPoolName; in constantPoolName()
197 return this.constantPoolName; in readableName()
200 if (this.constantPoolName[1] == 'L') { in replaceWithElementType()
201 …this.constantPoolName = CharOperation.subarray(this.constantPoolName, 2, this.constantPoolName.le… in replaceWithElementType()
203 …this.constantPoolName = CharOperation.subarray(this.constantPoolName, 1, this.constantPoolName.len… in replaceWithElementType()
204 if (this.constantPoolName.length == 1) { in replaceWithElementType()
205 switch(this.constantPoolName[0]) { in replaceWithElementType()