Home | History | Annotate | Download | only in src

Lines Matching defs:months

4506     static string months[24];
4507 months[0] = "January";
4508 months[1] = "February";
4509 months[2] = "March";
4510 months[3] = "April";
4511 months[4] = "May";
4512 months[5] = "June";
4513 months[6] = "July";
4514 months[7] = "August";
4515 months[8] = "September";
4516 months[9] = "October";
4517 months[10] = "November";
4518 months[11] = "December";
4519 months[12] = "Jan";
4520 months[13] = "Feb";
4521 months[14] = "Mar";
4522 months[15] = "Apr";
4523 months[16] = "May";
4524 months[17] = "Jun";
4525 months[18] = "Jul";
4526 months[19] = "Aug";
4527 months[20] = "Sep";
4528 months[21] = "Oct";
4529 months[22] = "Nov";
4530 months[23] = "Dec";
4531 return months;
4538 static wstring months[24];
4539 months[0] = L"January";
4540 months[1] = L"February";
4541 months[2] = L"March";
4542 months[3] = L"April";
4543 months[4] = L"May";
4544 months[5] = L"June";
4545 months[6] = L"July";
4546 months[7] = L"August";
4547 months[8] = L"September";
4548 months[9] = L"October";
4549 months[10] = L"November";
4550 months[11] = L"December";
4551 months[12] = L"Jan";
4552 months[13] = L"Feb";
4553 months[14] = L"Mar";
4554 months[15] = L"Apr";
4555 months[16] = L"May";
4556 months[17] = L"Jun";
4557 months[18] = L"Jul";
4558 months[19] = L"Aug";
4559 months[20] = L"Sep";
4560 months[21] = L"Oct";
4561 months[22] = L"Nov";
4562 months[23] = L"Dec";
4563 return months;
4570 static const string* months = init_months();
4571 return months;
4578 static const wstring* months = init_wmonths();
4579 return months;