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

  /libcore/luni/src/test/java/libcore/java/security/cert/
X509CertSelectorTest.java 38 byte[] noMatch = { 127, 0, 0, 2 };
39 assertFalse(certSelector.match(newCertWithSubjectAltNameIpAddress(noMatch)));
49 byte[] noMatch = { 127, 0, 0, 2 };
50 assertFalse(certSelector.match(newCertWithSubjectAltNameIpAddress(noMatch)));
61 byte[] noMatch = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2 };
62 assertFalse(certSelector.match(newCertWithSubjectAltNameIpAddress(noMatch)));
73 byte[] noMatch = { 127, 0, 0, 2, -1, -1, -1, 127 };
74 assertFalse(certSelector.match(newCertWithNameConstraint(noMatch, excluded)));
93 byte[] noMatch = {
97 assertFalse(certSelector.match(newCertWithNameConstraint(noMatch, excluded)))
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/tester/org/apache/http/
FakeHttpLayerTest.java 66 HttpGet noMatch = new HttpGet("example.com");
68 noMatch.setHeader(new BasicHeader("header1", "header not a match"));
71 assertFalse(requestMatcherBuilder.matches(noMatch));
89 HttpPost noMatch = new HttpPost("example.com");
90 noMatch.setEntity(new StringEntity("some text that does not match"));
93 assertFalse(requestMatcherBuilder.matches(noMatch));
  /external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
CharMatcherTest.java 250 private void doTestGeneral(CharMatcher matcher, char match, char noMatch) {
252 doTestOneCharNoMatch(matcher, "" + noMatch);
253 doTestMatchThenNoMatch(matcher, "" + match + noMatch);
254 doTestNoMatchThenMatch(matcher, "" + noMatch + match);