Home | History | Annotate | Download | only in type

Lines Matching defs:type

17 package com.android.dexgen.rop.type;
22 * Object which has an associated type, possibly itself.
27 * Gets the type associated with this instance.
29 * @return {@code non-null;} the type
31 public Type getType();
34 * Gets the frame type corresponding to this type. This method returns
35 * {@code this}, except if {@link Type#isIntlike} on the underlying
36 * type returns {@code true} but the underlying type is not in
37 * fact {@link Type#INT}, in which case this method returns an instance
38 * whose underlying type <i>is</i> {@code INT}.
40 * @return {@code non-null;} the frame type for this instance
45 * Gets the basic type corresponding to this instance.
47 * @return the basic type; one of the {@code BT_*} constants
48 * defined by {@link Type}
53 * Gets the basic type corresponding to this instance's frame type. This
56 * instance is an int-like type, in which case this method returns
62 * @return the basic frame type; one of the {@code BT_*} constants
63 * defined by {@link Type}