HomeSort by relevance Sort by last modified time
    Searched refs:codeAttr (Results 1 - 14 of 14) sorted by null

  /external/javassist/src/main/javassist/expr/
ExprEditor.java 81 CodeAttribute codeAttr = minfo.getCodeAttribute();
82 if (codeAttr == null)
85 CodeIterator iterator = codeAttr.iterator();
87 LoopContext context = new LoopContext(codeAttr.getMaxLocals());
93 ExceptionTable et = codeAttr.getExceptionTable();
104 // codeAttr might be modified by other partiess
106 if (codeAttr.getMaxLocals() < context.maxLocals)
107 codeAttr.setMaxLocals(context.maxLocals);
109 codeAttr.setMaxStack(codeAttr.getMaxStack() + context.maxStack)
    [all...]
Expr.java 309 CodeAttribute codeAttr = oldIterator.get();
310 int orgLocals = codeAttr.getMaxLocals();
311 int orgStack = codeAttr.getMaxStack();
313 codeAttr.setMaxStack(stack());
314 codeAttr.setMaxLocals(newLocals);
324 codeAttr.setMaxLocals(orgLocals);
325 codeAttr.setMaxStack(orgStack);
  /external/javassist/src/main/javassist/
CodeConverter.java 496 CodeAttribute codeAttr = minfo.getCodeAttribute();
497 if (codeAttr == null || transformers == null)
502 CodeIterator iterator = codeAttr.iterator();
530 codeAttr.setMaxLocals(codeAttr.getMaxLocals() + locals);
533 codeAttr.setMaxStack(codeAttr.getMaxStack() + stack);
CtConstructor.java 185 CodeAttribute codeAttr = methodInfo.getCodeAttribute();
186 if (codeAttr != null) {
187 CodeIterator it = codeAttr.iterator();
CtClassType.java     [all...]
  /external/javassist/src/main/javassist/bytecode/
CodeAnalyzer.java 23 private CodeAttribute codeAttr;
26 codeAttr = ca;
38 CodeIterator ci = codeAttr.iterator();
41 constPool = codeAttr.getConstPool();
42 initStack(stack, codeAttr);
CodeIterator.java 35 protected CodeAttribute codeAttr;
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.setCode(newcode)
    [all...]
  /external/annotation-tools/asmx/
javassist.jar 
  /external/guice/extensions/persist/lib/
javassist.jar 
hibernate3.jar 
  /external/annotation-tools/asmx/test/lib/
javassist.jar 
  /external/guice/extensions/struts2/lib/
javassist.jar 
  /external/robolectric/v1/lib/main/
javassist-3.14.0-GA.jar 
  /prebuilts/tools/common/m2/repository/org/javassist/javassist/3.19.0-GA/
javassist-3.19.0-GA.jar 

Completed in 263 milliseconds