Searched refs:allTypes (Results 1 - 6 of 6) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/declaration/
H A DPackageDeclarationImpl.java110 private Collection<TypeDeclaration> allTypes = null; field in class:PackageDeclarationImpl
117 if (allTypes != null) {
118 return allTypes;
120 allTypes = new ArrayList<TypeDeclaration>();
122 allTypes.add(env.declMaker.getTypeDeclaration((ClassSymbol) s));
124 return allTypes;
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DType.java426 return collectMatching(typeCodeFilter,new HashSet(env.allTypes.size()));
609 Type result = (Type) stack.getEnv().allTypes.get(key);
622 Type value = (Type) stack.getEnv().allTypes.remove(key);
631 Type old = (Type) stack.getEnv().allTypes.remove(theKey);
639 stack.getEnv().allTypes.put(key.toString(),value);
646 stack.getEnv().allTypes.put(key,value);
675 for (Enumeration e = env.allTypes.elements() ; e.hasMoreElements() ;) {
690 return env.allTypes.size();
737 result = (Type) env.allTypes.get(key);
H A DBatchEnvironment.java69 Hashtable allTypes = new Hashtable(3001, 0.5f); field in class:BatchEnvironment
181 for (Enumeration e = allTypes.elements() ; e.hasMoreElements() ;) {
211 allTypes.clear();
230 //System.out.println("allTypes.size() = "+ allTypes.size());
236 allTypes = null;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/
H A DSchemaImpl.java207 private final Map<String,XSType> allTypes = new HashMap<String,XSType>(); field in class:SchemaImpl
208 private final Map<String,XSType> allTypesView = Collections.unmodifiableMap(allTypes);
215 allTypes.put(newDecl.getName(), newDecl);
233 allTypes.put(newDecl.getName(), newDecl);
250 return allTypes.get(name);
253 return allTypes.values().iterator();
/openjdk7/jdk/src/share/classes/javax/sound/midi/
H A DMidiSystem.java904 Set allTypes = new HashSet();
912 allTypes.add(new Integer(types[j]));
915 int resultTypes[] = new int[allTypes.size()];
917 Iterator iterator = allTypes.iterator();
958 Set allTypes = new HashSet();
966 allTypes.add(new Integer(types[j]));
969 int resultTypes[] = new int[allTypes.size()];
971 Iterator iterator = allTypes.iterator();
/openjdk7/jdk/test/java/util/Arrays/
H A DCopyMethods.java332 for (Class<?> c : allTypes) {
367 static final List<Class<?>> allTypes field in class:CopyMethods
387 if (m.getName().startsWith("coerceTo") && allTypes.contains(rt))
420 for (Class<?> c : allTypes) {

Completed in 38 milliseconds