Home | History | Annotate | Download | only in src

Lines Matching defs:months

4595     static string months[24];
4596 months[0] = "January";
4597 months[1] = "February";
4598 months[2] = "March";
4599 months[3] = "April";
4600 months[4] = "May";
4601 months[5] = "June";
4602 months[6] = "July";
4603 months[7] = "August";
4604 months[8] = "September";
4605 months[9] = "October";
4606 months[10] = "November";
4607 months[11] = "December";
4608 months[12] = "Jan";
4609 months[13] = "Feb";
4610 months[14] = "Mar";
4611 months[15] = "Apr";
4612 months[16] = "May";
4613 months[17] = "Jun";
4614 months[18] = "Jul";
4615 months[19] = "Aug";
4616 months[20] = "Sep";
4617 months[21] = "Oct";
4618 months[22] = "Nov";
4619 months[23] = "Dec";
4620 return months;
4627 static wstring months[24];
4628 months[0] = L"January";
4629 months[1] = L"February";
4630 months[2] = L"March";
4631 months[3] = L"April";
4632 months[4] = L"May";
4633 months[5] = L"June";
4634 months[6] = L"July";
4635 months[7] = L"August";
4636 months[8] = L"September";
4637 months[9] = L"October";
4638 months[10] = L"November";
4639 months[11] = L"December";
4640 months[12] = L"Jan";
4641 months[13] = L"Feb";
4642 months[14] = L"Mar";
4643 months[15] = L"Apr";
4644 months[16] = L"May";
4645 months[17] = L"Jun";
4646 months[18] = L"Jul";
4647 months[19] = L"Aug";
4648 months[20] = L"Sep";
4649 months[21] = L"Oct";
4650 months[22] = L"Nov";
4651 months[23] = L"Dec";
4652 return months;
4659 static const string* months = init_months();
4660 return months;
4667 static const wstring* months = init_wmonths();
4668 return months;