Searched refs:codeAttr (Results 1 - 11 of 11) sorted by relevance

/external/javassist/src/main/javassist/expr/
H A DExprEditor.java81 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
[all...]
H A DExpr.java309 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/
H A DCodeConverter.java496 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);
H A DCtConstructor.java185 CodeAttribute codeAttr = methodInfo.getCodeAttribute();
186 if (codeAttr != null) {
187 CodeIterator it = codeAttr.iterator();
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...]
/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/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLAppletElement.cpp63 || name == codeAttr
87 if (!fastHasAttribute(codeAttr) && !hasAuthorShadowRoot())
143 const AtomicString& code = getAttribute(codeAttr);
H A DHTMLEmbedElement.cpp99 } else if (name == codeAttr) {
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DXSSAuditor.cpp531 didBlockScript |= eraseAttributeIfInjected(request, codeAttr, String(), SrcLikeAttributeTruncation);
545 didBlockScript |= eraseAttributeIfInjected(request, codeAttr, String(), SrcLikeAttributeTruncation);
/external/robolectric/lib/main/
H A Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ...

Completed in 1656 milliseconds