• Home
  • Raw
  • Download

Lines Matching refs:L

58 		L"Jan", L"Feb", L"Mar", L"Apr", L"May", L"Jun",
59 L"Jul", L"Aug", L"Sep", L"Oct", L"Nov", L"Dec"
61 L"January", L"February", L"March", L"April", L"May", L"June",
62 L"July", L"August", L"September", L"October", L"November",
63 L"December"
65 L"Sun", L"Mon", L"Tue", L"Wed",
66 L"Thu", L"Fri", L"Sat"
68 L"Sunday", L"Monday", L"Tuesday", L"Wednesday",
69 L"Thursday", L"Friday", L"Saturday"
73 L"%H:%M:%S",
81 L"%m/%d/%y",
91 L"%a %b %e %T %Y",
94 L"AM",
97 L"PM",
100 L"%a %b %e %H:%M:%S %Z %Y"
103 #define UNKNOWN L"?"
127 p = _fmt(((format == NULL) ? L"%c" : format), t, s, s + maxsize, &warn); in wcsftime()
133 *p = L'\0'; in wcsftime()
142 if (*format != L'%') { in _fmt()
201 pt = _fmt(L"%m/%d/%y", t, pt, ptlim, warnp); in _fmt()
204 pt = _conv(t->tm_mday, L"%02d", pt, ptlim); in _fmt()
219 pt = _conv(t->tm_mday, L"%2d", pt, ptlim); in _fmt()
222 pt = _fmt(L"%Y-%m-%d", t, pt, ptlim, warnp); in _fmt()
225 pt = _conv(t->tm_hour, L"%02d", pt, ptlim); in _fmt()
230 L"%02d", pt, ptlim); in _fmt()
233 pt = _conv(t->tm_yday + 1, L"%03d", pt, ptlim); in _fmt()
246 pt = _conv(t->tm_hour, L"%2d", pt, ptlim); in _fmt()
260 L"%2d", pt, ptlim); in _fmt()
263 pt = _conv(t->tm_min, L"%02d", pt, ptlim); in _fmt()
266 pt = _conv(t->tm_mon + 1, L"%02d", pt, ptlim); in _fmt()
269 pt = _add(L"\n", pt, ptlim); in _fmt()
278 pt = _fmt(L"%H:%M", t, pt, ptlim, warnp); in _fmt()
281 pt = _fmt(L"%I:%M:%S %p", t, pt, ptlim, warnp); in _fmt()
284 pt = _conv(t->tm_sec, L"%02d", pt, ptlim); in _fmt()
297 L"%ld", (long) mkt); in _fmt()
302 pt = _fmt(L"%H:%M:%S", t, pt, ptlim, warnp); in _fmt()
305 pt = _add(L"\t", pt, ptlim); in _fmt()
310 L"%02d", pt, ptlim); in _fmt()
321 L"%d", pt, ptlim); in _fmt()
393 pt = _conv(w, L"%02d", pt, ptlim); in _fmt()
407 pt = _fmt(L"%e-%b-%Y", t, pt, ptlim, warnp); in _fmt()
414 L"%02d", pt, ptlim); in _fmt()
417 pt = _conv(t->tm_wday, L"%d", pt, ptlim); in _fmt()
462 sign = L"-"; in _fmt()
465 sign = L"+"; in _fmt()
470 pt = _conv(diff, L"%04d", pt, ptlim); in _fmt()
503 while (pt < ptlim && (*pt = *str++) != L'\0') in _add()
511 while (pt < ptlim && (*pt = btowc(*str++)) != L'\0') in _sadd()
543 pt = _add(L"-0", pt, ptlim); in _yconv()
544 else pt = _conv(lead, L"%02d", pt, ptlim); in _yconv()
547 pt = _conv(((trail < 0) ? -trail : trail), L"%02d", pt, ptlim); in _yconv()