Lines Matching refs:str

77   char *str;  member
322 l->starts[l->insert_index].str = line_start; in keep_new_line()
783 if (line->str[line_len - 1] == '\n') in process_regexp()
785 ret = re_search (&p->re_compiled, line->str, line_len, in process_regexp()
823 if (line->str[line_len - 1] == '\n') in process_regexp()
825 ret = re_search (&p->re_compiled, line->str, line_len, in process_regexp()
1006 idx_t l = fwrite (line->str, sizeof (char), line->len, output_stream); in save_line_to_file()
1041 check_for_offset (struct control *p, char const *str, char const *num) in check_for_offset() argument
1045 quote (str)); in check_for_offset()
1054 parse_repeat_count (int argnum, struct control *p, char *str) in parse_repeat_count() argument
1058 end = str + strlen (str) - 1; in parse_repeat_count()
1061 quote (str)); in parse_repeat_count()
1064 if (str + 1 == end - 1 && *(str + 1) == '*') in parse_repeat_count()
1069 if (xstrtoumax (str + 1, nullptr, 10, &val, "") != LONGINT_OK in parse_repeat_count()
1089 extract_regexp (int argnum, bool ignore, char const *str) in extract_regexp() argument
1092 char delim = *str; in extract_regexp()
1097 closing_delim = strrchr (str + 1, delim); in extract_regexp()
1100 _("%s: closing delimiter '%c' missing"), str, delim); in extract_regexp()
1102 len = closing_delim - str - 1; in extract_regexp()
1114 err = re_compile_pattern (str + 1, len, &p->re_compiled); in extract_regexp()
1117 error (0, 0, _("%s: invalid regular expression: %s"), quote (str), err); in extract_regexp()
1122 check_for_offset (p, str, closing_delim + 1); in extract_regexp()