Searched refs:excludeList (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/make/tools/src/build/tools/javazic/
H A DMappings.java54 private List<String> excludeList; field in class:Mappings
84 if (excludeList == null) {
85 excludeList = new ArrayList<String>();
87 excludeList.add(zone.getName());
119 if (excludeList != null) {
122 if (excludeList.contains(realname)) {
123 excludeList.add(zoneName);
142 boolean isExcluded = (excludeList == null) ?
143 false : excludeList.contains(key);
195 return excludeList;
[all...]
/openjdk7/jdk/src/share/sample/nio/multicast/
H A DReader.java81 List<InetAddress> excludeList = new ArrayList<InetAddress>();
93 parseAddessList(value, excludeList);
98 if (!includeList.isEmpty() && !excludeList.isEmpty()) {
114 for (InetAddress source: excludeList) {
/openjdk7/jdk/src/share/classes/sun/net/www/
H A DMessageHeader.java235 public synchronized Map<String, List<String>> getHeaders(String[] excludeList) { argument
236 return filterAndAddHeaders(excludeList, null);
239 public synchronized Map<String, List<String>> filterAndAddHeaders(String[] excludeList, Map<String, List<String>> include) { argument
243 if (excludeList != null) {
244 // check if the key is in the excludeList.
246 for (int j = 0; j < excludeList.length; j++) {
247 if ((excludeList[j] != null) &&
248 (excludeList[j].equalsIgnoreCase(keys[i]))) {
/openjdk7/jdk/src/share/classes/sun/util/calendar/
H A DZoneInfoFile.java352 * <p><strong>2.6 <code>excludeList</code> structure</strong><p>
852 List<String> excludeList = null;
856 excludeList = cache.get();
857 if (excludeList != null) {
858 return excludeList;
876 excludeList = new ArrayList<String>();
881 excludeList.add(name);
896 if (excludeList != null) {
897 excludedIDs = new SoftReference<List<String>>(excludeList);
901 return excludeList;
[all...]
/openjdk7/jdk/make/tools/src/build/tools/jarreorder/
H A DJarReorder.java129 List<String> excludeList = readListFromFile(excludeListFile, false);
134 Set<String> excludeSet = new HashSet<String>(excludeList);
255 // Not in the excludeList, add it to both lists

Completed in 41 milliseconds