Home
last modified time | relevance | path

Searched refs:NewExpr (Results 1 – 8 of 8) sorted by relevance

/external/javassist/src/main/javassist/compiler/ast/
DNewExpr.java24 public class NewExpr extends ASTList implements TokenId { class
28 public NewExpr(ASTList className, ASTList args) { in NewExpr() method in NewExpr
34 public NewExpr(int type, ASTList arraySize, ArrayInit init) { in NewExpr() method in NewExpr
42 public static NewExpr makeObjectArray(ASTList className, in makeObjectArray()
44 NewExpr e = new NewExpr(className, arraySize); in makeObjectArray()
DVisitor.java41 public void atNewExpr(NewExpr n) throws CompileError {} in atNewExpr()
/external/javassist/src/main/javassist/expr/
DExprEditor.java209 expr = new NewExpr(pos, iterator, clazz, minfo, in loopBody()
211 edit((NewExpr)expr); in loopBody()
262 public void edit(NewExpr e) throws CannotCompileException {} in edit()
DNewExpr.java26 public class NewExpr extends Expr { class
33 protected NewExpr(int pos, CodeIterator i, CtClass declaring, in NewExpr() method in NewExpr
/external/javassist/src/main/javassist/compiler/
DParser.java1263 private NewExpr parseNew(SymbolTable tbl) throws CompileError { in parseNew()
1272 return new NewExpr(t, size, init); in parseNew()
1279 return new NewExpr(name, args); in parseNew()
1286 return NewExpr.makeObjectArray(name, size, init); in parseNew()
DTypeChecker.java141 public void atNewExpr(NewExpr expr) throws CompileError { in atNewExpr()
155 public void atNewArrayExpr(NewExpr expr) throws CompileError { in atNewArrayExpr()
380 ASTree e = new NewExpr(sbufClass, null); in atPlusExpr()
DMemberCodeGen.java291 public void atNewExpr(NewExpr expr) throws CompileError { in atNewExpr()
310 public void atNewArrayExpr(NewExpr expr) throws CompileError { in atNewArrayExpr()
DCodeGen.java730 public abstract void atNewExpr(NewExpr n) throws CompileError; in atNewExpr()