OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full: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
261
int
first_three_digits
= 0;
local
262
if (!base::StringToInt(number.substr(0, 3), &
first_three_digits
))
265
if (
first_three_digits
>= 300 &&
first_three_digits
<= 305)
268
if (
first_three_digits
>= 644 &&
first_three_digits
<= 649)
Completed in 142 milliseconds