/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/ |
fx_zlib_deflate.c | 18 * string matches are performed only when the previous match ends. So it 22 * is used to find longer strings when a small match has been found. 96 local void check_match OF((deflate_state *s, IPos start, IPos match, 118 ush good_length; /* reduce lazy search above this match length */ 119 ush max_lazy; /* do not perform lazy search above this match length */ 120 ush nice_length; /* quit search above this match length */ 1153 register Bytef *match; \/* matched string *\/ local 1301 register Bytef *match; \/* matched string *\/ local [all...] |
/external/proguard/src/proguard/retrace/ |
ReTrace.java | 200 // Try to match it against the regular expression. 217 String match = matcher.group(expressionTypeIndex + 1); local 223 className = originalClassName(match); 227 className = originalClassName(ClassUtil.externalClassName(match)); 231 lineNumber = Integer.parseInt(match); 235 type = originalType(match); 239 arguments = originalArguments(match); 259 String match = matcher.group(expressionTypeIndex + 1); local 269 className = originalClassName(match); 274 className = originalClassName(ClassUtil.externalClassName(match)); [all...] |
/external/regex-re2/re2/ |
re2.cc | 224 // Could delay this until the first match call that 356 if (!re.Match(*str, 0, str->size(), UNANCHORED, vec, nvec)) 383 if (!re.Match(*str, p - str->data(), str->size(), UNANCHORED, vec, nvec)) 388 // Disallow empty match at end of last match: skip ahead. 418 if (!re.Match(text, 0, text.size(), UNANCHORED, vec, nvec)) 525 bool RE2::Match(const StringPiece& text, 547 // Use DFAs to find exact location of match, filter out non-matches. 551 StringPiece match; local 552 StringPiece* matchp = &match; [all...] |
/external/skia/dm/ |
DM.cpp | 421 static bool match(const char* needle, const char* haystack) { function 428 if (match(FLAGS_blacklist[i+0], sink) && 429 match(FLAGS_blacklist[i+1], src) && 430 match(FLAGS_blacklist[i+2], srcOptions) && 431 match(FLAGS_blacklist[i+3], name)) {
|
/external/skia/src/animator/ |
SkScript.cpp | 783 SkBraceStyle match; local 784 fBraceStack.pop(&match); 785 if (match != kArrayBrace) { 1077 SkOp match; local [all...] |
/external/skia/src/ports/ |
SkFontConfigInterface_direct.cpp | 153 // Equivalence classes, used to match the Liberation and other fonts 178 // Match the font name against a whilelist of fonts, returning the equivalence 183 // replacement is a "strong" match (that is, an equivalent font) or 184 // a "weak" match (that is, fontconfig's next-best attempt at finding a 358 FcPattern* match = NULL; local 362 match = current; 367 if (match && !IsFallbackFontAllowed(family)) { 370 const char* post_match_family = get_name(match, FC_FAMILY, id); 379 // -> We should treat this case as a good match. 389 return match; 512 FcPattern* match = MatchFont(font_set, post_config_family, familyStr); local 596 FcPattern* match = fs->fonts[i]; local [all...] |
/external/skia/tests/ |
BlurTest.cpp | 315 static bool match(int* first, int* second, int count, int tol) { function 362 REPORTER_ASSERT(reporter, match(rectSpecialCaseResult, bruteForce1DResult, kSize, 5)); 363 REPORTER_ASSERT(reporter, match(generalCaseResult, bruteForce1DResult, kSize, 15)); 372 REPORTER_ASSERT(reporter, match(gpuResult, bruteForce1DResult, kSize, 10)); 376 REPORTER_ASSERT(reporter, match(groundTruthResult, bruteForce1DResult, kSize, 1));
|
/external/tcpdump/ |
print-icmp6.c | 1250 struct rr_pco_match *match; local [all...] |
/external/vboot_reference/host/arch/x86/lib/ |
crossystem_arch.c | 506 * exactly one match for that, we're SOL. 512 int match = 0; local 521 match++; 526 return (1 == match); 540 int match = 0; local 557 match++; 563 return (1 == match); 581 int match = 0; local 613 match++; 620 return (1 == match); [all...] |
/external/wpa_supplicant_8/hostapd/ |
hostapd_cli.c | 1073 const struct hostapd_cli_cmd *cmd, *match = NULL; local 1080 match = cmd; 1082 /* we have an exact match */ 1105 match->handler(ctrl, argc - 1, &argv[1]); [all...] |
/external/wpa_supplicant_8/src/wps/ |
wps_upnp_web.c | 794 const char *match; local 808 match = urn_wfawlanconfig; 810 if (os_strncasecmp(b, match, match_len)) 921 char *match; local 963 match = "NT:"; 964 match_len = os_strlen(match); 965 if (os_strncasecmp(h, match, match_len) == 0) { 969 match = "upnp:event"; 970 match_len = os_strlen(match); 971 if (os_strncasecmp(h, match, match_len) != 0) 1140 char *match; local [all...] |
/external/zlib/src/ |
deflate.c | 18 * string matches are performed only when the previous match ends. So it 22 * is used to find longer strings when a small match has been found. 96 local void check_match OF((deflate_state *s, IPos start, IPos match, 118 ush good_length; /* reduce lazy search above this match length */ 119 ush max_lazy; /* do not perform lazy search above this match length */ 120 ush nice_length; /* quit search above this match length */ 1154 register Bytef *match; \/* matched string *\/ local 1302 register Bytef *match; \/* matched string *\/ local [all...] |
/frameworks/av/media/libmedia/ |
IDrm.cpp | 504 bool &match) { 517 match = (bool)reply.readInt32(); 915 bool match; local 916 uint32_t result = verify(sessionId, keyId, message, signature, match); 917 reply->writeInt32(match);
|
/hardware/libhardware_legacy/wifi/ |
wifi.c | 684 char *match, *match2; local 725 match = strchr(buf, ' '); 726 if (match != NULL) { 727 if (match[1] == '<') { 728 match2 = strchr(match + 2, '>'); 730 nread -= (match2 - match); 731 memmove(match + 1, match2 + 1, nread - (match - buf) + 1); 738 match = strchr(buf, '>'); 739 if (match != NULL) [all...] |
/libcore/luni/src/main/java/java/text/ |
MessageFormat.java | 299 * When a single argument is parsed more than once in the string, the last match 315 * match. For example: 933 private int match(String string, ParsePosition position, boolean last, method in class:MessageFormat [all...] |
/libcore/luni/src/main/java/java/util/concurrent/ |
Exchanger.java | 165 * changed, but cannot yet proceed until match is set. In the 168 * the linearization point to be a CAS of the match field (as done 218 * slot CASes, it would also be legal for the write to Node.match 255 * The bound for spins while waiting for a match. The actual 285 volatile Object match; // Item provided by releasing thread field in class:Exchanger.Node 339 q.match = item; 351 Object v = p.match; 353 U.putOrderedObject(p, MATCH, null); 367 spins = SPINS; // releaser hasn't set match yet 434 q.match = item [all...] |
/ndk/sources/host-tools/nawk-20071023/ |
b.c | 468 int match(fa *f, const char *p0) /* shortest match ? */ function 488 int pmatch(fa *f, const char *p0) /* longest match, for sub */ 519 goto nextin; /* no match */ 547 int nematch(fa *f, const char *p0) /* non-empty match, for sub */ 576 goto nnextin; /* no nonempty match */
|
/packages/apps/Calendar/tests/src/com/android/calendar/ |
UtilsTests.java | 384 * match the expected values. 486 URLSpan match = matchesIt.next(); local 487 if (match.getURL().equals(spanFound.getURL())) { 494 // If a match was not found for the current spanFound, the lists aren't equal. 495 fail("No match found for span: "+spanFound.getURL());
|
/packages/apps/Camera2/src/com/android/camera/settings/ |
CameraSettingsActivity.java | 255 PreferenceScreen match = findByKey(root, mPrefKey); local 256 if (match != null) { 257 return match; 271 PreferenceScreen match = findByKey((PreferenceScreen) child, key); local 272 if (match != null) { 273 return match;
|
/packages/apps/InCallUI/src/com/android/incallui/ |
DialpadFragment.java | 283 int match = event.getMatch(getAcceptedChars(), meta); local 284 number = (match != 0) ? match : number;
|
/packages/apps/Messaging/src/com/android/messaging/datamodel/ |
MessagingContentProvider.java | 275 final int match = sURIMatcher.match(uri); local 278 switch (match) { 391 switch (sURIMatcher.match(uri)) {
|
/packages/apps/Settings/src/com/android/settings/ |
HomeSettings.java | 64 // Note: must match the constant defined in ManagedProvisioning 333 final int match = mPm.checkSignatures(info.packageName, altHomePackage); local 334 if (match >= PackageManager.SIGNATURE_MATCH) {
|
/packages/apps/UnifiedEmail/src/com/android/mail/providers/ |
EmlAttachmentProvider.java | 120 final int match = sUriMatcher.match(uri); local 125 switch (match) { 172 final int match = sUriMatcher.match(uri); local 173 switch (match) { 203 final int match = sUriMatcher.match(uri); local 204 switch (match) { 224 final int match = sUriMatcher.match(uri) local [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/ |
DictionaryProvider.java | 116 // The list of word lists served by this provider that match the client request. 171 case 1: return sUriMatcherV1.match(uri); 172 case 2: return sUriMatcherV2.match(uri); 199 final int match = matchUri(uri); local 200 switch (match) { 231 final int match = matchUri(uri); local 232 switch (match) { 294 final int match = matchUri(uri); local 295 if (DICTIONARY_V1_DICT_INFO != match && DICTIONARY_V2_DATAFILE != match) { 437 final int match = matchUri(uri); local [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
PersonalDictionaryLookup.java | 200 * We then iterate over the set of locales to find a match using LocaleUtils. 331 final int match = LocaleUtils.getMatchLevel(wordLocaleString, inputLocaleString); local 332 if (LocaleUtils.isMatch(match)) { 386 * It tries hard to find a match: for example, casing is ignored and if the word is present in a 388 * locale (e.g. en_US), it will be considered a match. 390 * @param word the word to match 391 * @param inputLocale the locale in which to match the word 435 Log.d(mTag, "isValidWord() : MatchLevel " + matchLevel + " IS a match"); 440 Log.d(mTag, "isValidWord() : MatchLevel " + matchLevel + " is NOT a match"); 571 // zz locale for an Alphabet (QWERTY) layout will not match any actual language [all...] |