Home
last modified time | relevance | path

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

/external/javassist/src/main/javassist/compiler/
DJvstCodeGen.java21 import javassist.CtPrimitiveType;
205 else if (returnType instanceof CtPrimitiveType) { in atCastToRtype()
206 CtPrimitiveType pt = (CtPrimitiveType)returnType; in atCastToRtype()
223 if (clazz instanceof CtPrimitiveType) { in atCastToWrapper()
224 CtPrimitiveType pt = (CtPrimitiveType)clazz; in atCastToWrapper()
634 CtPrimitiveType pt = (CtPrimitiveType)params[i]; in compileParameterList()
667 if (type instanceof CtPrimitiveType) { in compileUnwrapValue()
668 CtPrimitiveType pt = (CtPrimitiveType)type; in compileUnwrapValue()
691 CtPrimitiveType pt = (CtPrimitiveType)type; in setType()
714 if (type instanceof CtPrimitiveType) { in doNumCast()
[all …]
DJvstTypeChecker.java21 import javassist.CtPrimitiveType;
128 else if (returnType instanceof CtPrimitiveType) { in atCastToRtype()
129 CtPrimitiveType pt = (CtPrimitiveType)returnType; in atCastToRtype()
143 if (clazz instanceof CtPrimitiveType) { in atCastToWrapper()
278 CtPrimitiveType pt = (CtPrimitiveType)type; in setType()
DJavac.java26 import javassist.CtPrimitiveType;
241 if (type instanceof CtPrimitiveType) { in makeDefaultBody()
242 CtPrimitiveType pt = (CtPrimitiveType)type; in makeDefaultBody()
/external/javassist/src/main/javassist/
DCtClass.java149 new CtPrimitiveType("boolean", 'Z', "java.lang.Boolean",
154 charType = new CtPrimitiveType("char", 'C', "java.lang.Character",
159 byteType = new CtPrimitiveType("byte", 'B', "java.lang.Byte",
164 shortType = new CtPrimitiveType("short", 'S', "java.lang.Short",
169 intType = new CtPrimitiveType("int", 'I', "java.lang.Integer",
174 longType = new CtPrimitiveType("long", 'J', "java.lang.Long",
179 floatType = new CtPrimitiveType("float", 'F', "java.lang.Float",
184 doubleType = new CtPrimitiveType("double", 'D', "java.lang.Double",
189 voidType = new CtPrimitiveType("void", 'V', "java.lang.Void",
DCtPrimitiveType.java23 public final class CtPrimitiveType extends CtClass { class
32 CtPrimitiveType(String name, char desc, String wrapper, in CtPrimitiveType() method in CtPrimitiveType
DCtNewWrappedMethod.java190 CtPrimitiveType pt = (CtPrimitiveType)type; in compileReturn()
DCtBehavior.java682 CtPrimitiveType cpt = (CtPrimitiveType)type; in addParameter2()
934 code.addOpcode(((CtPrimitiveType)rtype).getReturnOp()); in insertAfterAdvice()
990 char c = ((CtPrimitiveType)rtype).getDescriptor(); in insertAfterHandler()
DCtField.java1406 code.addNewarray(((CtPrimitiveType)type).getArrayType(), in addNewarray()
/external/javassist/src/main/javassist/expr/
DFieldAccess.java24 import javassist.CtPrimitiveType;
277 if (fieldType instanceof CtPrimitiveType) in doit()
278 stack += ((CtPrimitiveType)fieldType).getDataSize(); in doit()
330 if (fieldType instanceof CtPrimitiveType) in doit()
331 stack -= ((CtPrimitiveType)fieldType).getDataSize(); in doit()
DNewArray.java22 import javassist.CtPrimitiveType;
203 CtPrimitiveType cpt = (CtPrimitiveType)getPrimitiveType(index); in replace2()
DExpr.java27 import javassist.CtPrimitiveType;
245 if (c instanceof CtPrimitiveType) in storeStack0()
246 size = ((CtPrimitiveType)c).getDataSize(); in storeStack0()
/external/javassist/src/main/javassist/bytecode/
DDescriptor.java23 import javassist.CtPrimitiveType;
259 CtPrimitiveType pt = (CtPrimitiveType)type; in toDescriptor()
DBytecode.java20 import javassist.CtPrimitiveType;
1461 CtPrimitiveType ptype = (CtPrimitiveType)type; in addReturn()