Home
last modified time | relevance | path

Searched refs:CtPrimitiveType (Results 1 – 13 of 13) sorted by relevance

/external/javassist/src/main/javassist/compiler/
DJvstCodeGen.java188 else if (returnType instanceof CtPrimitiveType) { in atCastToRtype()
189 CtPrimitiveType pt = (CtPrimitiveType)returnType; in atCastToRtype()
206 if (clazz instanceof CtPrimitiveType) { in atCastToWrapper()
207 CtPrimitiveType pt = (CtPrimitiveType)clazz; in atCastToWrapper()
620 CtPrimitiveType pt = (CtPrimitiveType)params[i]; in compileParameterList()
654 if (type instanceof CtPrimitiveType) { in compileUnwrapValue()
655 CtPrimitiveType pt = (CtPrimitiveType)type; in compileUnwrapValue()
678 CtPrimitiveType pt = (CtPrimitiveType)type; in setType()
701 if (type instanceof CtPrimitiveType) { in doNumCast()
702 CtPrimitiveType pt = (CtPrimitiveType)type; in doNumCast()
DJvstTypeChecker.java115 else if (returnType instanceof CtPrimitiveType) { in atCastToRtype()
116 CtPrimitiveType pt = (CtPrimitiveType)returnType; in atCastToRtype()
130 if (clazz instanceof CtPrimitiveType) { in atCastToWrapper()
263 CtPrimitiveType pt = (CtPrimitiveType)type; in setType()
DJavac.java19 import javassist.CtPrimitiveType;
235 if (type instanceof CtPrimitiveType) { in makeDefaultBody()
236 CtPrimitiveType pt = (CtPrimitiveType)type; in makeDefaultBody()
/external/javassist/src/main/javassist/
DCtClass.java132 new CtPrimitiveType("boolean", 'Z', "java.lang.Boolean",
137 charType = new CtPrimitiveType("char", 'C', "java.lang.Character",
142 byteType = new CtPrimitiveType("byte", 'B', "java.lang.Byte",
147 shortType = new CtPrimitiveType("short", 'S', "java.lang.Short",
152 intType = new CtPrimitiveType("int", 'I', "java.lang.Integer",
157 longType = new CtPrimitiveType("long", 'J', "java.lang.Long",
162 floatType = new CtPrimitiveType("float", 'F', "java.lang.Float",
167 doubleType = new CtPrimitiveType("double", 'D', "java.lang.Double",
172 voidType = new CtPrimitiveType("void", 'V', "java.lang.Void",
DCtPrimitiveType.java22 public final class CtPrimitiveType extends CtClass { class
31 CtPrimitiveType(String name, char desc, String wrapper, in CtPrimitiveType() method in CtPrimitiveType
DCtNewWrappedMethod.java181 CtPrimitiveType pt = (CtPrimitiveType)type; in compileReturn()
DCtBehavior.java613 CtPrimitiveType cpt = (CtPrimitiveType)type; in addParameter2()
843 code.addOpcode(((CtPrimitiveType)rtype).getReturnOp()); in insertAfterAdvice()
891 char c = ((CtPrimitiveType)rtype).getDescriptor(); in insertAfterHandler()
DCtField.java1335 code.addNewarray(((CtPrimitiveType)type).getArrayType(), in addNewarray()
/external/javassist/src/main/javassist/expr/
DFieldAccess.java251 if (fieldType instanceof CtPrimitiveType) in doit()
252 stack += ((CtPrimitiveType)fieldType).getDataSize(); in doit()
302 if (fieldType instanceof CtPrimitiveType) in doit()
303 stack -= ((CtPrimitiveType)fieldType).getDataSize(); in doit()
DExpr.java23 import javassist.CtPrimitiveType;
248 if (c instanceof CtPrimitiveType) in storeStack0()
249 size = ((CtPrimitiveType)c).getDataSize(); in storeStack0()
DNewArray.java183 CtPrimitiveType cpt = (CtPrimitiveType)getPrimitiveType(index); in replace2()
/external/javassist/src/main/javassist/bytecode/
DDescriptor.java20 import javassist.CtPrimitiveType;
264 CtPrimitiveType pt = (CtPrimitiveType)type; in toDescriptor()
DBytecode.java19 import javassist.CtPrimitiveType;
1374 CtPrimitiveType ptype = (CtPrimitiveType)type; in addReturn()