Searched defs:allTypes (Results 1 - 4 of 4) 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 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/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) {
/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();

Completed in 39 milliseconds