Home
last modified time | relevance | path

Searched refs:CtBehavior (Results 1 – 14 of 14) sorted by relevance

/external/javassist/src/main/javassist/expr/
DExpr.java20 import javassist.CtBehavior;
98 public CtBehavior where() { in where()
100 CtBehavior[] cb = thisClass.getDeclaredBehaviors(); in where()
DHandler.java43 public CtBehavior where() { return super.where(); } in where()
DCast.java38 public CtBehavior where() { return super.where(); } in where()
DInstanceof.java39 public CtBehavior where() { return super.where(); } in where()
DMethodCall.java49 public CtBehavior where() { return super.where(); } in where()
DNewExpr.java58 public CtBehavior where() { return super.where(); } in where()
DNewArray.java42 public CtBehavior where() { return super.where(); } in where()
DFieldAccess.java39 public CtBehavior where() { return super.where(); } in where()
/external/javassist/src/main/javassist/compiler/
DJavac.java22 import javassist.CtBehavior;
94 CtBehavior cb = compileMethod(p, (MethodDecl)mem); in compile()
141 private CtBehavior compileMethod(Parser p, MethodDecl md) in compileMethod()
190 public Bytecode compileBody(CtBehavior method, String src) in compileBody()
/external/javassist/src/main/javassist/
DCtClass.java746 public CtBehavior[] getDeclaredBehaviors() { in getDeclaredBehaviors()
747 return new CtBehavior[0]; in getDeclaredBehaviors()
DCtMethod.java30 public final class CtMethod extends CtBehavior {
DCtBehavior.java29 public abstract class CtBehavior extends CtMember { class
32 protected CtBehavior(CtClass clazz, MethodInfo minfo) { in CtBehavior() method in CtBehavior
40 void copy(CtBehavior src, boolean isCons, ClassMap map) in copy()
DCtConstructor.java35 public final class CtConstructor extends CtBehavior {
DCtClassType.java972 public CtBehavior[] getDeclaredBehaviors() { in getDeclaredBehaviors()
981 CtBehavior[] cb = new CtBehavior[cnum + mnum]; in getDeclaredBehaviors()
985 cb[i++] = (CtBehavior)cons; in getDeclaredBehaviors()
990 cb[i++] = (CtBehavior)mth; in getDeclaredBehaviors()