HomeSort by relevance Sort by last modified time
    Searched refs:matched (Results 1 - 25 of 27) sorted by null

1 2

  /external/clearsilver/util/
wildmat.c 62 register int matched; local
88 if ((matched = DoMatch(text++, p)) != FALSE)
89 return matched;
96 matched = FALSE;
99 matched = TRUE;
104 matched = TRUE;
105 if (matched == reverse)
126 register int matched; local
152 if ((matched = DoMatchCaseInsensitive(text++, p)) != FALSE)
153 return matched;
    [all...]
  /external/webkit/WebKitTools/Scripts/webkitpy/
diff_parser.py 51 conversion_patterns = (("^diff --git \w/(.+) \w/(?P<FilePath>.+)", lambda matched: "Index: " + matched.group('FilePath') + "\n"),
52 ("^new file.*", lambda matched: "\n"),
53 ("^index [0-9a-f]{7}\.\.[0-9a-f]{7} [0-9]{6}", lambda matched: "===================================================================\n"),
54 ("^--- \w/(?P<FilePath>.+)", lambda matched: "--- " + matched.group('FilePath') + "\n"),
55 ("^\+\+\+ \w/(?P<FilePath>.+)", lambda matched: "+++ " + matched.group('FilePath') + "\n"))
58 matched = match(pattern, line)
59 if matched
    [all...]
  /external/webkit/WebCore/platform/image-decoders/
ImageDecoder.cpp 220 const int* matched = std::lower_bound(dataStart + searchStart, dataEnd, valueToMatch); local
223 return matched != dataEnd && *matched == valueToMatch ? matched - dataStart : -1;
225 return matched != dataEnd && *matched == valueToMatch ? matched - dataStart : matched - dataStart - 1;
228 return matched != dataEnd ? matched - dataStart : -1
    [all...]
  /external/sqlite/android/
OldPhoneNumberUtils.cpp 198 int matched; local
216 matched = 0;
242 ia--; ib--; matched++;
246 if (matched < MIN_MATCH) {
250 // if the number of dialable chars in a and b match, but the matched chars < MIN_MATCH,
252 if (effectiveALen == effectiveBLen && effectiveALen == matched) {
259 // At least one string has matched completely;
260 if (matched >= MIN_MATCH && (ia < 0 || ib < 0)) {
  /external/webkit/WebKitTools/Scripts/webkitpy/style/processors/
cpp.py     [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
CopyOnWriteArraySet.java 345 // Mark matched elements to avoid re-checking
346 boolean[] matched = new boolean[len];
353 if (!matched[i] && eq(x, elements[i])) {
354 matched[i] = true;
  /external/qemu/distrib/sdl-1.2.12/src/video/fbcon/
SDL_fbvideo.c 800 int matched; local
804 matched = 0;
810 (!matched || (vinfo->bits_per_pixel == cinfo.bits_per_pixel)) ) {
818 if ( matched ) {
821 matched = 1;
826 return(matched);
831 int matched; local
835 matched = 0;
854 matched = 1;
858 return(matched);
    [all...]
  /frameworks/base/core/java/com/google/android/util/
AbstractMessageParser.java 1180 private boolean matched; field in class:AbstractMessageParser.Format
    [all...]
  /external/openssl/crypto/x509v3/
pcy_tree.c 315 int i, matched = 0; local
324 matched = 1;
327 if (!matched && last->anyPolicy)
414 /* If no policy mapping: matched if one child present */
423 /* If mapping: matched if one child per expected policy set */
  /frameworks/base/telephony/java/android/telephony/
PhoneNumberUtils.java 380 int matched; local
392 matched = 0;
418 ia--; ib--; matched++;
422 if (matched < MIN_MATCH) {
427 // if the number of dialable chars in a and b match, but the matched chars < MIN_MATCH,
429 if (effectiveALen == effectiveBLen && effectiveALen == matched) {
436 // At least one string has matched completely;
437 if (matched >= MIN_MATCH && (ia < 0 || ib < 0)) {
    [all...]
  /external/grub/docs/
help2man 353 my $matched = '';
359 $matched .= $& if %append;
369 $matched .= $& if %append;
382 $matched .= $& if %append;
390 $matched .= $& if %append;
398 $matched .= $& if %append;
407 $matched .= $& if %append;
415 $matched .= $& if %append;
433 # Check if matched paragraph contains /pat/.
438 if ($matched =~ $pat
    [all...]
  /external/v8/test/mjsunit/
string-match.js 43 // Returns array of matched strings.
regexp-static.js 130 // global regexp is matched and replaced with the result of a function, in
  /external/dbus/bus/
signals.c 1865 dbus_bool_t matched; local
    [all...]
  /external/icu4c/common/
triedict.cpp 176 int matched; local
177 matched = search(fIter, length, NULL, count, 0, parent, pMatched);
179 while (matched++ < length) {
    [all...]
  /frameworks/base/libs/utils/
BackupHelpers.cpp 813 bool matched = true;
827 matched = false;
831 return matched ? 0 : 1;
    [all...]
  /external/protobuf/gtest/src/
gtest-death-test.cc 468 const bool matched = RE::PartialMatch(error_message.c_str(), *regex()); local
469 if (matched) {
    [all...]
  /external/dnsmasq/src/
rfc2131.c 607 int i, matched = 0; local
614 matched = 1;
618 matched = 1;
625 matched = 1;
635 if (matched)
    [all...]
  /external/chromium/third_party/icu/source/common/
triedict.cpp 203 int matched; local
204 matched = search(fIter, length, NULL, count, 0, parent, pMatched);
206 while (matched++ < length) {
    [all...]
  /packages/inputmethods/PinyinIME/jni/share/
matrixsearch.cpp 1594 bool matched = true; local
    [all...]
  /external/ipsec-tools/src/racoon/
ipsec_doi.c 1177 "not matched\n");
1187 plog(LLV_DEBUG, LOCATION, NULL, "matched\n");
    [all...]
  /external/v8/src/
string.js 406 // Increment previous if we matched an empty string, as per ECMA-262
  /external/genext2fs/
configure     [all...]
  /cts/tools/signature-tools/lib/
antlr-2.7.7.jar 
  /external/jdiff/
xerces.jar 

Completed in 905 milliseconds

1 2