Home
last modified time | relevance | path

Searched refs:date_format (Results 1 – 6 of 6) sorted by relevance

/external/v8/src/
Di18n.cc123 icu::SimpleDateFormat* date_format = NULL; in CreateICUDateFormat() local
132 date_format = new icu::SimpleDateFormat(pattern, icu_locale, status); in CreateICUDateFormat()
134 date_format->adoptCalendar(calendar); in CreateICUDateFormat()
140 delete date_format; in CreateICUDateFormat()
141 date_format = nullptr; in CreateICUDateFormat()
144 return date_format; in CreateICUDateFormat()
150 icu::SimpleDateFormat* date_format, in SetResolvedDateSettings() argument
155 date_format->toPattern(pattern); in SetResolvedDateSettings()
165 const icu::Calendar* calendar = date_format->getCalendar(); in SetResolvedDateSettings()
719 icu::SimpleDateFormat* date_format = CreateICUDateFormat( in InitializeDateTimeFormat() local
[all …]
/external/autotest/client/common_lib/cros/fake_device_server/client_lib/
Dclient_lib_test.py120 date_format = '%H:%M:%S' variable
122 datefmt=date_format)
/external/v8/src/runtime/
Druntime-i18n.cc326 icu::SimpleDateFormat* date_format = in RUNTIME_FUNCTION() local
329 if (!date_format) return isolate->ThrowIllegalOperation(); in RUNTIME_FUNCTION()
331 local_object->SetInternalField(0, reinterpret_cast<Smi*>(date_format)); in RUNTIME_FUNCTION()
353 icu::SimpleDateFormat* date_format = in RUNTIME_FUNCTION() local
355 CHECK_NOT_NULL(date_format); in RUNTIME_FUNCTION()
358 date_format->format(value->Number(), result); in RUNTIME_FUNCTION()
454 icu::SimpleDateFormat* date_format = in RUNTIME_FUNCTION() local
456 CHECK_NOT_NULL(date_format); in RUNTIME_FUNCTION()
462 date_format->format(value->Number(), formatted, &fp_iter, status); in RUNTIME_FUNCTION()
/external/chromium-trace/catapult/devil/devil/android/tools/
Dprovision_devices.py461 date_format = '%m%d%H%M%Y.%S'
465 date_format = '%Y%m%d.%H%M%S'
471 strgmtime = time.strftime(date_format, time.gmtime())
480 correct_time = datetime.datetime.strptime(strgmtime, date_format)
/external/icu/icu4c/source/test/testdata/
Dformat.txt18 Type { "date_format" }
65 Type { "date_format" }
222 Type { "date_format" }
433 Type { "date_format" }
537 Type { "date_format" }
/external/python/cpython2/Modules/
Ddatetimemodule.c2546 date_format(PyDateTime_Date *self, PyObject *args) in date_format() function
2735 {"__format__", (PyCFunction)date_format, METH_VARARGS,
3525 {"__format__", (PyCFunction)date_format, METH_VARARGS,