/PHP-5.6/win32/ |
H A D | time.c | 151 int repeat = TIME_ONESHOT; 159 repeat = TIME_PERIODIC; 164 realtimer = timeSetEvent(timeout, 100, (LPTIMECALLBACK) setitimer_timeout, (UINT) msg, repeat); 168 virttimer = timeSetEvent(timeout, 100, (LPTIMECALLBACK) setitimer_timeout, (UINT) msg, repeat); 172 proftimer = timeSetEvent(timeout, 100, (LPTIMECALLBACK) setitimer_timeout, (UINT) msg, repeat);
|
/PHP-5.6/ext/date/tests/ |
H A D | bug46874.phpt | 13 // this should repeat the same range
|
/PHP-5.6/ext/pcre/tests/ |
H A D | grep2.phpt | 28 Warning: preg_grep(): Compilation failed: nothing to repeat at offset 0 in %sgrep2.php on line 5
|
H A D | split.phpt | 23 Warning: preg_split(): Compilation failed: nothing to repeat at offset 0 in %ssplit.php on line 4
|
/PHP-5.6/ext/mbstring/oniguruma/ |
H A D | regparse.c | 2296 } repeat; member 2398 tok->u.repeat.lower = low; in fetch_range_quantifier() 2399 tok->u.repeat.upper = up; in fetch_range_quantifier() 3162 tok->u.repeat.lower = 0; in fetch_token() 3170 tok->u.repeat.lower = 1; in fetch_token() 3178 tok->u.repeat.lower = 0; in fetch_token() 3179 tok->u.repeat.upper = 1; in fetch_token() 3184 tok->u.repeat.greedy = 0; in fetch_token() 5111 goto repeat; in parse_exp() 5384 repeat: in parse_exp() [all …]
|
H A D | regexec.c | 571 stk->u.repeat.num = (id);\ 572 stk->u.repeat.pcode = (pat);\ 573 stk->u.repeat.count = 0;\ 746 STACK_AT(stk->u.repeat_inc.si)->u.repeat.count--;\ 766 STACK_AT(stk->u.repeat_inc.si)->u.repeat.count--;\ 936 if (k->u.repeat.num == (id)) {\ 2536 stkp->u.repeat.count++; in match_at() 2545 p = stkp->u.repeat.pcode; in match_at() 2566 stkp->u.repeat.count++; in match_at() 2569 UChar* pcode = stkp->u.repeat.pcode; in match_at() [all …]
|
H A D | HISTORY | 382 should check repeat-count >= range-upper and 890 reluctant infinite repeat bug. 1033 2004/05/26: [impl] doesn't need to check that target's simple repeat-ness 1206 parsing of nested repeat was invalid. 1595 2003/05/28: [new] possessive repeat operator. (?+, *+, ++, {n,m}+) 1615 2003/05/22: [spec] use OP_NULL_CHECK_XXX only if repeat is infinite. 1620 2003/05/19: [impl] avoid zero length repeat optimization. (thanks matz) 1684 2003/03/08: [bug] called group in 0-repeat should not be eliminated from 1744 2003/02/24: [impl] reduce redundant repeat of empty target. 1931 2002/03/30: [spec] warn redundant nested repeat operator [all …]
|
H A D | regint.h | 708 } repeat; member
|
/PHP-5.6/ext/ereg/regex/ |
H A D | regcomp.c | 371 repeat(p, pos, count, count2); 549 repeat(p, pos, count, count2); 920 repeat(p, start, from, to) in repeat() function 947 repeat(p, start+1, 1, to); 967 repeat(p, copy, 1, to-1); 975 repeat(p, copy, from-1, to-1); 979 repeat(p, copy, from-1, to);
|
H A D | regcomp.ih | 23 static void repeat(register struct parse *p, sopno start, int from, int to);
|
/PHP-5.6/ext/standard/tests/mail/ |
H A D | mail_basic_alt1-win32.phpt | 55 $repeat_count = 20; // we will repeat a max of 20 times
|
H A D | mail_basic_alt2-win32.phpt | 53 $repeat_count = 20; // we will repeat a max of 20 times
|
H A D | mail_basic_alt3-win32.phpt | 53 $repeat_count = 20; // we will repeat a max of 20 times
|
H A D | mail_basic_alt4-win32.phpt | 54 $repeat_count = 20; // we will repeat a max of 20 times
|
H A D | mail_variation_alt1-win32.phpt | 54 $repeat_count = 20; // we will repeat a max of 20 times
|
H A D | mail_variation_alt2-win32.phpt | 54 $repeat_count = 20; // we will repeat a max of 20 times
|
H A D | mail_variation_alt3-win32.phpt | 53 $repeat_count = 20; // we will repeat a max of 20 times
|
/PHP-5.6/ext/mbstring/oniguruma/doc/ |
H A D | RE | 408 + repeat of look-ahead is not allowed. 420 + Zero-length match in infinite repeat stops the repeat,
|
H A D | API | 45 redundant nested repeat operator.
|
/PHP-5.6/ext/pcre/pcrelib/ |
H A D | HACKING | 263 matches from 0 to the given number. A repeat with a non-zero minimum and a 371 applies to other classes and also to back references. In both cases, the repeat 389 followed by the minimum and maximum repeat counts. 414 OP_KET is used for subpatterns that do not repeat indefinitely, and OP_KETRMIN 468 The check for matching an empty string in an unbounded repeat is handled 490 OP_SCOND for one that might match an empty string in an unbounded repeat. If
|
H A D | ChangeLog | 129 33. The JIT compiler should not check repeats after a {0,1} repeat byte code. 240 12. A possessive capturing group such as (a)*+ with a minimum repeat of zero 241 failed to allow the zero-repeat case if pcre2_exec() was called with an 437 group that is quantified with an indefinite repeat, caused a compile-time 765 43. A minimizing repeat of a class containing codepoints greater than 255 in 2292 which had an unlimited repeat of a nested, fixed maximum repeat of a wide 2664 12. Previously, a group with a zero repeat such as (...){0} was completely 3039 are longer than 30,000 bytes (though not repeat them that many times). 3092 unlimited repeat caused a loop at compile time (while checking to see 3308 while processing a minimizing repeat. If the check also involved [all …]
|
/PHP-5.6/ |
H A D | run-tests.php | 505 $repeat = substr($argv[$i],0,1) == '-'; variable 507 while ($repeat) { 515 if ($repeat) { 534 $repeat = false; variable 658 $repeat = true; variable
|
/PHP-5.6/ext/standard/tests/file/ |
H A D | userstreams.phpt | 56 /* repeat the data a few times so that it grows larger than
|
/PHP-5.6/Zend/ |
H A D | zend_builtin_functions.c | 675 repeat: in ZEND_FUNCTION() 688 goto repeat; in ZEND_FUNCTION()
|
/PHP-5.6/ext/pcre/pcrelib/testdata/ |
H A D | testoutput2 | 142 Failed: nothing to repeat at offset 1 240 Failed: nothing to repeat at offset 4 890 Failed: nothing to repeat at offset 0 893 Failed: nothing to repeat at offset 1 902 Failed: nothing to repeat at offset 2 926 Failed: nothing to repeat at offset 0 929 Failed: nothing to repeat at offset 1 938 Failed: nothing to repeat at offset 2 3061 Failed: nothing to repeat at offset 3 3064 Failed: nothing to repeat at offset 7 [all …]
|