Lines Matching refs:begin

456 	char *begin, *end, *str;  in timelib_get_nr_ex()  local
466 begin = *ptr; in timelib_get_nr_ex()
473 *scanned_length = end - begin; in timelib_get_nr_ex()
475 str = timelib_calloc(1, end - begin + 1); in timelib_get_nr_ex()
476 memcpy(str, begin, end - begin); in timelib_get_nr_ex()
499 char *begin, *end, *str; in timelib_get_frac_nr() local
509 begin = *ptr; in timelib_get_frac_nr()
515 str = timelib_calloc(1, end - begin + 1); in timelib_get_frac_nr()
516 memcpy(str, begin, end - begin); in timelib_get_frac_nr()
549 char *begin = *ptr, *end; in timelib_lookup_relative_text() local
557 word = timelib_calloc(1, end - begin + 1); in timelib_lookup_relative_text()
558 memcpy(word, begin, end - begin); in timelib_lookup_relative_text()
582 char *begin = *ptr, *end; in timelib_lookup_month() local
590 word = timelib_calloc(1, end - begin + 1); in timelib_lookup_month()
591 memcpy(word, begin, end - begin); in timelib_lookup_month()
629 char *begin = *ptr, *end; in timelib_lookup_relunit() local
637 word = timelib_calloc(1, end - begin + 1); in timelib_lookup_relunit()
638 memcpy(word, begin, end - begin); in timelib_lookup_relunit()
724 char *begin = *ptr, *end; in timelib_lookup_abbr() local
732 word = timelib_calloc(1, end - begin + 1); in timelib_lookup_abbr()
733 memcpy(word, begin, end - begin); in timelib_lookup_abbr()
23928 add_pbf_error(s, "Unexpected data found.", string, begin); \
23933 add_pbf_error(s, "Unexpected data found.", string, begin); \
23965 char *begin; in timelib_parse_from_format() local
23994 begin = ptr; in timelib_parse_from_format()
24003 add_pbf_error(s, "A textual day could not be found", string, begin); in timelib_parse_from_format()
24017 add_pbf_error(s, "A two digit day could not be found", string, begin); in timelib_parse_from_format()
24026 add_pbf_error(s, "A three digit day-of-year could not be found", string, begin); in timelib_parse_from_format()
24038 add_pbf_error(s, "A two digit month could not be found", string, begin); in timelib_parse_from_format()
24045 add_pbf_error(s, "A textual month could not be found", string, begin); in timelib_parse_from_format()
24055 add_pbf_error(s, "A two digit year could not be found", string, begin); in timelib_parse_from_format()
24063 add_pbf_error(s, "A four digit year could not be found", string, begin); in timelib_parse_from_format()
24070 add_pbf_error(s, "A two digit hour could not be found", string, begin); in timelib_parse_from_format()
24073 add_pbf_error(s, "Hour can not be higher than 12", string, begin); in timelib_parse_from_format()
24080 add_pbf_error(s, "A two digit hour could not be found", string, begin); in timelib_parse_from_format()
24086 add_pbf_error(s, "Meridian can only come after an hour has been found", string, begin); in timelib_parse_from_format()
24088 add_pbf_error(s, "A meridian could not be found", string, begin); in timelib_parse_from_format()
24101 add_pbf_error(s, "A two digit minute could not be found", string, begin); in timelib_parse_from_format()
24115 add_pbf_error(s, "A two digit second could not be found", string, begin); in timelib_parse_from_format()
24129 add_pbf_error(s, "A six digit millisecond could not be found", string, begin); in timelib_parse_from_format()
24162 add_pbf_error(s, "The timezone could not be found in the database", string, begin); in timelib_parse_from_format()
24171 add_pbf_error(s, "The separation symbol ([;:/.,-]) could not be found", string, begin); in timelib_parse_from_format()
24186 add_pbf_error(s, "The separation symbol could not be found", string, begin); in timelib_parse_from_format()
24204 add_pbf_error(s, "Escaped character expected", string, begin); in timelib_parse_from_format()
24211 add_pbf_error(s, "The escaped character could not be found", string, begin); in timelib_parse_from_format()
24225 add_pbf_error(s, "The format separator does not match", string, begin); in timelib_parse_from_format()