Home
last modified time | relevance | path

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

/external/javassist/src/main/javassist/expr/
DExprEditor.java81 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()
DExpr.java309 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/
DCodeConverter.java496 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()
DCtConstructor.java185 CodeAttribute codeAttr = methodInfo.getCodeAttribute(); in callsSuper() local
186 if (codeAttr != null) { in callsSuper()
187 CodeIterator it = codeAttr.iterator(); in callsSuper()
DCtClassType.java1499 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/
DCodeAnalyzer.java23 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()
DCodeIterator.java35 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/webkit/Source/WebCore/html/
DHTMLAppletElement.cpp54 attr->name() == codeAttr || in parseMappedAttribute()
105 if (!fastHasAttribute(codeAttr)) in rendererIsNeeded()
116 args.set("code", getAttribute(codeAttr)); in createRenderer()
DHTMLEmbedElement.cpp99 } else if (attr->name() == codeAttr) in parseMappedAttribute()
/external/webkit/Source/WebCore/html/parser/
DXSSFilter.cpp354 didBlockScript |= eraseAttributeIfInjected(token, codeAttr); in filterAppletToken()
/external/webkit/Source/WebCore/
DChangeLog-2008-08-10499 (WebCore::HTMLEmbedElement::parseMappedAttribute): Split codeAttr