HomeSort by relevance Sort by last modified time
    Searched defs:MIN_MATCH (Results 1 - 11 of 11) sorted by null

  /external/sqlite/android/
OldPhoneNumberUtils.cpp 25 static int MIN_MATCH = 7;
189 * - requires MIN_MATCH (7) characters to match
246 if (matched < MIN_MATCH) {
250 // if the number of dialable chars in a and b match, but the matched chars < MIN_MATCH,
260 if (matched >= MIN_MATCH && (ia < 0 || ib < 0)) {
  /external/zlib/src/
zutil.h 75 #define MIN_MATCH 3
  /external/chromium_org/third_party/zlib/
zutil.h 86 #define MIN_MATCH 3
  /external/qemu/distrib/zlib-1.2.3/
zutil.h 81 #define MIN_MATCH 3
  /external/zlib/src/contrib/amd64/
amd64-match.S 40 #define MIN_MATCH (3)
41 #define MIN_LOOKAHEAD (MAX_MATCH + MIN_MATCH + 1)
  /external/zlib/src/contrib/asm686/
match.S 29 #define MIN_MATCH (3)
30 #define MIN_LOOKAHEAD (MAX_MATCH + MIN_MATCH + 1)
  /external/zlib/src/contrib/gcc_gvmat64/
gvmat64.S 94 #define MIN_MATCH 3
95 #define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
  /external/zlib/src/contrib/masmx64/
gvmat64.asm 121 MIN_MATCH equ 3
122 MIN_LOOKAHEAD equ (MAX_MATCH+MIN_MATCH+1)
  /external/zlib/src/contrib/masmx86/
match686.asm 107 MIN_MATCH equ 3
108 MIN_LOOKAHEAD equ (MAX_MATCH+MIN_MATCH+1)
113 MIN_MATCH equ 3
114 MIN_LOOKAHEAD equ (MAX_MATCH + MIN_MATCH + 1)
  /frameworks/base/telephony/java/android/telephony/
PhoneNumberUtils.java 447 * - requires MIN_MATCH (7) characters to match
501 if (matched < MIN_MATCH) {
506 // if the number of dialable chars in a and b match, but the matched chars < MIN_MATCH,
516 if (matched >= MIN_MATCH && (ia < 0 || ib < 0)) {
705 * Returns the rightmost MIN_MATCH (5) characters in the network portion
716 return internalGetStrippedReversed(np, MIN_MATCH);
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsDatabaseHelper.java 509 public static final String MIN_MATCH = "min_match";
    [all...]

Completed in 362 milliseconds