Home
last modified time | relevance | path

Searched refs:ptype (Results 1 – 7 of 7) sorted by relevance

/libcore/ojluni/src/main/java/java/lang/invoke/
DTransformers.java572 final Class<?> ptype = ptypes[i]; in transform() local
573 if (!ptype.isPrimitive()) { in transform()
574 arguments[i] = reader.nextReference(ptype); in transform()
575 } else if (ptype == boolean.class) { in transform()
577 } else if (ptype == byte.class) { in transform()
579 } else if (ptype == char.class) { in transform()
581 } else if (ptype == short.class) { in transform()
583 } else if (ptype == int.class) { in transform()
585 } else if (ptype == long.class) { in transform()
587 } else if (ptype == float.class) { in transform()
[all …]
DMethodType.java168 private static void checkPtype(Class<?> ptype) { in checkPtype() argument
169 Objects.requireNonNull(ptype); in checkPtype()
170 if (ptype == void.class) in checkPtype()
176 for (Class<?> ptype : ptypes) { in checkPtypes()
177 checkPtype(ptype); in checkPtypes()
178 if (ptype == double.class || ptype == long.class) { in checkPtypes()
509 Class<?> ptype; in leadingReferenceParameter() local
511 (ptype = ptypes[0]).isPrimitive()) in leadingReferenceParameter()
513 return ptype; in leadingReferenceParameter()
780 for (Class<?> ptype : ptypes) in hashCode()
[all …]
DMethodHandle.java897 Class<?> ptype = mtype.parameterType(i); in asSpreaderChecks() local
898 if (ptype != arrayElement) { in asSpreaderChecks()
900 if (!MethodType.canConvert(arrayElement, ptype)) { in asSpreaderChecks()
DMethodHandles.java2197 final Class<?> ptype = ptypes[pos + i]; in insertArguments() local
2198 if (!ptype.isPrimitive()) { in insertArguments()
2202 values[i] = Wrapper.forPrimitiveType(ptype).convert(values[i], ptype); in insertArguments()
/libcore/ojluni/src/main/java/sun/invoke/util/
DVerifyAccess.java203 Class<?> ptype = (n < 0 ? type.returnType() : type.parameterType(n)); in isTypeVisible() local
204 if (!isTypeVisible(ptype, refc)) in isTypeVisible()
DWrapper.java53 …private Wrapper(Class<?> wtype, Class<?> ptype, char tchar, Object zero, Object emptyArray, int fo… in Wrapper() argument
55 this.primitiveType = ptype; in Wrapper()
61 this.primitiveSimpleName = ptype.getSimpleName(); in Wrapper()
/libcore/dalvik/src/main/java/dalvik/system/
DEmulatedStackFrame.java160 for (Class<?> ptype : frameType.ptypes()) { in create()
161 if (!ptype.isPrimitive()) { in create()
164 frameSize += getSize(ptype); in create()