Lines Matching defs:list

29     /** {@code non-null;} the list {@code [int]} */
32 /** {@code non-null;} the list {@code [long]} */
35 /** {@code non-null;} the list {@code [float]} */
38 /** {@code non-null;} the list {@code [double]} */
41 /** {@code non-null;} the list {@code [Object]} */
44 /** {@code non-null;} the list {@code [ReturnAddress]} */
48 /** {@code non-null;} the list {@code [Throwable]} */
52 /** {@code non-null;} the list {@code [int, int]} */
56 /** {@code non-null;} the list {@code [long, long]} */
60 /** {@code non-null;} the list {@code [float, float]} */
64 /** {@code non-null;} the list {@code [double, double]} */
68 /** {@code non-null;} the list {@code [Object, Object]} */
72 /** {@code non-null;} the list {@code [int, Object]} */
76 /** {@code non-null;} the list {@code [long, Object]} */
80 /** {@code non-null;} the list {@code [float, Object]} */
84 /** {@code non-null;} the list {@code [double, Object]} */
88 /** {@code non-null;} the list {@code [long, int]} */
92 /** {@code non-null;} the list {@code [int[], int]} */
96 /** {@code non-null;} the list {@code [long[], int]} */
100 /** {@code non-null;} the list {@code [float[], int]} */
104 /** {@code non-null;} the list {@code [double[], int]} */
108 /** {@code non-null;} the list {@code [Object[], int]} */
112 /** {@code non-null;} the list {@code [boolean[], int]} */
116 /** {@code non-null;} the list {@code [byte[], int]} */
120 /** {@code non-null;} the list {@code [char[], int]} */
124 /** {@code non-null;} the list {@code [short[], int]} */
128 /** {@code non-null;} the list {@code [int, int[], int]} */
132 /** {@code non-null;} the list {@code [long, long[], int]} */
136 /** {@code non-null;} the list {@code [float, float[], int]} */
140 /** {@code non-null;} the list {@code [double, double[], int]} */
144 /** {@code non-null;} the list {@code [Object, Object[], int]} */
148 /** {@code non-null;} the list {@code [int, boolean[], int]} */
152 /** {@code non-null;} the list {@code [int, byte[], int]} */
156 /** {@code non-null;} the list {@code [int, char[], int]} */
160 /** {@code non-null;} the list {@code [int, short[], int]} */
226 * Returns the given list as a comma-separated list of human forms. This
230 * @param list {@code non-null;} the list to convert
233 public static String toHuman(TypeList list) {
234 int size = list.size();
246 sb.append(list.getType(i).toHuman());
253 * Returns a hashcode of the contents of the given list. This
257 * @param list {@code non-null;} the list to inspect
260 public static int hashContents(TypeList list) {
261 int size = list.size();
265 hash = (hash * 31) + list.getType(i).hashCode();
276 * @param list1 {@code non-null;} one list to compare
277 * @param list2 {@code non-null;} another list to compare
301 * @param list1 {@code non-null;} one list to compare
302 * @param list2 {@code non-null;} another list to compare
329 * @param size the size of the list