Lines Matching refs:t

294 	while (ptr[0] == ' ' || ptr[0] == '\t') {
561 while (**ptr == ' ' || **ptr == '\t' || **ptr == '-' || **ptr == '/') {
593 while (**ptr == ' ' || **ptr == '\t' || **ptr == '-' || **ptr == '.' || **ptr == '/') {
601 while (**ptr == ' ' || **ptr == '\t') {
609 while (strchr(" \t.,:;/-0123456789", **ptr) == NULL) {
620 …while (**ptr != '\0' && **ptr != ' ' && **ptr != ',' && **ptr != '\t' && **ptr != ';' && **ptr != …
700 /* Still didn't find anything, let's find the zone solely based on
776 static timelib_long timelib_parse_tz_minutes(char **ptr, timelib_time *t)
792 t->is_localtime = 1;
793 t->zone_type = TIMELIB_ZONETYPE_OFFSET;
794 t->dst = 0;
798 t->is_localtime = 1;
799 t->zone_type = TIMELIB_ZONETYPE_OFFSET;
800 t->dst = 0;
807 timelib_long timelib_parse_zone(char **ptr, int *dst, timelib_time *t, int *tz_not_found, const tim…
814 while (**ptr == ' ' || **ptr == '\t' || **ptr == '(') {
822 t->is_localtime = 1;
823 t->zone_type = TIMELIB_ZONETYPE_OFFSET;
825 t->dst = 0;
830 t->is_localtime = 1;
831 t->zone_type = TIMELIB_ZONETYPE_OFFSET;
833 t->dst = 0;
841 t->is_localtime = 1;
846 t->zone_type = TIMELIB_ZONETYPE_ABBR;
847 timelib_time_tz_abbr_update(t, tz_abbr);
855 t->tz_info = res;
856 t->zone_type = TIMELIB_ZONETYPE_ID;
891 space = [ \t]+;
903 meridian = ([AaPp] "."? [Mm] "."?) [\000\t ];
937 timeshort24 = 't'? hour24[:.]minute;
938 timelong24 = 't'? hour24[:.]minute[:.]second;
939 iso8601long = 't'? hour24 [:.] minute [:.] second frac;
942 iso8601normtz = 't'? hour24 [:.] minute [:.] secondlz space? (tzcorrection | tz);
945 gnunocolon = 't'? hour24lz minutelz;
947 iso8601nocolon = 't'? hour24lz minutelz secondlz;
959 pointeddate4 = day [.\t-] month [.-] year4;
960 pointeddate2 = day [.\t] month "." year2;
961 datefull = day ([ \t.-])* monthtext ([ \t.-])* year;
962 datenoday = monthtext ([ .\t-])* year4;
963 datenodayrev = year4 ([ .\t-])* monthtext;
964 datetextual = monthtext ([ .\t-])* day [,.stndrh\t ]+ year;
965 datenoyear = monthtext ([ .\t-])* day ([,.stndrh\t ]+|[\000]);
966 datenoyearrev = day ([ .\t-])* monthtext;
972 xmlrpcnocolon = year4 monthlz daylz 't' hour24 minutelz secondlz;
1007 relnumber = ([+-]*[ \t]*[0-9]{1,13});
1805 [ .,\t]
1829 int t;
1882 t = scan(&in, tz_get_wrapper);
1884 printf("%d\n", t);
1886 } while(t != EOI);
2236 case TIMELIB_FORMAT_WHITESPACE: /* any sort of whitespace (' ' and \t) */
2294 …case TIMELIB_FORMAT_SKIP_TO_SEPARATOR: /* random chars until a separator or number ([ \t.,:;/-0123…