Home
last modified time | relevance | path

Searched refs:_fmt (Results 1 – 3 of 3) sorted by relevance

/device/linaro/bootloader/edk2/StdLib/LibC/Time/
Dstrftime.c77 static char * _fmt(const char *, const struct tm * const, char *, const char * const, int *);
104 p = _fmt(((format == NULL) ? "%c" : format), timeptr, s, s + maxsize, &warn); in strftime()
130 _fmt( in _fmt() function
185 pt = _fmt(Locale->d_t_fmt, t, pt, ptlim, &warn2); in _fmt()
193 pt = _fmt("%m/%d/%y", t, pt, ptlim, warnp); in _fmt()
214 pt = _fmt("%Y-%m-%d", t, pt, ptlim, warnp); in _fmt()
278 pt = _fmt("%H:%M", t, pt, ptlim, warnp); in _fmt()
281 pt = _fmt(Locale->t_fmt_ampm, t, pt, ptlim, in _fmt()
306 pt = _fmt("%H:%M:%S", t, pt, ptlim, warnp); in _fmt()
419 pt = _fmt("%e-%b-%Y", t, pt, ptlim, warnp); in _fmt()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/
Dgenerator.py319 self._fmt = _FMT
321 self._fmt = fmt
332 print >> self, self._fmt % {
347 _fmt = '%%0%dd' % _width variable
353 boundary = ('=' * 15) + (_fmt % token) + '=='
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/logging/
D__init__.py399 self._fmt = fmt
401 self._fmt = "%(message)s"
449 return self._fmt.find("%(asctime)") >= 0
467 s = self._fmt % record.__dict__