Searched refs:typecode (Results 1 - 2 of 2) sorted by relevance

/libcore/luni/src/main/java/java/io/
H A DObjectStreamClass.java959 * <code>typecode<code> describes a primitive type
961 * @param typecode a char describing the typecode
962 * @return {@code true} if the typecode represents a primitive type
963 * {@code false} if the typecode represents an Object type (including arrays)
967 static boolean isPrimitiveType(char typecode) { argument
968 return !(typecode == '[' || typecode == 'L');
H A DObjectInputStream.java919 char typecode = (char) input.readByte();
921 boolean isPrimType = ObjectStreamClass.isPrimitiveType(typecode);
924 classSig = String.valueOf(typecode);

Completed in 42 milliseconds