Searched refs:excluded (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DNameConstraintsExtension.java45 * The name constraints extension provides permitted and excluded
49 * matching a restriction in the excluded subtrees field is invalid
85 private GeneralSubtrees excluded = null; field in class:NameConstraintsExtension
95 if (excluded != null) {
96 for (int i = 0; i < excluded.size(); i++) {
97 GeneralSubtree subtree = excluded.get(i);
120 if (permitted == null && excluded == null) {
133 if (excluded != null) {
135 excluded.encode(tmp);
149 * @param excluded th
151 NameConstraintsExtension(GeneralSubtrees permitted, GeneralSubtrees excluded) argument
[all...]
H A DGeneralSubtrees.java301 * the list of names that are specifically excluded. The reason
315 * @returns GeneralSubtrees to be merged with excluded; these are
330 // return no new excluded entries
394 // type to excluded.
490 * is used in merging excluded NameConstraints with permitted NameConstraints
494 * @param excluded GeneralSubtrees
496 public void reduce(GeneralSubtrees excluded) { argument
497 if (excluded == null) {
500 for (int i = 0, n = excluded.size(); i < n; i++) {
501 GeneralNameInterface excludedName = excluded
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DClassLoaderRepositorySupport.java240 List<ClassLoader> excluded = search.get(className);
241 if ((excluded!= null) && (excluded.contains(aloader))) {
253 if (excluded == null) {
254 excluded = new ArrayList<ClassLoader>(1);
255 search.put(className, excluded);
257 excluded.add(aloader);
271 List<ClassLoader> excluded = search.get(className);
272 if (excluded != null) {
273 excluded
[all...]
/openjdk7/jdk/src/share/classes/sun/util/calendar/
H A DZoneInfo.java577 List<String> excluded = ZoneInfoFile.getExcludedZones();
578 if (excluded != null) {
579 // List all zones from the idList and excluded lists
580 List<String> list = new ArrayList<String>(idList.size() + excluded.size());
582 list.addAll(excluded);
620 // We need to add any zones from the excluded zone list that
625 List<String> excluded = ZoneInfoFile.getExcludedZones();
626 if (excluded != null) {
627 for (String id : excluded) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/util/
H A DUri.java112 private static final String excluded = "<>\"{}|\\^`"; field in class:Uri
115 return c <= 0x20 || c >= 0x7F || excluded.indexOf(c) >= 0;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/util/
H A DUri.java102 private static String excluded = "<>\"{}|\\^`"; field in class:Uri
105 return c <= 0x20 || c >= 0x7F || excluded.indexOf(c) >= 0;
/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DTagStack.java123 boolean excluded(int elemIndex) { method in class:TagStack
H A DParser.java659 if (stack.excluded(e.getIndex())) {
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DBuilder.java345 /* reduce permitted by excluded */
348 GeneralSubtrees excluded = (GeneralSubtrees)
351 permitted.reduce(excluded);
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DX509CertSelector.java2481 GeneralSubtrees excluded = (GeneralSubtrees)
2483 if (excluded != null) {
2484 if (matchExcluded(excluded) == false) {
2503 private boolean matchExcluded(GeneralSubtrees excluded) { argument
2505 * Enumerate through excluded and compare each entry
2507 * subtrees listed in excluded, return false.
2509 for (Iterator<GeneralSubtree> t = excluded.iterator(); t.hasNext(); ) {
2522 debug.println("X509CertSelector.match: excluded name: " +

Completed in 51 milliseconds