Searched defs:typeDesc (Results 1 - 2 of 2) sorted by relevance
/external/javassist/src/main/javassist/ |
H A D | CtField.java | 96 private CtField(String typeDesc, String name, CtClass clazz) argument 105 fieldInfo = new FieldInfo(cf.getConstPool(), name, typeDesc); 1108 String typeDesc = Descriptor.of(type); 1109 String mDesc = getDescriptor() + typeDesc; 1111 code.addPutfield(Bytecode.THIS, name, typeDesc); 1147 String typeDesc = Descriptor.of(type); 1148 code.addInvokestatic(objectType, methodName, desc + typeDesc); 1149 code.addPutstatic(Bytecode.THIS, name, typeDesc);
|
/external/javassist/src/main/javassist/compiler/ |
H A D | JvstCodeGen.java | 569 * @param typeDesc the type descriptor of the variable 573 public void recordVariable(String typeDesc, String varName, int varNo, argument 578 while ((c = typeDesc.charAt(dim)) == '[') 585 cname = typeDesc.substring(1, typeDesc.length() - 1); 587 cname = typeDesc.substring(dim + 1, typeDesc.length() - 1);
|
Completed in 215 milliseconds