/external/javassist/src/main/javassist/compiler/ast/ |
D | Visitor.java | 19 import javassist.compiler.CompileError; 27 public void atASTList(ASTList n) throws CompileError {} in atASTList() 28 public void atPair(Pair n) throws CompileError {} in atPair() 30 public void atFieldDecl(FieldDecl n) throws CompileError {} in atFieldDecl() 31 public void atMethodDecl(MethodDecl n) throws CompileError {} in atMethodDecl() 32 public void atStmnt(Stmnt n) throws CompileError {} in atStmnt() 33 public void atDeclarator(Declarator n) throws CompileError {} in atDeclarator() 35 public void atAssignExpr(AssignExpr n) throws CompileError {} in atAssignExpr() 36 public void atCondExpr(CondExpr n) throws CompileError {} in atCondExpr() 37 public void atBinExpr(BinExpr n) throws CompileError {} in atBinExpr() [all …]
|
D | ArrayInit.java | 19 import javassist.compiler.CompileError; 33 public void accept(Visitor v) throws CompileError { v.atArrayInit(this); } in accept()
|
D | Keyword.java | 19 import javassist.compiler.CompileError; 39 public void accept(Visitor v) throws CompileError { v.atKeyword(this); } in accept()
|
D | Symbol.java | 19 import javassist.compiler.CompileError; 39 public void accept(Visitor v) throws CompileError { v.atSymbol(this); } in accept()
|
D | StringL.java | 19 import javassist.compiler.CompileError; 39 public void accept(Visitor v) throws CompileError { v.atStringL(this); } in accept()
|
D | Member.java | 20 import javassist.compiler.CompileError; 42 public void accept(Visitor v) throws CompileError { v.atMember(this); } in accept()
|
D | Variable.java | 19 import javassist.compiler.CompileError; 42 public void accept(Visitor v) throws CompileError { v.atVariable(this); } in accept()
|
/external/javassist/src/main/javassist/compiler/ |
D | Parser.java | 55 public ASTList parseMember(SymbolTable tbl) throws CompileError { in parseMember() 64 public ASTList parseMember1(SymbolTable tbl) throws CompileError { in parseMember1() 96 Declarator d) throws CompileError in parseField() 108 throw new CompileError( in parseField() 126 throws CompileError in parseMethod1() 166 throws CompileError in parseMethod2() 204 private Declarator parseFormalType(SymbolTable tbl) throws CompileError { in parseFormalType() 224 throws CompileError in parseFormalParam() 257 throws CompileError in parseStatement() 300 private Stmnt parseBlock(SymbolTable tbl) throws CompileError { in parseBlock() [all …]
|
D | CodeGen.java | 124 protected static void fatal() throws CompileError { in fatal() 125 throw new CompileError("fatal"); in fatal() 174 protected abstract String getSuperName() throws CompileError; in getSuperName() 182 throws CompileError; in resolveClassName() 188 throws CompileError; in resolveClassName() 252 public void compileExpr(ASTree expr) throws CompileError { in compileExpr() 258 throws CompileError in compileBooleanExpr() 264 public void doTypeCheck(ASTree expr) throws CompileError { in doTypeCheck() 270 public void atASTList(ASTList n) throws CompileError { fatal(); } in atASTList() 273 public void atPair(Pair n) throws CompileError { fatal(); } in atPair() [all …]
|
D | JvstCodeGen.java | 95 public void atMember(Member mem) throws CompileError { in atMember() 113 throw new CompileError(dollarTypeName + " is not available"); in atMember() 120 throw new CompileError(clazzName + " is not available"); in atMember() 139 ASTree right, boolean doDup) throws CompileError in atFieldAssign() 144 throw new CompileError("bad operator for " + paramArrayName); in atFieldAssign() 148 throw new CompileError("invalid type for " + paramArrayName); in atFieldAssign() 159 throws CompileError in atAssignParamList() 177 public void atCastExpr(CastExpr expr) throws CompileError { in atCastExpr() 201 protected void atCastToRtype(CastExpr expr) throws CompileError { in atCastToRtype() 214 throw new CompileError("invalid cast"); in atCastToRtype() [all …]
|
D | Javac.java | 96 public CtMember compile(String src) throws CompileError { in compile() 110 throw new CompileError(bb.getMessage()); in compile() 113 throw new CompileError(e.getMessage()); in compile() 136 throws CompileError, CannotCompileException in compileField() 150 throws CompileError in compileMethod() 186 throw new CompileError(e.toString()); in compileMethod() 197 throws CompileError in compileBody() 221 throw new CompileError( in compileBody() 234 throw new CompileError(e.toString()); in compileBody() 276 throws CompileError in recordLocalVariables() [all …]
|
D | MemberCodeGen.java | 100 protected String getSuperName() throws CompileError { in getSuperName() 106 protected void insertDefaultSuperCall() throws CompileError { in insertDefaultSuperCall() 219 protected void atTryStmnt(Stmnt st) throws CompileError { in atTryStmnt() 237 throw new CompileError("empty try block"); in atTryStmnt() 304 throws CompileError in addFinally() 321 public void atNewExpr(NewExpr expr) throws CompileError { in atNewExpr() 340 public void atNewArrayExpr(NewExpr expr) throws CompileError { in atNewArrayExpr() 347 throw new CompileError( in atNewArrayExpr() 360 String jvmClassname, ArrayInit init) throws CompileError { in atNewArrayExpr2() 363 throw new CompileError("no array size"); in atNewArrayExpr2() [all …]
|
D | TypeChecker.java | 110 catch (CompileError e) { in typeToString() 128 protected static void fatal() throws CompileError { in fatal() 129 throw new CompileError("fatal"); in fatal() 142 protected String getSuperName() throws CompileError { in getSuperName() 152 protected String resolveClassName(ASTList name) throws CompileError { in resolveClassName() 159 protected String resolveClassName(String jvmName) throws CompileError { in resolveClassName() 164 public void atNewExpr(NewExpr expr) throws CompileError { in atNewExpr() 178 public void atNewArrayExpr(NewExpr expr) throws CompileError { in atNewArrayExpr() 203 public void atArrayInit(ArrayInit init) throws CompileError { in atArrayInit() 214 throws CompileError in atMultiNewArray() [all …]
|
D | MemberResolver.java | 53 private static void fatal() throws CompileError { in fatal() 54 throw new CompileError("fatal"); in fatal() 81 throws CompileError in lookupMethod() 107 throws CompileError in lookupMethod() 196 throws CompileError in compareSignature() 286 catch (CompileError e) { in lookupFieldByJvmName2() 305 throws CompileError in lookupFieldByJvmName() 314 throws CompileError in lookupField() 321 throw new CompileError("no such field: " + fieldName.get()); in lookupField() 324 public CtClass lookupClassByName(ASTList name) throws CompileError { in lookupClassByName() [all …]
|
D | JvstTypeChecker.java | 57 public void atMember(Member mem) throws CompileError { in atMember() 81 throws CompileError in atFieldAssign() 99 public void atCastExpr(CastExpr expr) throws CompileError { in atCastExpr() 123 protected void atCastToRtype(CastExpr expr) throws CompileError { in atCastToRtype() 137 protected void atCastToWrapper(CastExpr expr) throws CompileError { in atCastToWrapper() 154 public void atCallExpr(CallExpr expr) throws CompileError { in atCallExpr() 175 protected void atCflow(ASTList cname) throws CompileError { in atCflow() 215 String[] cnames) throws CompileError { in atMethodArgs() 251 throws CompileError in compileInvokeSpecial() 261 protected void compileUnwrapValue(CtClass type) throws CompileError in compileUnwrapValue() [all …]
|
D | CompileError.java | 22 public class CompileError extends Exception { class 28 public CompileError(String s, Lex l) { in CompileError() method in CompileError 33 public CompileError(String s) { in CompileError() method in CompileError 38 public CompileError(CannotCompileException e) { in CompileError() method in CompileError 42 public CompileError(NotFoundException e) { in CompileError() method in CompileError
|
D | AccessorMaker.java | 54 throws CompileError in getConstructor() 88 throw new CompileError(e); in getConstructor() 91 throw new CompileError(e); in getConstructor() 113 throws CompileError in getMethodAccessor() 150 throw new CompileError(e); in getMethodAccessor() 153 throw new CompileError(e); in getMethodAccessor() 164 throws CompileError in getFieldGetter() 204 throw new CompileError(e); in getFieldGetter() 207 throw new CompileError(e); in getFieldGetter() 215 throws CompileError in getFieldSetter() [all …]
|
D | ProceedHandler.java | 28 void doit(JvstCodeGen gen, Bytecode b, ASTList args) throws CompileError; in doit() 29 void setReturnType(JvstTypeChecker c, ASTList args) throws CompileError; in setReturnType()
|
/external/javassist/src/main/javassist/expr/ |
D | FieldAccess.java | 34 import javassist.compiler.CompileError; 240 catch (CompileError e) { throw new CannotCompileException(e); } in replace() 263 throws CompileError in doit() 266 throw new CompileError(Javac.proceedName in doit() 290 throws CompileError in setReturnType() 313 throws CompileError in doit() 316 throw new CompileError(Javac.proceedName in doit() 344 throws CompileError in setReturnType()
|
D | Instanceof.java | 31 import javassist.compiler.CompileError; 153 catch (CompileError e) { throw new CannotCompileException(e); } in replace() 171 throws CompileError in doit() 174 throw new CompileError(Javac.proceedName in doit() 186 throws CompileError in setReturnType()
|
D | Cast.java | 31 import javassist.compiler.CompileError; 147 catch (CompileError e) { throw new CannotCompileException(e); } in replace() 167 throws CompileError in doit() 170 throw new CompileError(Javac.proceedName in doit() 182 throws CompileError in setReturnType()
|
D | NewArray.java | 32 import javassist.compiler.CompileError; 182 catch (CompileError e) { throw new CannotCompileException(e); } in replace() 190 throws CompileError, NotFoundException, BadBytecode, in replace2() 274 throws CompileError in doit() 278 throw new CompileError(Javac.proceedName in doit() 299 throws CompileError in setReturnType()
|
/external/python/cpython2/Lib/distutils/command/ |
D | config.py | 185 from distutils.ccompiler import CompileError 190 except CompileError: 229 from distutils.ccompiler import CompileError 234 except CompileError: 247 from distutils.ccompiler import CompileError, LinkError 253 except (CompileError, LinkError): 266 from distutils.ccompiler import CompileError, LinkError 273 except (CompileError, LinkError, DistutilsExecError):
|
/external/python/setuptools/setuptools/_distutils/command/ |
D | config.py | 179 from distutils.ccompiler import CompileError 184 except CompileError: 222 from distutils.ccompiler import CompileError 227 except CompileError: 240 from distutils.ccompiler import CompileError, LinkError 246 except (CompileError, LinkError): 259 from distutils.ccompiler import CompileError, LinkError 266 except (CompileError, LinkError, DistutilsExecError):
|
/external/python/cpython3/Lib/distutils/command/ |
D | config.py | 179 from distutils.ccompiler import CompileError 184 except CompileError: 222 from distutils.ccompiler import CompileError 227 except CompileError: 240 from distutils.ccompiler import CompileError, LinkError 246 except (CompileError, LinkError): 259 from distutils.ccompiler import CompileError, LinkError 266 except (CompileError, LinkError, DistutilsExecError):
|