HomeSort by relevance Sort by last modified time
    Searched refs:matches (Results 376 - 400 of 772) sorted by null

<<11121314151617181920>>

  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/lib/oauth/
OAuth.php 758 if (preg_match_all('/('.($only_allow_oauth_parameters ? 'oauth_' : '').'[a-z_-]*)=(:?"([^"]*)"|([^,]*))/', $header, $matches)) {
759 foreach ($matches[1] as $i => $h) {
760 $params[$h] = OAuthUtil::urldecode_rfc3986(empty($matches[3][$i]) ? $matches[4][$i] : $matches[3][$i]);
  /external/iproute2/ip/
ipxfrm.c 1026 if (matches(*argv, "transport") == 0)
1028 else if (matches(*argv, "tunnel") == 0)
1030 else if (matches(*argv, "ro") == 0)
1032 else if (matches(*argv, "in_trigger") == 0)
1034 else if (matches(*argv, "beet") == 0)
1349 if (matches(*argv, "state") == 0 ||
1350 matches(*argv, "sa") == 0)
1352 else if (matches(*argv, "policy") == 0)
1354 else if (matches(*argv, "monitor") == 0)
1356 else if (matches(*argv, "help") == 0)
    [all...]
  /external/littlemock/src/com/google/testing/littlemock/
LittleMock.java 245 /** Creates a {@link CallCount} that matches exactly the given number of calls. */
253 /** Creates a {@link CallCount} that only matches if the method was never called. */
256 /** Creates a {@link CallCount} that matches at least one method call. */
259 /** Creates a {@link CallCount} that matches any number of method calls, including none at all. */
262 /** Creates a {@link CallCount} that matches at least the given number of calls. */
265 /** Creates a {@link CallCount} that matches up to the given number of calls but no more. */
268 /** Creates a {@link CallCount} that matches any number of calls between the two given bounds. */
272 * Creates an argument matcher that matches any object, don't use for primitives.
279 /** Generates an argument matcher that matches any string. */
282 /** Generates an argument matcher that matches any int. *
    [all...]
  /external/regex-re2/re2/
dfa.cc 77 bool* failed, const char** ep, vector<int>* matches);
236 matches(NULL) { }
248 vector<int>* matches; member in struct:re2::DFA::SearchParams
472 // Signals that the rest of the string matches no matter what it is.
535 // the DFA matches, not where it matches in the text. To decide where the
536 // DFA matches, we need to mimic the behavior of the dominant backtracking
571 // set would correspond to matches beginning at a given point in the string.
609 // to indicate that it's all matches from here out.
    [all...]
  /external/clang/lib/Driver/
Driver.cpp 118 if (A->getOption().matches(options::OPT_mcpu_EQ) &&
180 if ((A->getOption().matches(options::OPT_Wl_COMMA) ||
181 A->getOption().matches(options::OPT_Xlinker)) &&
198 if (A->getOption().matches(options::OPT_Wp_COMMA) &&
213 if (A->getOption().matches(options::OPT_l)) {
434 if (A->getOption().matches(options::OPT_arch)) {
619 // return an answer which matches our definition of __VERSION__.
806 if (A->getOption().matches(options::OPT_arch)) {
873 if (A && !A->getOption().matches(options::OPT_g0) &&
874 !A->getOption().matches(options::OPT_gstabs) &
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
StylesSidebarPane.js     [all...]
  /external/bluetooth/bluez/attrib/
att.c 292 uint16_t enc_find_by_type_resp(GSList *matches, uint8_t *pdu, int len)
302 for (l = matches, offset = 1; l && len >= (offset + 4);
316 GSList *matches; local
325 for (offset = 1, matches = NULL; len >= (offset + 4); offset += 4) {
330 matches = g_slist_append(matches, range);
333 return matches;
  /external/chromium/chrome/browser/autocomplete/
autocomplete.cc 563 // Reserve space for the max number of matches we'll show.
593 // If we've got no matches we can copy everything from the last result.
600 // In hopes of providing a stable popup we try to keep the number of matches
602 // relevant matches) typically result in many successive 'What You Typed'
603 // results filling all the matches, which looks awful.
605 // Instead of starting with the current matches and then adding old matches
606 // until we hit our overall limit, we copy enough old matches so that each
608 // clamp globally. This way, old high-relevance matches will starve new
609 // low-relevance matches, under the assumption that the new matches wil
    [all...]
  /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/bluetooth/glib/gio/inotify/
inotify-kernel.c 323 _ik_move_stats (guint32 *matches,
326 if (matches)
327 *matches = ik_move_matches;
  /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/ddmlib/src/com/android/ddmlib/
FileListingService.java 331 return m.matches();
426 if (m.matches() == false) {
666 if (m.matches()) {
  /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 311 Multimap<Integer, String> matches = ArrayListMultimap.create(2, 10); local
324 matches.put(distance, matchWith);
335 Collection<String> s = matches.get(i);
  /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 119 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()) {

Completed in 1346 milliseconds

<<11121314151617181920>>