Searched refs:codeAttr (Results 1 – 10 of 10) sorted by relevance
/external/javassist/src/main/javassist/expr/ |
D | ExprEditor.java | 81 CodeAttribute codeAttr = minfo.getCodeAttribute(); in doit() local 82 if (codeAttr == null) in doit() 85 CodeIterator iterator = codeAttr.iterator(); in doit() 87 LoopContext context = new LoopContext(codeAttr.getMaxLocals()); in doit() 93 ExceptionTable et = codeAttr.getExceptionTable(); in doit() 106 if (codeAttr.getMaxLocals() < context.maxLocals) in doit() 107 codeAttr.setMaxLocals(context.maxLocals); in doit() 109 codeAttr.setMaxStack(codeAttr.getMaxStack() + context.maxStack); in doit()
|
D | Expr.java | 309 CodeAttribute codeAttr = oldIterator.get(); in runEditor() local 310 int orgLocals = codeAttr.getMaxLocals(); in runEditor() 311 int orgStack = codeAttr.getMaxStack(); in runEditor() 313 codeAttr.setMaxStack(stack()); in runEditor() 314 codeAttr.setMaxLocals(newLocals); in runEditor() 324 codeAttr.setMaxLocals(orgLocals); in runEditor() 325 codeAttr.setMaxStack(orgStack); in runEditor()
|
/external/javassist/src/main/javassist/ |
D | CodeConverter.java | 496 CodeAttribute codeAttr = minfo.getCodeAttribute(); in doit() local 497 if (codeAttr == null || transformers == null) in doit() 502 CodeIterator iterator = codeAttr.iterator(); in doit() 530 codeAttr.setMaxLocals(codeAttr.getMaxLocals() + locals); in doit() 533 codeAttr.setMaxStack(codeAttr.getMaxStack() + stack); in doit()
|
D | CtConstructor.java | 185 CodeAttribute codeAttr = methodInfo.getCodeAttribute(); in callsSuper() local 186 if (codeAttr != null) { in callsSuper() 187 CodeIterator it = codeAttr.iterator(); in callsSuper()
|
D | CtClassType.java | 1499 CodeAttribute codeAttr = m.getCodeAttribute(); in modifyClassConstructor() local 1500 if (codeAttr == null) in modifyClassConstructor() 1504 CodeIterator it = codeAttr.iterator(); in modifyClassConstructor() 1507 int maxstack = codeAttr.getMaxStack(); in modifyClassConstructor() 1509 codeAttr.setMaxStack(stacksize); in modifyClassConstructor() 1511 int maxlocals = codeAttr.getMaxLocals(); in modifyClassConstructor() 1513 codeAttr.setMaxLocals(localsize); in modifyClassConstructor() 1540 CodeAttribute codeAttr = minfo.getCodeAttribute(); in modifyConstructors() local 1541 if (codeAttr != null) in modifyConstructors() 1544 codeAttr.getMaxLocals()); in modifyConstructors() [all …]
|
/external/javassist/src/main/javassist/bytecode/ |
D | CodeAnalyzer.java | 23 private CodeAttribute codeAttr; field in CodeAnalyzer 26 codeAttr = ca; in CodeAnalyzer() 38 CodeIterator ci = codeAttr.iterator(); in computeMaxStack() 41 constPool = codeAttr.getConstPool(); in computeMaxStack() 42 initStack(stack, codeAttr); in computeMaxStack()
|
D | CodeIterator.java | 35 protected CodeAttribute codeAttr; field in CodeIterator 42 codeAttr = ca; in CodeIterator() 99 return codeAttr; in get() 270 ConstPool cp = codeAttr.getConstPool(); in skipSuperConstructor0() 271 String thisClassName = codeAttr.getDeclaringClass(); in skipSuperConstructor0() 611 get().getExceptionTable(), codeAttr, gap); in insertGapAt() 618 get().getExceptionTable(), codeAttr); in insertGapAt() 630 codeAttr.setCode(c); in insertGapAt() 657 codeAttr.getExceptionTable().add(0, et, offset); in insert() 697 codeAttr.setCode(newcode); in appendGap() [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
D | HTMLAppletElement.cpp | 63 || name == codeAttr in parseAttribute() 87 if (!fastHasAttribute(codeAttr) && !hasAuthorShadowRoot()) in rendererIsNeeded() 143 const AtomicString& code = getAttribute(codeAttr); in updateWidgetInternal()
|
D | HTMLEmbedElement.cpp | 99 } else if (name == codeAttr) { in parseAttribute()
|
/external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
D | XSSAuditor.cpp | 531 …didBlockScript |= eraseAttributeIfInjected(request, codeAttr, String(), SrcLikeAttributeTruncation… in filterEmbedToken() 545 …didBlockScript |= eraseAttributeIfInjected(request, codeAttr, String(), SrcLikeAttributeTruncation… in filterAppletToken()
|