Searched refs:excluded (Results 1 – 8 of 8) sorted by relevance
/libcore/ojluni/src/main/java/sun/security/x509/ |
D | NameConstraintsExtension.java | 82 private GeneralSubtrees excluded = null; field in NameConstraintsExtension 92 if (excluded != null) { in calcMinMax() 93 for (int i = 0; i < excluded.size(); i++) { in calcMinMax() 94 GeneralSubtree subtree = excluded.get(i); in calcMinMax() 117 if (permitted == null && excluded == null) { in encodeThis() 130 if (excluded != null) { in encodeThis() 132 excluded.encode(tmp); in encodeThis() 149 GeneralSubtrees excluded) in NameConstraintsExtension() argument 152 this.excluded = excluded; in NameConstraintsExtension() 200 if (excluded != null) { in NameConstraintsExtension() [all …]
|
D | GeneralSubtrees.java | 496 public void reduce(GeneralSubtrees excluded) { in reduce() argument 497 if (excluded == null) { in reduce() 500 for (int i = 0, n = excluded.size(); i < n; i++) { in reduce() 501 GeneralNameInterface excludedName = excluded.getGeneralNameInterface(i); in reduce()
|
/libcore/luni/src/test/java/libcore/java/security/cert/ |
D | X509CertSelectorTest.java | 66 byte[] excluded = { (byte) 192, (byte) 168, 0, 1 }; in testMatchMaskedIpv4NameConstraint() 72 assertTrue(certSelector.match(newCertWithNameConstraint(directMatch, excluded))); in testMatchMaskedIpv4NameConstraint() 76 assertFalse(certSelector.match(newCertWithNameConstraint(noMatch, excluded))); in testMatchMaskedIpv4NameConstraint() 80 assertFalse(certSelector.match(newCertWithNameConstraint(subnetWithNoMask, excluded))); in testMatchMaskedIpv4NameConstraint() 84 assertTrue(certSelector.match(newCertWithNameConstraint(maskedMatch, excluded))); in testMatchMaskedIpv4NameConstraint() 88 byte[] excluded = { in testMatchMaskedIpv6NameConstraint() 100 assertTrue(certSelector.match(newCertWithNameConstraint(directMatch, excluded))); in testMatchMaskedIpv6NameConstraint() 107 assertFalse(certSelector.match(newCertWithNameConstraint(noMatch, excluded))); in testMatchMaskedIpv6NameConstraint() 114 assertFalse(certSelector.match(newCertWithNameConstraint(subnetWithNoMask, excluded))); in testMatchMaskedIpv6NameConstraint() 121 assertTrue(certSelector.match(newCertWithNameConstraint(maskedMatch, excluded))); in testMatchMaskedIpv6NameConstraint() [all …]
|
/libcore/json/src/main/java/org/json/ |
D | JSONTokener.java | 343 private String nextToInternal(String excluded) { in nextToInternal() argument 347 if (c == '\r' || c == '\n' || excluded.indexOf(c) != -1) { in nextToInternal() 554 public String nextTo(String excluded) { in nextTo() argument 555 if (excluded == null) { in nextTo() 558 return nextToInternal(excluded).trim(); in nextTo() 564 public String nextTo(char excluded) { in nextTo() argument 565 return nextToInternal(String.valueOf(excluded)).trim(); in nextTo()
|
/libcore/ojluni/src/main/java/sun/security/provider/certpath/ |
D | Builder.java | 345 GeneralSubtrees excluded = in targetDistance() local 348 permitted.reduce(excluded); in targetDistance()
|
/libcore/ojluni/src/main/java/java/security/cert/ |
D | X509CertSelector.java | 2467 GeneralSubtrees excluded = in matchPathToNames() local 2469 if (excluded != null) { in matchPathToNames() 2470 if (matchExcluded(excluded) == false) { in matchPathToNames() 2489 private boolean matchExcluded(GeneralSubtrees excluded) { in matchExcluded() argument 2495 for (Iterator<GeneralSubtree> t = excluded.iterator(); t.hasNext(); ) { in matchExcluded()
|
/libcore/ |
D | LICENSE | 218 distribution is permitted only in or among countries not thus excluded. In
|
/libcore/ojluni/ |
D | NOTICE | 504 distribution is permitted only in or among countries not thus excluded. In
|