Lines Matching defs:months
4284 static string months[24];
4285 months[0] = "January";
4286 months[1] = "February";
4287 months[2] = "March";
4288 months[3] = "April";
4289 months[4] = "May";
4290 months[5] = "June";
4291 months[6] = "July";
4292 months[7] = "August";
4293 months[8] = "September";
4294 months[9] = "October";
4295 months[10] = "November";
4296 months[11] = "December";
4297 months[12] = "Jan";
4298 months[13] = "Feb";
4299 months[14] = "Mar";
4300 months[15] = "Apr";
4301 months[16] = "May";
4302 months[17] = "Jun";
4303 months[18] = "Jul";
4304 months[19] = "Aug";
4305 months[20] = "Sep";
4306 months[21] = "Oct";
4307 months[22] = "Nov";
4308 months[23] = "Dec";
4309 return months;
4314 static wstring months[24];
4315 months[0] = L"January";
4316 months[1] = L"February";
4317 months[2] = L"March";
4318 months[3] = L"April";
4319 months[4] = L"May";
4320 months[5] = L"June";
4321 months[6] = L"July";
4322 months[7] = L"August";
4323 months[8] = L"September";
4324 months[9] = L"October";
4325 months[10] = L"November";
4326 months[11] = L"December";
4327 months[12] = L"Jan";
4328 months[13] = L"Feb";
4329 months[14] = L"Mar";
4330 months[15] = L"Apr";
4331 months[16] = L"May";
4332 months[17] = L"Jun";
4333 months[18] = L"Jul";
4334 months[19] = L"Aug";
4335 months[20] = L"Sep";
4336 months[21] = L"Oct";
4337 months[22] = L"Nov";
4338 months[23] = L"Dec";
4339 return months;
4345 static const string* months = init_months();
4346 return months;
4352 static const wstring* months = init_wmonths();
4353 return months;