HomeSort by relevance Sort by last modified time
    Searched refs:matches (Results 401 - 425 of 840) sorted by null

<<11121314151617181920>>

  /external/wpa_supplicant_8/src/ap/
gas_serv.c 296 } matches[10]; local
347 matches[num_matching].realm_data_idx =
349 matches[num_matching].realm_idx = k;
369 matches[i].realm_data_idx, matches[i].realm_idx);
370 realm = &hapd->conf->nai_realm_data[matches[i].realm_data_idx];
371 anqp_add_nai_realm_data(buf, realm, matches[i].realm_idx);
  /external/icu4c/test/intltest/
csdetest.cpp 172 const UCharsetMatch **matches = ucsdet_detectAll(csd.getAlias(), &matchCount, &status); local
175 UnicodeString name(ucsdet_getName(matches[0], &status));
176 UnicodeString lang(ucsdet_getLanguage(matches[0], &status));
181 errln("Encoding detection failure for " + id + ": expected " + eSplit[0] + ", got no matches");
190 const char *name = ucsdet_getName(matches[m], &status);
191 const char *lang = ucsdet_getLanguage(matches[m], &status);
192 int32_t confidence = ucsdet_getConfidence(matches[m], &status);
206 dLength = ucsdet_getUChars(matches[0], decoded, testLength, &status);
286 errln("Detection failure for UTF-8: got no matches.");
327 errln("Encoding detection failure for UTF-16BE: got no matches.")
729 const UCharsetMatch **matches = ucsdet_detectAll(csd, &matchCount, &status); local
    [all...]
  /external/chromium/chrome/common/extensions/
url_pattern_unittest.cc 246 // SCHEME_ALL matches all schemes.
274 const char* matches; member in struct:MatchPatterns
293 GURL(kMatch13UrlPatternTestCases[i].matches)))
294 << " while matching " << kMatch13UrlPatternTestCases[i].matches;
  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/
AsYouTypeFormatter.java 84 // regular expression that matches up to this number of digits.
176 return ELIGIBLE_FORMAT_PATTERN.matcher(format).matches();
223 // Creates a phone number consisting only of the digit 9 that matches the
391 PhoneNumberUtil.PLUS_CHARS_PATTERN.matcher(Character.toString(nextChar)).matches());
397 if (m.matches()) {
  /external/webkit/Source/WebCore/svg/
SVGStyledElement.cpp 311 if (attrName.matches(HTMLNames::classAttr))
327 if (attrName.matches(HTMLNames::classAttr))
346 if (attrName == anyQName() || attrName.matches(HTMLNames::classAttr))
  /external/webkit/Source/WebCore/workers/
DefaultSharedWorkerRepository.cpp 75 bool matches(const String& name, PassRefPtr<SecurityOrigin> origin, const KURL& urlToMatch) const;
120 bool SharedWorkerProxy::matches(const String& name, PassRefPtr<SecurityOrigin> origin, const KURL& urlToMatch) const function in class:WebCore::SharedWorkerProxy
401 if (!m_proxies[i]->isClosing() && m_proxies[i]->matches(name, origin, url))
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/
EditFilterDialog.java 325 * Returns the index in the combo that matches the log level
347 if (mPid.matches("[0-9]*") == false) { //$NON-NLS-1$
363 if (mTag.matches(".*[:|].*") == true) { //$NON-NLS-1$
379 if (mName.matches(".*[:|].*") == true) { //$NON-NLS-1$
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
WrongIdDetector.java 312 Multimap<Integer, String> matches = ArrayListMultimap.create(2, 10); local
325 matches.put(distance, matchWith);
336 Collection<String> s = matches.get(i);
  /tools/motodev/src/plugins/emulator/src/com/motorola/studio/android/emulator/device/ui/
DpiScaleCalculatorDialog.java 332 if (!screenSizeValue.getText().matches(REGEX_1))
337 if (monitorDpiValueButton.getSelection() && !monitorDpiValue.getText().matches(REGEX_2))
342 if (!monitorDpiValueButton.getSelection() && !monitorSizeText.getText().matches(REGEX_1))
  /cts/libs/vogar-expect/src/vogar/
Outcome.java 138 return expectation.matches(this) ? ResultValue.OK : ResultValue.FAIL;
  /cts/tests/tests/graphics/src/android/opengl/cts/
OpenGlEsVersionTest.java 166 assertTrue(message, Pattern.matches(".*OpenGL.*ES.*" + majorVersion + "\\.\\d.*",
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_Audio_PlaylistsTest.java 122 assertTrue(Pattern.matches("content://media/internal/audio/playlists/\\d+",
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyGetAppFrameRateEvent.java 114 if (m.matches()) {
MonkeyGetFrameRateEvent.java 103 if (m.matches()){
  /development/samples/Wiktionary/src/com/example/android/wiktionary/
ExtendedWikiHelper.java 255 sValidSections.matcher(title).matches()) {
  /external/apache-harmony/regex/src/test/java/org/apache/harmony/tests/java/util/regex/
Matcher2Test.java 40 assertFalse(m.matches());
  /external/doclava/src/com/google/doclava/
DocFile.java 78 if (prop.matches()) {
  /external/guava/guava/src/com/google/common/net/
HostAndPort.java 157 checkArgument(matcher.matches(), "Invalid bracketed host/port: %s", hostPortString);
  /external/icu4c/i18n/
repattrn.cpp 474 // matches Convenience function to test for a match, starting
478 UBool U_EXPORT2 RegexPattern::matches(const UnicodeString &regex, function in class:RegexPattern
491 retVal = matcher->matches(status);
500 // matches, UText mode
502 UBool U_EXPORT2 RegexPattern::matches(UText *regex, function in class:RegexPattern
517 retVal = matcher->matches(status);
  /external/iproute2/include/
utils.h 104 int matches(const char *arg, const char *pattern);
  /external/ipsec-tools/src/racoon/
cftoken.l 101 glob_t matches;
637 incstack[incstackp].matches.gl_pathc) {
638 char* filepath = incstack[incstackp].matches.gl_pathv[incstack[incstackp].matchon];
648 globfree(&incstack[incstackp].matches);
716 if (glob(path, GLOB_TILDE, NULL, &incstack[incstackp].matches) != 0 ||
717 incstack[incstackp].matches.gl_pathc == 0) {
719 "glob found no matches for path \"%s\"\n", path);
726 if (incstack[incstackp].matchon >= incstack[incstackp].matches.gl_pathc)
729 incstack[incstackp].matches.gl_pathv[incstack[incstackp].matchon];
  /external/markdown/markdown/
inlinepatterns.py 125 * pattern: A regular expression that matches a pattern
  /external/protobuf/gtest/test/
gtest_xml_output_unittest.py 192 gtest_prog_name matches expected_xml, a string containing another
  /external/webkit/Source/WebCore/dom/
Attr.cpp 191 return qualifiedName().matches(document()->idAttributeName());
NamedNodeMap.h 130 if (m_attributes[i]->name().matches(name))
143 // Optimize for the case where the attribute exists and its name exactly matches.

Completed in 4166 milliseconds

<<11121314151617181920>>