Searched refs:end (Results 1 – 15 of 15) sorted by relevance
/posix/ |
A D | transbug.c | 95 res, regs[0].start[0], regs[0].end[0]); in run_test() 97 if (regs[0].end == NULL) in run_test() 100 start2 = regs[0].end[0] + 1; in run_test() 107 res, regs[1].start[0], regs[1].end[0]); in run_test() 134 CHECK (regs[0].end[0] != regs[2].end[0]); in do_test() 136 CHECK (regs[1].end[0] != regs[3].end[0]); in do_test() 149 CHECK (regs[0].end[0] != regs[2].end[0]); in do_test() 151 CHECK (regs[1].end[0] != regs[3].end[0]); in do_test()
|
A D | bug-regex7.c | 37 regs.start = regs.end = NULL; in main() 54 else if (regs.num_regs <= n || regs.start[n] != -1 || regs.end[n] != -1) in main() 79 else if (regs.num_regs <= n || regs.start[n] != -1 || regs.end[n] != -1) in main()
|
A D | runptests.c | 28 int end; member 101 && match[0].rm_eo == 0 && tests[cnt].end == 0) in main() 104 && match[0].rm_eo == tests[cnt].end) in main()
|
A D | bug-regex10.c | 49 else if (regs.start[0] != 2 || regs.end[0] != 7) in main() 52 regs.start[0], regs.end[0]); in main()
|
A D | tst-regex2.c | 193 if (regs.start[0] != match || regs.end[0] != match + 13) in do_test() 196 regs.start[0], regs.end[0]); in do_test() 201 || regs.end[regs.num_regs - 1] != -1) in do_test() 211 || regs.end[l] != regs.start[l] + 1) in do_test()
|
A D | fnmatch_loop.c | 164 struct STRUCT end; in FCT() local 166 end.pattern = NULL; in FCT() 182 &end) == 0) in FCT() 205 &end) == 0)) in FCT() 208 if (end.pattern == NULL) in FCT() 212 if (end.pattern != NULL) in FCT() 214 p = end.pattern; in FCT() 215 n = end.string; in FCT() 216 no_leading_period = end.no_leading_period; in FCT()
|
A D | wordexp.c | 1435 char *end; in parse_param() local 1443 end = value; in parse_param() 1444 *end = 0; in parse_param() 1448 *end++ = ' '; in parse_param() 1449 end = __stpcpy (end, __libc_argv[p]); in parse_param() 1656 char *end; in parse_param() local 1661 end = value + strlen (value); in parse_param() 1666 for (p = value; p <= end; ++p) in parse_param() 1694 for (p = end; p >= value; --p) in parse_param() 1722 for (p = end; p >= value; --p) in parse_param() [all …]
|
A D | tst-rxspencer.c | 44 char *p, *end = strchr (str, '\0') + 1; in glibc_re_syntax() local 52 memmove (p + 2, p + 7, end - p - 7); in glibc_re_syntax() 53 end -= 5; in glibc_re_syntax()
|
A D | regcomp.c | 2531 end = 0; in parse_dup_op() 2546 end = ((token->type == OP_CLOSE_DUP_NUM) ? start in parse_dup_op() 2550 if (__glibc_unlikely (start == -2 || end == -2)) in parse_dup_op() 2572 if (__glibc_unlikely ((end != -1 && start > end) in parse_dup_op() 2580 if (__glibc_unlikely (RE_DUP_MAX < (end == -1 ? start : end))) in parse_dup_op() 2589 end = (token->type == OP_DUP_QUESTION) ? 1 : -1; in parse_dup_op() 2596 if (__glibc_unlikely (start == 0 && end == 0)) in parse_dup_op() 2614 if (start == end) in parse_dup_op() 2633 (end == -1 ? OP_DUP_ASTERISK : OP_ALT)); in parse_dup_op() 2640 if (TYPE_SIGNED (Idx) || end != -1) in parse_dup_op() [all …]
|
A D | regex.h | 501 regoff_t *end; member
|
A D | regex_internal.c | 714 const unsigned char *raw, *p, *end; in re_string_reconstruct() local 719 end = raw + (offset - pstr->mb_cur_max); in re_string_reconstruct() 720 if (end < pstr->raw_mbs) in re_string_reconstruct() 721 end = pstr->raw_mbs; in re_string_reconstruct() 734 for (; p >= end; --p) in re_string_reconstruct()
|
A D | BOOST.tests | 5 ; comments start with a semicolon and proceed to the end of the line 322 ;word end: 551 ;word end:
|
A D | regexec.c | 475 regs->end = re_malloc (regoff_t, need_regs); in re_copy_regs() 476 if (__glibc_unlikely (regs->end == NULL)) in re_copy_regs() 493 new_end = re_realloc (regs->end, regoff_t, need_regs); in re_copy_regs() 500 regs->end = new_end; in re_copy_regs() 516 regs->end[i] = pmatch[i].rm_eo; in re_copy_regs() 519 regs->start[i] = regs->end[i] = -1; in re_copy_regs() 546 regs->end = ends; in re_set_registers() 552 regs->start = regs->end = NULL; in re_set_registers()
|
A D | tst-regex.input | 3160 * manual/lang.texi (Range of Type): Change @end table->@end vtable. 4007 * iconvdata/8bit-gap.c (BODY): Don't fall off the end of the gap 4700 end of the loop. 7337 (parse_param): Fold in Andreas' fixes to do with when the end of 7458 separators at the end of the string. 7460 and separators at the end of the string. 7490 up namespace. Optimize finding end of line. 7615 not necessarily a field split at the end of a parameter expansion. 8183 * sysdeps/i386/sysdep.h (ASM_SIZE_DIRECTIVE): Add ; at the end. 9516 and report status at the end. [all …]
|
/posix/rxspencer/ |
A D | tests | 32 # For REG_STARTEND, the start/end offsets are those of the substring 54 # end gagging (in a just world, those *should* give EPAREN)
|
Completed in 50 milliseconds