HomeSort by relevance Sort by last modified time
    Searched refs:hasDigit (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/sqlite/src/ext/fts1/
fts1_porter.c 295 int hasDigit = 0;
301 if( c>='0' && c<='9' ) hasDigit = 1;
305 mx = hasDigit ? 3 : 10;
  /external/chromium_org/third_party/sqlite/src/ext/fts2/
fts2_porter.c 294 int hasDigit = 0;
300 if( c>='0' && c<='9' ) hasDigit = 1;
304 mx = hasDigit ? 3 : 10;
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_porter.c 297 int hasDigit = 0;
303 if( c>='0' && c<='9' ) hasDigit = 1;
307 mx = hasDigit ? 3 : 10;
  /frameworks/base/core/java/com/android/internal/widget/
LockPatternUtils.java 641 boolean hasDigit = false;
646 hasDigit = true;
652 if (hasNonDigit && hasDigit) {
658 if (hasDigit) {
    [all...]

Completed in 128 milliseconds