Lines Matching refs:constPool
77 private ConstPoolWriter constPool; field in ClassFileWriter
93 constPool = new ConstPoolWriter(output); in ClassFileWriter()
94 fields = new FieldWriter(constPool); in ClassFileWriter()
95 methods = new MethodWriter(constPool); in ClassFileWriter()
102 public ConstPoolWriter getConstPool() { return constPool; } in getConstPool()
129 constPool.end(); in end()
175 constPool.end(); in end()
255 protected ConstPoolWriter constPool; field in ClassFileWriter.FieldWriter
260 constPool = cp; in FieldWriter()
274 int nameIndex = constPool.addUtf8Info(name); in add()
275 int descIndex = constPool.addUtf8Info(descriptor); in add()
313 protected ConstPoolWriter constPool; field in ClassFileWriter.MethodWriter
326 constPool = cp; in MethodWriter()
346 int nameIndex = constPool.addUtf8Info(name); in begin()
347 int descIndex = constPool.addUtf8Info(descriptor); in begin()
352 intfs = constPool.addClassInfo(exceptions); in begin()
385 codeIndex = constPool.addUtf8Info(CodeAttribute.tag); in begin()
398 throwsIndex = constPool.addUtf8Info(ExceptionsAttribute.tag); in writeThrows()
437 int target = constPool.addClassInfo(targetClass); in addInvoke()
438 int nt = constPool.addNameAndTypeInfo(methodName, descriptor); in addInvoke()
439 int method = constPool.addMethodrefInfo(target, nt); in addInvoke()
493 stackIndex = constPool.addUtf8Info(StackMapTable.tag); in end()