Home | History | Annotate | Download | only in autofill

Lines Matching defs:number

39   // The number altered for display, for example: ******1234
41 // The last four digits of the credit card number.
65 // Return a version of |number| that has any separator characters removed.
66 static const string16 StripSeparators(const string16& number);
68 // Returns true if |text| looks like a valid credit card number.
69 // Uses the Luhn formula to validate the number.
75 // Returns the credit card number.
76 const string16& number() const { return number_; }
92 // Sets |number_| to the stripped version of |number|, containing only digits.
93 void SetNumber(const string16& number);
104 // Returns true if |text| matches the card number.
118 string16 number_; // The credit card number.