Searched defs:inputSet (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/make/tools/src/build/tools/jarreorder/
H A DJarReorder.java142 Set<String> inputSet = new HashSet<String>();
146 if ( name != null && name.length() > 0 && !inputSet.contains(name) ) {
147 inputSet.add(name);
153 Set<String> allFilesIncluded = expand(null, inputSet, processed);
232 * Expands inputSet (files or dirs) into full set of all files that
235 * @param inputSet set of files or dirs to look into
240 Set<String> inputSet,
243 if (inputSet.isEmpty()) {
246 for (String name : inputSet) {
239 expand(File dir, Set<String> inputSet, Set<String> processed) argument
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/utils/
H A DXMLUtils.java664 * @param inputSet
667 public static Set<Node> excludeNodeFromSet(Node signatureElement, Set<Node> inputSet) { argument
669 Iterator<Node> iterator = inputSet.iterator();

Completed in 42 milliseconds