Lines Matching refs:pattern
55 string16 pattern;
104 // in the |pattern| below.
106 pattern = GetEcmlPattern(kEcmlCardVerification);
108 pattern = l10n_util::GetStringUTF16(IDS_AUTOFILL_CARD_CVC_RE);
112 ParseText(&q, pattern, &credit_card_field->verification_))
118 pattern = GetEcmlPattern(kEcmlCardNumber);
120 pattern = l10n_util::GetStringUTF16(IDS_AUTOFILL_CARD_NUMBER_RE);
122 if (credit_card_field->number_ == NULL && ParseText(&q, pattern,
142 pattern = GetEcmlPattern(kEcmlCardExpireMonth);
144 pattern = l10n_util::GetStringUTF16(IDS_AUTOFILL_EXPIRATION_MONTH_RE);
148 ParseText(&q, pattern, &credit_card_field->expiration_month_)) {
151 pattern = GetEcmlPattern(kEcmlCardExpireYear);
153 pattern = l10n_util::GetStringUTF16(IDS_AUTOFILL_EXPIRATION_DATE_RE);
155 if (!ParseText(&q, pattern, &credit_card_field->expiration_year_)) {