Lines Matching defs:list

1070      * Add matching types to list. Return true if this type has not
1219 * @param currentMethods The list into which to put the methods.
1289 * @param directMethods The list into which to put the methods.
1423 * to the list. Returns null if any are non-conforming.
1425 protected Vector addRemoteInterfaces (Vector list,
1470 list.addElement(it);
1476 return list;
1481 * to the list.
1483 protected Vector addNonRemoteInterfaces (Vector list,
1516 list.addElement(it);
1522 return list;
1581 // Make member and add to list...
1645 // Yes, so make a member and add to list...
1894 * Add to the supplied list all exceptions in the "from" array
1898 ValueType[] from, ValueType[] with, Vector list)
1903 if (!list.contains(from[i])) {
1908 list.addElement(from[i]);
2037 * ImplementationType and the exceptions list is narrower.
2048 * derived than another in the list. Returns null if no
2051 public ValueType[] getUniqueCatchList(ValueType[] list) {
2052 ValueType[] result = list;
2053 int newSize = list.length;
2058 for (int i = 0; i < list.length; i++) {
2059 ClassDeclaration decl = list[i].getClassDeclaration();
2063 list[i] = null;
2069 for (int i = 0; i < list.length; i++) {
2070 if (list[i] != null) {
2071 ClassDefinition current = list[i].getClassDefinition();
2072 for (int j = 0; j < list.length; j++) {
2073 if (j != i && list[i] != null && list[j] != null &&
2074 current.superClassOf(env, list[j].getClassDeclaration())) {
2075 list[j] = null;
2086 // Create new list if we removed anything...
2088 if (newSize < list.length) {
2091 for (int i = 0; i < list.length; i++) {
2092 if (list[i] != null) {
2093 temp[offset++] = list[i];
2096 list = temp;
2099 if (list.length == 0) {
2102 return list;
2114 public ValueType[] getFilteredStubExceptions(ValueType[] list) {
2115 ValueType[] result = list;
2116 int newSize = list.length;
2120 for (int i = 0; i < list.length; i++) {
2121 ClassDeclaration decl = list[i].getClassDeclaration();
2126 list[i] = null;
2135 // Create new list if we removed anything...
2137 if (newSize < list.length) {
2140 for (int i = 0; i < list.length; i++) {
2141 if (list[i] != null) {
2142 temp[offset++] = list[i];
2145 list = temp;
2148 return list;