Home | History | Annotate | Download | only in src

Lines Matching refs:months

4407     static string months[24];
4408 months[0] = "January";
4409 months[1] = "February";
4410 months[2] = "March";
4411 months[3] = "April";
4412 months[4] = "May";
4413 months[5] = "June";
4414 months[6] = "July";
4415 months[7] = "August";
4416 months[8] = "September";
4417 months[9] = "October";
4418 months[10] = "November";
4419 months[11] = "December";
4420 months[12] = "Jan";
4421 months[13] = "Feb";
4422 months[14] = "Mar";
4423 months[15] = "Apr";
4424 months[16] = "May";
4425 months[17] = "Jun";
4426 months[18] = "Jul";
4427 months[19] = "Aug";
4428 months[20] = "Sep";
4429 months[21] = "Oct";
4430 months[22] = "Nov";
4431 months[23] = "Dec";
4432 return months;
4439 static wstring months[24];
4440 months[0] = L"January";
4441 months[1] = L"February";
4442 months[2] = L"March";
4443 months[3] = L"April";
4444 months[4] = L"May";
4445 months[5] = L"June";
4446 months[6] = L"July";
4447 months[7] = L"August";
4448 months[8] = L"September";
4449 months[9] = L"October";
4450 months[10] = L"November";
4451 months[11] = L"December";
4452 months[12] = L"Jan";
4453 months[13] = L"Feb";
4454 months[14] = L"Mar";
4455 months[15] = L"Apr";
4456 months[16] = L"May";
4457 months[17] = L"Jun";
4458 months[18] = L"Jul";
4459 months[19] = L"Aug";
4460 months[20] = L"Sep";
4461 months[21] = L"Oct";
4462 months[22] = L"Nov";
4463 months[23] = L"Dec";
4464 return months;
4471 static const string* months = init_months();
4472 return months;
4479 static const wstring* months = init_wmonths();
4480 return months;