Home
last modified time | relevance | path

Searched refs:getClassInfo (Results 1 – 18 of 18) sorted by relevance

/external/javassist/src/main/javassist/expr/
DNewArray.java87 String desc = getConstPool().getClassInfo(index); in getComponentType()
128 String desc = getConstPool().getClassInfo(index); in getDimension()
189 desc = constPool.getClassInfo(index); in replace2()
199 desc = constPool.getClassInfo(index); in replace2()
DHandler.java80 String name = cp.getClassInfo(type); in getType()
DCast.java67 String name = cp.getClassInfo(index); in getType()
DInstanceof.java70 String name = cp.getClassInfo(index); in getType()
DExprEditor.java202 minfo.getConstPool().getClassInfo(index)); in loopBody()
DExpr.java145 addClass(list, pool.get(cp.getClassInfo(t))); in mayThrow()
/external/javassist/src/main/javassist/bytecode/
DInnerClassesAttribute.java74 return constPool.getClassInfo(i); in innerClass()
103 return constPool.getClassInfo(i); in outerClass()
DConstPool.java170 return getClassInfo(thisClassInfo); in getClassName()
208 public String getClassInfo(int index) { in getClassInfo() method in ConstPool
286 return getClassInfo(f.classIndex); in getFieldrefClassName()
363 return getClassInfo(minfo.classIndex); in getMethodrefClassName()
441 return getClassInfo(minfo.classIndex); in getInterfaceMethodrefClassName()
628 if (getClassInfo(minfo.classIndex).equals(classname)) { in isMember()
661 return getClassInfo(minfo.classIndex); in eqMember()
DEnclosingMethodAttribute.java95 return getConstPool().getClassInfo(classIndex()); in className()
DClassFile.java197 = cp.addClassInfo(constPool.getClassInfo(interfaces[i])); in compact0()
343 cachedSuperclass = constPool.getClassInfo(superClass); in getSuperclass()
510 list[i] = constPool.getClassInfo(interfaces[i]); in getInterfaces()
794 thisclassname = constPool.getClassInfo(thisClass); in read()
DExceptionsAttribute.java128 elist[k++] = constPool.getClassInfo(index); in getExceptions()
DInstructionPrinter.java196 return "#" + index + " = Class " + pool.getClassInfo(index); in classInfo()
/external/javassist/src/main/javassist/convert/
DTransformNewClass.java53 if (cp.getClassInfo(index).equals(classname)) { in transform()
DTransformNew.java57 if (cp.getClassInfo(index).equals(classname)) { in transform()
/external/javassist/src/main/javassist/bytecode/stackmap/
DTracer.java630 = new TypeData.UninitData(pos, cpool.getClassInfo(i)); in doOpcode148_201()
636 String type = cpool.getClassInfo(i).replace('.', '/'); in doOpcode148_201()
656 stackTypes[stackTop - 1] = new TypeData.ClassName(cpool.getClassInfo(i)); in doOpcode148_201()
814 String type = cpool.getClassInfo(i).replace('.', '/'); in doMultiANewArray()
DMapMaker.java261 type = cpool.getClassInfo(exceptionType); in recordStackMap()
/external/javassist/src/main/javassist/bytecode/analysis/
DExecutor.java578 frame.push(resolveClassInfo(constPool.getClassInfo(iter.u16bitAt(pos + 1)))); in execute()
598 frame.push(typeFromDesc(constPool.getClassInfo(iter.u16bitAt(pos + 1)))); in execute()
828 Type type = resolveClassInfo(constPool.getClassInfo(iter.u16bitAt(pos + 1))); in evalNewObjectArray()
DAnalyzer.java222 … type = index == 0 ? Type.THROWABLE : Type.get(classes.get(constPool.getClassInfo(index))); in buildExceptionInfo()