Lines Matching refs:constant
129 private Object decodeConstant(int index, Constant constant) { in visitMethod() argument
130 if (constant.booleanValue().length == 1) { in visitMethod()
131 return constant.booleanValue()[0]; in visitMethod()
132 } else if (constant.byteValue().length == 1) { in visitMethod()
133 return constant.byteValue()[0]; in visitMethod()
134 } else if (constant.charValue().length == 1) { in visitMethod()
135 return constant.charValue()[0]; in visitMethod()
136 } else if (constant.shortValue().length == 1) { in visitMethod()
137 return constant.shortValue()[0]; in visitMethod()
138 } else if (constant.intValue().length == 1) { in visitMethod()
139 return constant.intValue()[0]; in visitMethod()
140 } else if (constant.longValue().length == 1) { in visitMethod()
141 return constant.longValue()[0]; in visitMethod()
142 } else if (constant.floatValue().length == 1) { in visitMethod()
143 return constant.floatValue()[0]; in visitMethod()
144 } else if (constant.doubleValue().length == 1) { in visitMethod()
145 return constant.doubleValue()[0]; in visitMethod()
146 } else if (constant.stringValue().length == 1) { in visitMethod()
147 return constant.stringValue()[0]; in visitMethod()
148 } else if (constant.classValue().length == 1) { in visitMethod()
149 return Type.getType(constant.classValue()[0]); in visitMethod()