Lines Matching refs:ca
151 CodeAttribute ca = getMethodInfo2().getCodeAttribute(); in isEmpty() local
152 if (ca == null) in isEmpty()
156 ConstPool cp = ca.getConstPool(); in isEmpty()
157 CodeIterator it = ca.iterator(); in isEmpty()
252 CodeAttribute ca = methodInfo.getCodeAttribute(); in insertBeforeBody() local
253 CodeIterator iterator = ca.iterator(); in insertBeforeBody()
255 ca.getMaxStack(), ca.getMaxLocals()); in insertBeforeBody()
256 b.setStackDepth(ca.getMaxStack()); in insertBeforeBody()
261 ca.setMaxStack(b.getMaxStack()); in insertBeforeBody()
262 ca.setMaxLocals(b.getMaxLocals()); in insertBeforeBody()
282 int getStartPosOfBody(CodeAttribute ca) throws CannotCompileException { in getStartPosOfBody() argument
283 CodeIterator ci = ca.iterator(); in getStartPosOfBody()
354 CodeAttribute ca = minfo.getCodeAttribute(); in toMethod() local
355 if (ca != null) { in toMethod()
356 removeConsCall(ca); in toMethod()
371 private static void removeConsCall(CodeAttribute ca) in removeConsCall() argument
374 CodeIterator iterator = ca.iterator(); in removeConsCall()
379 String desc = ca.getConstPool().getMethodrefType(mref); in removeConsCall()