• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/asm/

Lines Matching refs:Type

41 public class Type {
101 public final static Type VOID_TYPE = new Type(VOID);
106 public final static Type BOOLEAN_TYPE = new Type(BOOLEAN);
111 public final static Type CHAR_TYPE = new Type(CHAR);
116 public final static Type BYTE_TYPE = new Type(BYTE);
121 public final static Type SHORT_TYPE = new Type(SHORT);
126 public final static Type INT_TYPE = new Type(INT);
131 public final static Type FLOAT_TYPE = new Type(FLOAT);
136 public final static Type LONG_TYPE = new Type(LONG);
141 public final static Type DOUBLE_TYPE = new Type(DOUBLE);
178 private Type(final int sort) {
191 private Type(final int sort, final char[] buf, final int off, final int len)
205 public static Type getType(final String typeDescriptor) {
215 public static Type getType(final Class c) {
249 public static Type[] getArgumentTypes(final String methodDescriptor) {
265 Type[] args = new Type[size];
284 public static Type[] getArgumentTypes(final Method method) {
286 Type[] types = new Type[classes.length];
301 public static Type getReturnType(final String methodDescriptor) {
314 public static Type getReturnType(final Method method) {
325 private static Type getType(final char[] buf, final int off) {
357 return new Type(ARRAY, buf, off, len + 1);
364 return new Type(OBJECT, buf, off, len + 1);
405 public Type getElementType() {
482 final Type returnType,
483 final Type[] argumentTypes)
539 // without intermediate Type objects
717 if (o == null || !(o instanceof Type)) {
720 Type t = (Type) o;
724 if (sort == Type.OBJECT || sort == Type.ARRAY) {
744 if (sort == Type.OBJECT || sort == Type.ARRAY) {