Searched defs:codeAttr (Results 1 - 3 of 3) sorted by relevance

/external/javassist/src/main/javassist/bytecode/
H A DCodeAnalyzer.java23 private CodeAttribute codeAttr; field in class:CodeAnalyzer
26 codeAttr = ca;
38 CodeIterator ci = codeAttr.iterator();
41 constPool = codeAttr.getConstPool();
42 initStack(stack, codeAttr);
H A DCodeIterator.java35 protected CodeAttribute codeAttr; field in class:CodeIterator
42 codeAttr = ca;
99 return codeAttr;
270 ConstPool cp = codeAttr.getConstPool();
271 String thisClassName = codeAttr.getDeclaringClass();
611 get().getExceptionTable(), codeAttr, gap);
618 get().getExceptionTable(), codeAttr);
630 codeAttr.setCode(c);
657 codeAttr.getExceptionTable().add(0, et, offset);
697 codeAttr
[all...]
/external/javassist/src/main/javassist/
H A DCtClassType.java1499 CodeAttribute codeAttr = m.getCodeAttribute();
1500 if (codeAttr == null)
1504 CodeIterator it = codeAttr.iterator();
1507 int maxstack = codeAttr.getMaxStack();
1509 codeAttr.setMaxStack(stacksize);
1511 int maxlocals = codeAttr.getMaxLocals();
1513 codeAttr.setMaxLocals(localsize);
1540 CodeAttribute codeAttr = minfo.getCodeAttribute();
1541 if (codeAttr != null)
1544 codeAttr
1560 insertAuxInitializer(CodeAttribute codeAttr, Bytecode initializer, int stacksize) argument
[all...]

Completed in 85 milliseconds