Searched defs:fromType (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/expr/
H A DLValue.java283 static boolean isComponentAssignable(Type fromType, Type toType) { argument
284 if (fromType instanceof PrimitiveType) {
287 return fromType.equals(toType);
294 return isAssignableTo(fromType, toType);
297 static boolean isArrayAssignableTo(ArrayType fromType, Type toType) { argument
301 return isComponentAssignable(fromType.componentType(), toComponentType);
316 static boolean isAssignableTo(Type fromType, Type toType) { argument
317 if (fromType.equals(toType)) {
322 if (fromType instanceof BooleanType) {
333 if (fromType instanceo
[all...]
/openjdk7/jdk/src/share/classes/sun/reflect/
H A DAccessorGenerator.java612 Class fromType,
627 if ( fromType == Byte.TYPE
628 || fromType == Short.TYPE
629 || fromType == Character.TYPE
630 || fromType == Integer.TYPE) {
638 } else if (fromType == Long.TYPE) {
644 } else if (fromType == Float.TYPE) {
610 emitWideningBytecodeForPrimitiveConversion(ClassFileAssembler cb, Class fromType, Class toType) argument
/openjdk7/jdk/src/share/classes/java/sql/
H A DDatabaseMetaData.java440 * <code>CONVERT</code> for conversions between the JDBC types <i>fromType</i>
444 * @param fromType the type to convert from; one of the type codes from
452 boolean supportsConvert(int fromType, int toType) throws SQLException; argument

Completed in 33 milliseconds