Home | History | Annotate | Download | only in regex_src

Lines Matching defs:begin

58 	int begin, end, id;
89 begin = regex_get_result(match, &end, &id);
90 printf("Math returns: %3d->%3d [%3d]\n", begin, end, id);
98 int begin; /* Expected begin. */
113 int begin, end, id, finished;
168 begin = regex_get_result(match, &end, &id);
171 if (begin != test->begin || end != test->end || id != test->id) {
174 printf("FAIL A: begin: %d != %d || end: %d != %d || id: %d != %d\n", test->begin, begin, test->end, end, test->id, id);
187 begin = regex_get_result(match, &end, &id);
191 if (begin != test->begin || end != test->end || id != test->id) {
194 printf("FAIL B: begin: %d != %d || end: %d != %d || id: %d != %d\n", test->begin, begin, test->end, end, test->id, id);