HomeSort by relevance Sort by last modified time
    Searched refs:newExcluded (Results 1 - 2 of 2) sorted by null

  /libcore/ojluni/src/main/java/sun/security/x509/
NameConstraintsExtension.java 349 GeneralSubtrees newExcluded = newConstraints.get(EXCLUDED_SUBTREES);
351 excluded = (newExcluded != null) ?
352 (GeneralSubtrees)newExcluded.clone() : null;
354 if (newExcluded != null) {
356 excluded.union(newExcluded);
373 newExcluded = permitted.intersect(newPermitted);
376 if (newExcluded != null) {
378 excluded.union(newExcluded);
380 excluded = (GeneralSubtrees)newExcluded.clone();
GeneralSubtrees.java 327 GeneralSubtrees newExcluded = null;
343 // remove it, and whether we add anything to newExcluded or newThis.
345 // other. We add an entry to newExcluded if there is at least one
416 if (newExcluded == null) {
417 newExcluded = new GeneralSubtrees();
421 if (!newExcluded.contains(widestSubtree)) {
422 newExcluded.add(widestSubtree);
469 // Step 6: Return the newExcluded GeneralSubtrees
470 return newExcluded;

Completed in 405 milliseconds