Lines Matching full:month
210 string16 month = ExpirationMonthAsString();
212 if (!month.empty() && !year.empty())
213 return month + ASCIIToUTF16("/") + year;
218 string16 month = ExpirationMonthAsString();
220 if (!month.empty() && !year.empty())
221 return month + ASCIIToUTF16("/") + year;
304 // Check if |text| is "yyyy-mm" format first, and check normal month format.
438 string16 month = base::IntToString16(expiration_month_);
440 return month;
443 zero.append(month);
462 int month;
463 if (!ConvertDate(text, &month))
466 SetExpirationMonth(month);
507 int month;
508 if (!base::StringToInt(text, &month))
511 return expiration_month_ == month;