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

  /external/chromium/chrome/browser/autofill/
credit_card.cc 65 int first_three_digits = first_four_digits / 10; local
66 int first_two_digits = first_three_digits / 10;
76 if (first_three_digits >= 300 && first_three_digits <=305)
  /external/chromium_org/components/autofill/core/browser/
credit_card.cc 248 int first_three_digits = 0; local
249 if (!base::StringToInt(number.substr(0, 3), &first_three_digits))
252 if (first_three_digits >= 300 && first_three_digits <= 305)
255 if (first_three_digits >= 644 && first_three_digits <= 649)

Completed in 53 milliseconds