Searched refs:greedy (Results 1 – 10 of 10) sorted by relevance
21 " Separated into a match and region because a region by itself is always greedy30 " Separated into a match and region because a region by itself is always greedy
199 " (greedy for start matches, unlike Rust's tokeniser which is searching for
181 " greedy that the "%" " in "+%foo" won't be allowed to match as a sigil,
2196 int greedy = TRUE; // Braces are prefixed with '-' ? in nfa_regpiece() local2298 greedy = TRUE; in nfa_regpiece()2303 greedy = FALSE; in nfa_regpiece()2312 if (greedy) // { { (match the braces) in nfa_regpiece()2349 quest = (greedy == TRUE? NFA_QUEST : NFA_QUEST_NONGREEDY); in nfa_regpiece()2362 if (greedy) in nfa_regpiece()
347 " anti-greedy version of 'a?'362 " anti-greedy version of 'a*'380 " Test greedy-ness and lazy-ness
647 *non-greedy*
8372 non-greedy pattern.txt /*non-greedy*
1359 (Chris Paul, 2016 Nov 13) New engine not greedy enough?
16601 Problem: New regexp engine: Non-greedy multi doesn't work.
2201 Problem: A non-greedy match followed by a branch is too greedy. (Ingo