HomeSort by relevance Sort by last modified time
    Searched full:nomatch (Results 1 - 25 of 60) sorted by null

1 2 3

  /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));
  /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...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
HasAttributeNS.java 36 * return false since the element has "nomatch" as the local name and
74 String localName = "nomatch";
88 String namespaceURI = "http://www.nomatch.com";
GetElementsByTagNameNS.java 152 String localName = "nomatch";
163 elementList = doc.getElementsByTagNameNS("http://www.nomatch.com",
268 "nomatch");
277 elementList = docElem.getElementsByTagNameNS("http://www.nomatch.com",
  /external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechRecognitionEvent.cpp 57 return adoptRefWillBeNoop(new SpeechRecognitionEvent(EventTypeNames::nomatch, 0, SpeechRecognitionResultList::create(results)));
60 return adoptRefWillBeNoop(new SpeechRecognitionEvent(EventTypeNames::nomatch, 0, nullptr));
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
hasAttribute03.java 37 * should return false since the element does not have "nomatch" as an attribute.
71 state = testNode.hasAttribute("nomatch");
getElementsByTagNameNS05.java 39 * using the "http://www.nist.gov" as the namespaceURI and "nomatch" as the
70 String localName = "nomatch";
getElementsByTagNameNS06.java 39 * using the "http://www.nomatch.com" as the namespaceURI and "address" as the
78 elementList = doc.getElementsByTagNameNS("http://www.nomatch.com", "address");
getElementsByTagNameNS12.java 39 * using the "http://www.nist.gov" as the namespaceURI and "nomatch" as the
73 elementList = docElem.getElementsByTagNameNS("http://www.nist.gov", "nomatch");
getElementsByTagNameNS13.java 39 * using the "http://www.nomatch.com" as the namespaceURI and "address" as the
79 elementList = docElem.getElementsByTagNameNS("http://www.nomatch.com", "address");
hasAttributeNS01.java 39 * should return false since the element has "nomatch" as the local name
67 String localName = "nomatch";
hasAttributeNS02.java 39 * and "http://www.nomatch.com" as the namespace URI.
67 String namespaceURI = "http://www.nomatch.com";
  /external/chromium_org/content/test/data/speech/
web_speech_recognition.html 43 recognizer.onnomatch = function() { console.log('nomatch'); }
  /external/chromium_org/third_party/WebKit/Source/core/events/
EventTypeNames.in 133 nomatch
  /external/iptables/extensions/
libxt_set.c 213 " [!] --match-set name flags [--return-nomatch]\n"
222 {.name = "return-nomatch", .has_arg = false, .val = '3'},
279 printf(" return-nomatch");
289 printf(" --return-nomatch");
297 " [!] --match-set name flags [--return-nomatch]\n"
309 {.name = "return-nomatch", .has_arg = false, .val = '3'},
412 "--return-nomatch flag cannot be inverted\n");
474 printf(" %sreturn-nomatch", sep);
libxt_set.man 18 \fB\-\-return\-nomatch\fP
19 If the \fB\-\-return\-nomatch\fP option is specified and the set type
  /external/chromium_org/chrome/browser/ui/views/
menu_controller_interactive_uitest.cc 88 #define MAYBE_NoMatch NoMatch
menu_controller_test.cc 67 VIEW_TEST(MenuControllerMnemonicTestNoMatch, NoMatch);
  /external/chromium_org/third_party/re2/re2/
compile.cc 166 Frag NoMatch();
297 Frag Compiler::NoMatch() {
309 return NoMatch();
340 return NoMatch();
357 return NoMatch();
380 return NoMatch();
396 return NoMatch();
415 return NoMatch();
424 return NoMatch();
433 return NoMatch();
    [all...]
  /external/regex-re2/re2/
compile.cc 165 Frag NoMatch();
296 Frag Compiler::NoMatch() {
308 return NoMatch();
339 return NoMatch();
356 return NoMatch();
379 return NoMatch();
395 return NoMatch();
414 return NoMatch();
423 return NoMatch();
432 return NoMatch();
    [all...]
  /external/srec/srec/Recognizer/src/
RecognizerResultImpl.c 157 ESR_BOOL noMatch = ESR_TRUE;
172 noMatch = ESR_FALSE;
178 if (noMatch)
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
elementgetelementsbytagname.java 35 * using the string "noMatch" as the tagName.
elementgetelementsbytagnamenomatch.java 66 elementList = doc.getElementsByTagName("noMatch");
hc_elementgetelementsbytagname.java 35 * using the string "noMatch" as the tagName.
hc_elementgetelementsbytagnamenomatch.java 65 elementList = doc.getElementsByTagName("noMatch");

Completed in 933 milliseconds

1 2 3