Searched refs:iso_date (Results 1 – 4 of 4) sorted by relevance
/third_party/glib/glib/ |
D | gtimer.c | 388 g_time_val_from_iso8601 (const gchar *iso_date, in g_time_val_from_iso8601() argument 396 g_return_val_if_fail (iso_date != NULL, FALSE); in g_time_val_from_iso8601() 402 while (g_ascii_isspace (*iso_date)) in g_time_val_from_iso8601() 403 iso_date++; in g_time_val_from_iso8601() 405 if (*iso_date == '\0') in g_time_val_from_iso8601() 408 if (!g_ascii_isdigit (*iso_date) && *iso_date != '+') in g_time_val_from_iso8601() 411 val = strtoul (iso_date, (char **)&iso_date, 10); in g_time_val_from_iso8601() 412 if (*iso_date == '-') in g_time_val_from_iso8601() 416 iso_date++; in g_time_val_from_iso8601() 418 mon = strtoul (iso_date, (char **)&iso_date, 10); in g_time_val_from_iso8601() [all …]
|
D | gtimer.h | 70 gboolean g_time_val_from_iso8601 (const gchar *iso_date,
|
D | gbookmarkfile.c | 249 static gboolean timestamp_from_iso8601 (const gchar *iso_date, 1616 timestamp_from_iso8601 (const gchar *iso_date, in timestamp_from_iso8601() argument 1620 GDateTime *dt = g_date_time_new_from_iso8601 (iso_date, NULL); in timestamp_from_iso8601() 1624 _("Invalid date/time ‘%s’ in bookmark file"), iso_date); in timestamp_from_iso8601()
|
/third_party/python/Lib/test/ |
D | datetimetester.py | 1369 for cal_date, iso_date in week_mondays: 1374 new_iso = iso_date[0:2] + (iso_date[2] + i,)
|